Skip to content
Subscribe

AicippY DesktopVersion 1.18.44

Your AI engineering team, on your desktop.

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.

Desktop app

Pick your system. Every download is the current release.

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.

Windows

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.

Linux

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.

After you install

  1. Open AicippY

    Start it from Applications, the Start menu or your app launcher.

  2. Sign in

    Continue with Google or your email address. Signing in is free, and your account is created the first time.

  3. Choose a plan

    Pro or Max puts the agents to work. Compare plans

  4. Updates arrive on their own

    AicippY checks for updates itself and installs them the next time you restart it.

Installing on macOS

  1. Open the downloaded .dmg file.
  2. Drag AicippY into the Applications folder.
  3. Open AicippY from Applications. It is notarized by Apple, so it opens without a security warning.

Installing on Windows

  1. Run the downloaded .exe installer.
  2. If Windows shows “Windows protected your PC”, select More info, then Run anyway.
  3. AicippY installs for your user account, without administrator rights, and opens when it finishes.

Installing on Linux

Debian, Ubuntu and their derivatives:

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

Fedora, RHEL, openSUSE and their derivatives:

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

Any 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.AppImage

If the AppImage does not start, install FUSE 2 (the libfuse2 package).

Terminal

Prefer the command line? Install the AicippY CLI with a single command.Version 1.18.42

Install script

For macOS and Linux. Needs curl, plus unzip on macOS or tar on Linux.

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

npm

For macOS, Windows and Linux. Needs Node.js with npm.

npm install -g @aicippy/aicippy-code

Bun

For macOS, Windows and Linux. Needs Bun.

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

Docker

Runs in a container on any computer with Docker.

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

Windows (PowerShell)

For 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.

Editors and integrations

Use AicippY inside the editor you already work in.

VS Code, Cursor, Windsurf and VSCodium

Download the extension (.vsix) · 0 MBVersion 1.18.42
  1. Download the extension file.
  2. In your editor, open the Extensions view, select the … menu, choose Install from VSIX, and pick the file.

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.vsix

AicippY also runs in your editor's built-in terminal: open it and run aicippy-code.

Zed

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.

Set up GitLabGitLab Duo · GitLab CI/CD

FAQ