Skip to content

Latest commit

 

History

History
109 lines (73 loc) · 3.16 KB

File metadata and controls

109 lines (73 loc) · 3.16 KB

Command Code Desktop App

The visual workspace for Command Code.

Product page · Releases · Report a bug · Discord

Install or update

Copy the command for your operating system and paste it into the terminal. Running the same command again installs the newest available version.

macOS and Linux

One command for both. The script detects the system - Apple silicon or Intel macOS, or Ubuntu/Debian x64 Linux - and installs the matching build:

curl -fsSL https://raw.githubusercontent.com/CommandCodeAI/desktop/main/install.sh | bash

Windows

Open PowerShell and run:

irm https://raw.githubusercontent.com/CommandCodeAI/desktop/main/install.ps1 | iex

The installer:

  1. Detects the operating system and CPU architecture.
  2. Selects the newest matching release.
  3. Downloads only from CommandCodeAI/desktop.
  4. Verifies GitHub's published SHA-256 digest.
  5. Installs and opens Command Code.

Read install.sh · Read install.ps1 · Installation details

Install a specific version

macOS or Linux:

curl -fsSL https://raw.githubusercontent.com/CommandCodeAI/desktop/main/install.sh | COMMANDCODE_VERSION=0.1.3 bash

Windows PowerShell:

$env:COMMANDCODE_VERSION="0.1.3"; irm https://raw.githubusercontent.com/CommandCodeAI/desktop/main/install.ps1 | iex

Direct downloads

Prefer the installer above because it selects and verifies the correct build automatically. Manual packages are available on the releases page.

Platform Package Architecture
macOS .dmg Apple silicon
Linux .deb x64
Windows .exe x64

What you can do

  • Organize projects and session history
  • Stream agent conversations and task progress
  • Review plans and send iterative feedback
  • Browse files and inspect line-level diffs
  • Review, discard, commit, and push Git changes
  • Run commands in the integrated project terminal
  • Choose models, permission modes, themes, and shortcuts

Requirements

  • A supported operating system and architecture from the table above
  • Internet access to download the release from GitHub
  • Administrator permission when the operating system requires it

Command Code CLI does not need to be installed separately.

Help and feedback

Report security vulnerabilities privately by following SECURITY.md. Do not include tokens, private source files, or .env contents in public reports.

Repository scope

This is the public download, installer, documentation, and issue-tracking repository for Command Code GUI. Application development happens in a private repository.

© Command Code