AgentCore OS(智枢)
Download & CLI Guide

下载与命令行体验说明

如果你现在要给用户一条最稳、最少歧义的体验路径,优先推荐“源码命令行体验”。安装包命令行安装只适合已经拿到桌面安装包、且明确知道来源可信的用户。

当前最推荐

方式 A:源码命令行体验

这是当前最准确、最稳的公开体验方式,适合开发者、技术用户、内测用户,以及需要快速验证功能链路的人。

一、macOS

方式 A:通过源码命令行体验

适合开发者、技术用户、内测用户。

git clone https://cnb.cool/aidiyangyu/agentcore-os.git
cd agentcore-os
npm install
npm run dev:clean

启动后打开:http://localhost:3000

首次进入后,建议先去“设置”里完成 provider、base URL、model、API key 配置,再从“内容创作 / 销售跟进 / 研究分析”三条核心链路开始体验。

方式 B:通过 .pkg 命令行安装桌面版

只适合已经拿到 mac 安装包的用户,例如:AgentCore OS_0.2.0-beta.2_aarch64.pkg

sudo installer -pkg "/path/to/AgentCore OS_0.2.0-beta.2_aarch64.pkg" -target /
open "/Applications/AgentCore OS.app"

如果首次启动被系统拦截,可在确认安装包来源可信后再移除隔离标记:

sudo xattr -dr com.apple.quarantine "/Applications/AgentCore OS.app"
open "/Applications/AgentCore OS.app"

方式 C:通过 .dmg 命令行安装桌面版

如果你拿到的是:AgentCore OS_0.2.0-beta.2_aarch64.dmg

hdiutil attach "/path/to/AgentCore OS_0.2.0-beta.2_aarch64.dmg"
sudo cp -R "/Volumes/AgentCore OS/AgentCore OS.app" /Applications/
hdiutil detach "/Volumes/AgentCore OS"
open "/Applications/AgentCore OS.app"

如需移除隔离标记:

sudo xattr -dr com.apple.quarantine "/Applications/AgentCore OS.app"
open "/Applications/AgentCore OS.app"

二、Windows

方式 A:通过源码命令行体验

这是当前最准确、最稳的 Windows 命令行体验方式。

git clone https://cnb.cool/aidiyangyu/agentcore-os.git
cd agentcore-os
npm install
npm run dev:clean

启动后打开:http://localhost:3000

方式 B:通过 Windows 安装包命令行安装

如果你已经拿到了 Windows 安装包,请根据文件类型选择命令。

Start-Process -FilePath "C:\path\to\AgentCore-OS-setup.exe" -Wait

如果该安装包支持静默参数,可使用:

Start-Process -FilePath "C:\path\to\AgentCore-OS-setup.exe" -ArgumentList "/S" -Wait

如果是 .msi 安装包:

Start-Process msiexec.exe -ArgumentList '/i "C:\path\to\AgentCore-OS.msi"' -Wait

静默安装示例:

Start-Process msiexec.exe -ArgumentList '/i "C:\path\to\AgentCore-OS.msi" /passive /norestart' -Wait
← 上一篇:安装部署 下一篇:FAQ →