1 <h1 align="center">siGit Code</h1>
2
3 <p align="center">
4 A local coding agent powered by <a href="https://ondeinference.com">Onde Inference</a>.<br>
5 Runs on your machine. No API keys. No cloud round-trips.
6 </p>
7
8 <p align="center">
9 <a href="https://pypi.org/project/sigit-code/"><img src="https://img.shields.io/pypi/v/sigit-code?style=flat-square&labelColor=17211D&color=235843" alt="PyPI"></a>
10 <a href="https://crates.io/crates/sigit"><img src="https://img.shields.io/crates/v/sigit?style=flat-square&labelColor=17211D&color=235843" alt="Crates.io"></a>
11 <a href="https://www.npmjs.com/package/@smbcloud/sigit"><img src="https://img.shields.io/npm/v/@smbcloud/sigit?style=flat-square&labelColor=17211D&color=235843" alt="npm"></a>
12 <a href="https://smbcloud.xyz"><img src="https://img.shields.io/badge/smbcloud.xyz-235843?style=flat-square&labelColor=17211D" alt="Website"></a>
13 <a href="https://github.com/getsigit/sigit/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-Apache--2.0-235843?style=flat-square&labelColor=17211D" alt="License"></a>
14 </p>
15
16 ## Install
17
18 ```sh
19 pip install sigit-code
20 uvx --from sigit-code sigit
21 ```
22
23 This installs a native `sigit` binary for your platform. You do not need a compiler or extra runtime setup.
24
25 ## Quick start
26
27 ### Terminal mode
28
29 ```sh
30 sigit
31 ```
32
33 That opens the local chat UI.
34
35 ### Zed
36
37 siGit Code works as an [ACP-compatible](https://github.com/nicobailon/agent-client-protocol) agent in [Zed](https://zed.dev). Add this to your Zed settings:
38
39 ```json
40 {
41 "agent_servers": {
42 "siGit Code": {
43 "type": "custom",
44 "command": "/absolute/path/to/sigit"
45 }
46 }
47 }
48 ```
49
50 Then pick **siGit Code** in the assistant panel.
51
52 ## Other install methods
53
54 | Method | Command |
55 |--------|---------|
56 | npm | `npm install -g @smbcloud/sigit` |
57 | Homebrew | `brew tap getsigit/tap && brew install sigit` |
58 | Cargo | `cargo install sigit` |
59
60 ### From source
61
62 ```sh
63 git clone https://github.com/getsigit/sigit
64 cd sigit
65 cargo build --release
66 ./target/release/sigit
67 ```
68
69 ## Platform support
70
71 | Platform | Architecture |
72 |----------|--------------|
73 | macOS | arm64, x64 |
74 | Linux (glibc) | arm64, x64 |
75 | Windows | arm64, x64 |
76
77 ## Source and issues
78
79 This package ships a prebuilt binary. The source code lives at [github.com/getsigit/sigit](https://github.com/getsigit/sigit). If something breaks, file the issue there.
80
81 ## License
82
83 [Apache 2.0](https://github.com/getsigit/sigit/blob/main/LICENSE)
84
85 ## Copyright
86
87 © 2026 [Splitfire AB](https://5mb.app) ([siGit Code & Deploy](https://sigit.si)).