macOS
macOS 12 Monterey or later
- Apple SiliconVersion 1.18.44 · 195 MB
- IntelVersion 1.18.44 · 200 MB
Which one do I need? Open the Apple menu and choose About This Mac. “Chip: Apple M…” means Apple Silicon; “Processor: Intel” means Intel.
AicippY DesktopVersion 1.18.44
Describe what you want built. A lead agent plans the work, a team of agents writes and tests the code, and you watch every change run in a live preview before you accept it.
Free to download and sign in. A Pro or Max plan puts the agents to work.
Pick your system. Every download is the current release.
macOS 12 Monterey or later
Which one do I need? Open the Apple menu and choose About This Mac. “Chip: Apple M…” means Apple Silicon; “Processor: Intel” means Intel.
Windows 10 or 11 (64-bit)
Which one do I need? Open Settings, then System, then About. “System type” says x64-based or ARM-based processor.
64-bit Ubuntu 20.04, Debian 11, Fedora 36 or later
Which one do I need? Run uname -m: x86_64 means x64, aarch64 means ARM64. Use .deb on Debian and Ubuntu, .rpm on Fedora and openSUSE, AppImage anywhere else.
Each desktop build needs about 1 GB of free disk space. The macOS app is signed and notarized by Apple, so it opens without a security warning.
Start it from Applications, the Start menu or your app launcher.
Continue with Google or your email address. Signing in is free, and your account is created the first time.
Pro or Max puts the agents to work. Compare plans
AicippY checks for updates itself and installs them the next time you restart it.
Debian, Ubuntu and their derivatives:
sudo apt install ./aicippy-code-desktop-linux-amd64.deb
sudo apt install ./aicippy-code-desktop-linux-arm64.debFedora, RHEL, openSUSE and their derivatives:
sudo dnf install ./aicippy-code-desktop-linux-x86_64.rpm
sudo dnf install ./aicippy-code-desktop-linux-aarch64.rpmAny distribution, without installing (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.AppImageIf the AppImage does not start, install FUSE 2 (the libfuse2 package).
Prefer the command line? Install the AicippY CLI with a single command.Version 1.18.42
For macOS and Linux. Needs curl, plus unzip on macOS or tar on Linux.
curl -fsSL https://www.aicippy.com/install | bashFor macOS, Windows and Linux. Needs Node.js with npm.
npm install -g @aicippy/aicippy-codeFor macOS, Windows and Linux. Needs Bun.
bun install -g --trust @aicippy/aicippy-codeRuns in a container on any computer with Docker.
docker run -it --rm public.ecr.aws/m7a0v2i6/aicippy-codeFor Windows 10 and 11. Paste into PowerShell. It installs into your user folder, adds AicippY to your PATH and needs no administrator rights.
$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") }Or download the program yourself and put aicippy-code.exe in a folder on your PATH:
Then open your project folder and run aicippy-code. Open a new terminal window after installing so the command is found.
Use AicippY inside the editor you already work in.
Or install it from a terminal with your editor's command:
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.vsixAicippY also runs in your editor's built-in terminal: open it and run aicippy-code.
Zed connects to AicippY through the Agent Client Protocol. Install the terminal version, then add this to your Zed settings file:
{
"agent_servers": {
"AicippY": {
"type": "custom",
"command": "aicippy-code",
"args": ["acp"]
}
}
}Then open the agent panel and start a new thread with AicippY.