Skip to content

getsigit/sigit

Repository files navigation

siGit Code

Crates.io PyPI npm Website License

siGit Code is a local coding agent. It runs on your machine, not someone else's. No API keys, no cloud round-trips, no subscription.

It works in any codebase. In smbCloud repos it is more useful out of the box because it already understands the Rust workspace layout, deploy flows, auth boundaries, and GresIQ.

You can use it in two ways:

  • ACP mode: Zed or another ACP-compatible editor starts it over stdio
  • Terminal mode: run sigit for the interactive chat UI
Platform ACP mode Terminal mode
macOS
Linux
Windows not yet

smbCloud context

In an smbCloud repo, siGit Code already knows a few important things:

  • platform-user flows and tenant-app auth flows are different systems
  • Project is the umbrella workspace, while FrontendApp, AuthApp, and GresIQ are separate deployable units
  • Next.js SSR deploys are not the same thing as the generic git-push path
  • existing crate boundaries and workspace patterns are usually the right place to start

In other repos it stays general and does not pretend everything is about smbCloud.

Install

cargo install sigit
Method Command
Homebrew brew tap getsigit/tap && brew install sigit
pip pip install sigit-code
uv uvx --from sigit-code sigit
npm npm install -g @smbcloud/sigit

First run

The first launch downloads a GGUF model from Hugging Face. Expect roughly 1 to 2 GB, depending on the model. After that, loads come from disk and are much faster.

On macOS, siGit Code shares its model cache with the desktop app through an App Group container. If the desktop app already downloaded the model, the CLI reuses it.

Zed setup

Add this to ~/.config/zed/settings.json:

{
  "agent_servers": {
    "siGit Code": {
      "type": "custom",
      "command": "/absolute/path/to/sigit"
    }
  }
}

Use the full absolute path. ~ does not expand here.

VS Code with ACP Client

Install ACP Client, then add:

{
  "acp.agents": {
    "siGit Code": {
      "command": "sigit",
      "args": [],
      "env": {}
    }
  }
}

Terminal mode

Run sigit in a terminal and you get the same model and system prompt as the editor integration, just in a full-screen chat UI.

Terminal mode currently needs Unix terminal behavior, so it works on macOS and Linux only.

Platform support

Platform Architecture
macOS arm64, x64
Linux (glibc) arm64, x64
Windows arm64, x64

License

Apache 2.0

Copyright

© 2026 smbCloud (Splitfire AB).