跳到正文
订阅

AicippY 桌面版版本 1.18.44

你的 AI 工程团队,就在你的桌面上。

描述你想构建的东西。主导智能体负责规划,智能体团队编写并测试代码;每一处改动在你接受之前,都能在实时预览中看到运行效果。

下载和登录均免费。订阅 Pro 或 Max 方案即可让智能体开始工作。

桌面应用

选择你的系统。所有下载均为当前版本。

macOS

macOS 12 Monterey 或更高版本

  • Apple Silicon版本 1.18.44 · 195 MB
  • Intel版本 1.18.44 · 200 MB

我该选哪个? 打开苹果菜单,选择“关于本机”。显示“芯片:Apple M…”即为 Apple Silicon;显示“处理器:Intel”即为 Intel。

Windows

Windows 10 或 11(64 位)

  • x64版本 1.18.44 · 151 MB
  • ARM64版本 1.18.44 · 144 MB

我该选哪个? 打开“设置”→“系统”→“系统信息”。“系统类型”会显示基于 x64 或基于 ARM 的处理器。

Linux

64 位 Ubuntu 20.04、Debian 11、Fedora 36 或更高版本

我该选哪个? 运行 uname -m:x86_64 表示 x64,aarch64 表示 ARM64。Debian 和 Ubuntu 用 .deb,Fedora 和 openSUSE 用 .rpm,其他发行版用 AppImage。

每个桌面版本需要约 1 GB 可用磁盘空间。 macOS 应用已由 Apple 签名并完成公证,打开时不会出现安全警告。

安装之后

  1. 打开 AicippY

    从“应用程序”、开始菜单或应用启动器中打开。

  2. 登录

    使用 Google 或电子邮件地址继续。登录免费,首次登录时会创建账户。

  3. 选择方案

    订阅 Pro 或 Max 方案即可让智能体开始工作。 比较方案

  4. 更新会自动到来

    AicippY 会自动检查更新,并在你下次重启时安装。

在 macOS 上安装

  1. 打开下载的 .dmg 文件。
  2. 将 AicippY 拖入“应用程序”文件夹。
  3. 从“应用程序”中打开 AicippY。它已通过 Apple 公证,打开时不会出现安全警告。

在 Windows 上安装

  1. 运行下载的 .exe 安装程序。
  2. 如果 Windows 显示“Windows 已保护你的电脑”,请选择“更多信息”,然后选择“仍要运行”。
  3. AicippY 会安装到你的用户账户下,无需管理员权限,安装完成后自动打开。

在 Linux 上安装

Debian、Ubuntu 及其衍生发行版:

sudo apt install ./aicippy-code-desktop-linux-amd64.deb
sudo apt install ./aicippy-code-desktop-linux-arm64.deb

Fedora、RHEL、openSUSE 及其衍生发行版:

sudo dnf install ./aicippy-code-desktop-linux-x86_64.rpm
sudo dnf install ./aicippy-code-desktop-linux-aarch64.rpm

任意发行版,无需安装(AppImage):

chmod +x aicippy-code-desktop-linux-x86_64.AppImage && ./aicippy-code-desktop-linux-x86_64.AppImage
chmod +x aicippy-code-desktop-linux-arm64.AppImage && ./aicippy-code-desktop-linux-arm64.AppImage

如果 AppImage 无法启动,请安装 FUSE 2(libfuse2 软件包)。

终端

更喜欢命令行?一条命令即可安装 AicippY CLI。版本 1.18.42

安装脚本

适用于 macOS 和 Linux。需要 curl,macOS 另需 unzip,Linux 另需 tar。

curl -fsSL https://www.aicippy.com/install | bash

npm

适用于 macOS、Windows 和 Linux。需要带 npm 的 Node.js。

npm install -g @aicippy/aicippy-code

Bun

适用于 macOS、Windows 和 Linux。需要 Bun。

bun install -g --trust @aicippy/aicippy-code

Docker

可在任何装有 Docker 的电脑上以容器方式运行。

docker run -it --rm public.ecr.aws/m7a0v2i6/aicippy-code

Windows(PowerShell)

适用于 Windows 10 和 11。粘贴到 PowerShell 中运行。安装到你的用户文件夹,将 AicippY 加入 PATH,无需管理员权限。

$ProgressPreference = "SilentlyContinue"
$arch = if ($env:PROCESSOR_ARCHITECTURE -eq "ARM64") { "arm64" } else { "x64" }
$version = (Invoke-RestMethod "https://www.aicippy.com/releases/cli/latest.txt").Trim()
$dir = "$env:LOCALAPPDATA\AicippY\bin"
New-Item -ItemType Directory -Force -Path $dir | Out-Null
Invoke-WebRequest "https://www.aicippy.com/releases/cli/$version/aicippy-code-windows-$arch.zip" -OutFile "$env:TEMP\aicippy-code.zip"
Expand-Archive "$env:TEMP\aicippy-code.zip" -DestinationPath $dir -Force
$path = [Environment]::GetEnvironmentVariable("Path", "User")
if (($path -split ";") -notcontains $dir) { [Environment]::SetEnvironmentVariable("Path", "$path;$dir", "User") }

或者自行下载程序,将 aicippy-code.exe 放到 PATH 中的某个文件夹:

然后打开项目文件夹并运行 aicippy-code. 安装后请打开新的终端窗口,以便找到该命令。

编辑器与集成

在你正在使用的编辑器中使用 AicippY。

VS Code、Cursor、Windsurf 和 VSCodium

下载扩展(.vsix) · 0 MB版本 1.18.42
  1. 下载扩展文件。
  2. 在编辑器中打开“扩展”视图,选择 … 菜单中的 Install from VSIX,然后选择该文件。

或者使用编辑器的命令在终端中安装:

code --install-extension aicippy-code-1.18.42.vsix
cursor --install-extension aicippy-code-1.18.42.vsix
windsurf --install-extension aicippy-code-1.18.42.vsix
codium --install-extension aicippy-code-1.18.42.vsix

AicippY 也可以在编辑器的内置终端中运行:打开终端并运行 aicippy-code。

Zed

Zed 通过 Agent Client Protocol 连接 AicippY。先安装终端版本,然后将以下内容添加到 Zed 设置文件:

{
  "agent_servers": {
    "AicippY": {
      "type": "custom",
      "command": "aicippy-code",
      "args": ["acp"]
    }
  }
}

然后打开智能体面板,与 AicippY 开始新的对话。

设置 GitLabGitLab Duo · GitLab CI/CD

常见问题