sigit-code 0.1.2__tar.gz → 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {sigit_code-0.1.2 → sigit_code-1.0.0}/.github/workflows/ci.yml +4 -1
- sigit_code-1.0.0/CHANGELOG.md +70 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/Cargo.lock +10 -10
- {sigit_code-0.1.2 → sigit_code-1.0.0}/Cargo.toml +2 -2
- {sigit_code-0.1.2 → sigit_code-1.0.0}/PKG-INFO +13 -19
- {sigit_code-0.1.2 → sigit_code-1.0.0}/README.md +46 -3
- sigit_code-1.0.0/npm/README.md.tmpl +62 -0
- sigit_code-1.0.0/npm/sigit/README.md +106 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/pypi/README.md +12 -18
- sigit_code-1.0.0/src/chat.rs +1713 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/src/main.rs +833 -16
- sigit_code-1.0.0/src/models.rs +196 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/src/setup.rs +52 -30
- sigit_code-0.1.2/npm/README.md.tmpl +0 -22
- sigit_code-0.1.2/npm/sigit/README.md +0 -85
- sigit_code-0.1.2/src/chat.rs +0 -1184
- {sigit_code-0.1.2 → sigit_code-1.0.0}/.agents/AGENTS.md +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/.agents/skills/agent-client-protocol/SKILL.md +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/.agents/skills/ai-assisted-coding/SKILL.md +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/.agents/skills/tool-calling/SKILL.md +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/.github/workflows/release-github.yml +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/.github/workflows/release-homebrew.yml +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/.github/workflows/release-npm.yml +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/.github/workflows/release-pypi.yml +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/.gitignore +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/.nvmrc +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/LICENSE +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/npm/package-main.json.tmpl +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/npm/package.json.tmpl +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/npm/scripts/render-main-package.cjs +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/npm/scripts/render-platform-package.cjs +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/npm/sigit/.gitignore +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/npm/sigit/package.json +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/npm/sigit/src/index.ts +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/npm/sigit/tsconfig.json +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/pypi/pyproject.toml +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/pyproject.toml +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/rust-toolchain.toml +0 -0
- {sigit_code-0.1.2 → sigit_code-1.0.0}/src/tools.rs +0 -0
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 1.0.0 — 2026
|
|
4
|
+
|
|
5
|
+
We've been running siGit in production across smbCloud codebases for a while now. It works. Time to call it 1.0.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
### The short version
|
|
10
|
+
|
|
11
|
+
siGit is a local coding agent. It runs a quantized LLM on your machine, talks to editors over ACP, and can read files, run commands, search the web, and write code — all without sending anything to a cloud API. You install it with cargo, pip, npm, or Homebrew. It just works.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
### What's actually in here
|
|
16
|
+
|
|
17
|
+
**The editor integration** is the main thing. Zed and VSCode both pick it up as an ACP agent. Multi-turn sessions, tool calling, session forking, working directory context — all there. This was the original goal and it's solid.
|
|
18
|
+
|
|
19
|
+
**The terminal UI** is a bonus that turned out to be genuinely useful. Full-screen ratatui chat, streaming tokens with a blinking cursor, a thinking spinner while the model reasons, a model picker you can pull up mid-session. It runs on macOS and Linux. Windows gets the editor integration for now — TUI support there is on the list.
|
|
20
|
+
|
|
21
|
+
**Tool calling** is what makes it an agent instead of a chat window. The loop runs up to 10 rounds per message:
|
|
22
|
+
|
|
23
|
+
- `read_file` / `write_file` / `delete_file`
|
|
24
|
+
- `list_directory` / `search_files`
|
|
25
|
+
- `run_command` — shell commands with optional working directory
|
|
26
|
+
- `read_website` — fetches a URL and strips it to readable text
|
|
27
|
+
|
|
28
|
+
The model decides which tools to call, sees the results, and keeps going until it has something worth saying.
|
|
29
|
+
|
|
30
|
+
**Model support** is broader than we expected to ship at 1.0. Qwen 3 1.7B, 4B, 8B, and 14B. Qwen 2.5 1.5B and 3B. Qwen 2.5 Coder 1.5B, 3B, and 7B. DeepSeek Coder 6.7B. All GGUF, all pulled from HuggingFace on first run.
|
|
31
|
+
|
|
32
|
+
Qwen 3 is the interesting one. It uses extended thinking mode — the model reasons inside `<think>…</think>` blocks before answering. The TUI strips those out and renders them dimmed above the reply, so you can see what it was doing without it cluttering the conversation. The 8B is the default on desktop. Mobile defaults to 1.7B because iOS gives apps ~2–3 GB and we found out the hard way that 3B causes OOM on an iPhone 16e.
|
|
33
|
+
|
|
34
|
+
**The model picker** (`/models` in the TUI, or an agent config option in editors) shows what's cached locally, what's available to download, whether a model supports tool calling, and whether its local cache looks healthy. Switching models downloads and loads in the background — the UI stays alive the whole time with a progress bar.
|
|
35
|
+
|
|
36
|
+
**smbCloud context** is baked into the system prompt. siGit knows the difference between platform user flows and tenant app auth flows, how `Project` / `FrontendApp` / `AuthApp` / GresIQ fit together, that Next.js SSR deploys are not the generic git-push path, and what workspace patterns smbCloud repos tend to follow. Outside smbCloud it's a normal coding agent and doesn't push platform-specific advice where it doesn't belong.
|
|
37
|
+
|
|
38
|
+
**Distribution** ended up being more work than the software itself, honestly. Pre-built binaries for macOS (arm64 + x64), Linux (arm64 + x64), and Windows (arm64 + x64). Four install methods: `cargo install sigit`, `pip install sigit-code`, `npm install -g @smbcloud/sigit`, `brew install sigit`. Getting all of that working across CI, crates.io, PyPI, npm, and Homebrew is its own project.
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
### What doesn't work yet
|
|
43
|
+
|
|
44
|
+
The Windows TUI. ACP/editor mode works fine on Windows — it's just the interactive terminal UI that's missing. The underlying issue is Unix-specific terminal handling we haven't abstracted yet.
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
### Changes since 0.1.2
|
|
49
|
+
|
|
50
|
+
- Qwen 3 14B support
|
|
51
|
+
- Qwen 3 `<think>` block parsing — strips and renders thinking content separately in the TUI
|
|
52
|
+
- Moved all TUI code into `#[cfg(unix)]` — this fixed a pile of dead-code errors on Windows CI that were blocking releases
|
|
53
|
+
- Live download progress bar during model switch, with cancellation (Ctrl+C mid-download works)
|
|
54
|
+
- Model download and loading progress shown in the Zed agent config panel
|
|
55
|
+
- Animated spinner during model switching
|
|
56
|
+
- Qwen 2.5 Coder 7B
|
|
57
|
+
- Available-for-download models shown in the picker, not just locally cached ones
|
|
58
|
+
- Model selection persists across restarts
|
|
59
|
+
- Session working directory support
|
|
60
|
+
- Model picker logic moved to a platform-independent module so it compiles on Windows even without the TUI
|
|
61
|
+
- `/models N` shortcut for picking a model by number directly
|
|
62
|
+
- `read_website` tool
|
|
63
|
+
- Better `read_file` handling and empty reply detection
|
|
64
|
+
- Async tool execution
|
|
65
|
+
- Fixed CI cross-compilation for macOS, iOS, Linux, and Windows
|
|
66
|
+
- npm, PyPI, and Homebrew distribution added
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
*© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).*
|
|
@@ -3264,7 +3264,7 @@ dependencies = [
|
|
|
3264
3264
|
[[package]]
|
|
3265
3265
|
name = "mistralrs"
|
|
3266
3266
|
version = "0.8.1"
|
|
3267
|
-
source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#
|
|
3267
|
+
source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#e53956bcd1b40c8221f79b919d78c1e496aba634"
|
|
3268
3268
|
dependencies = [
|
|
3269
3269
|
"anyhow",
|
|
3270
3270
|
"candle-core",
|
|
@@ -3291,7 +3291,7 @@ dependencies = [
|
|
|
3291
3291
|
[[package]]
|
|
3292
3292
|
name = "mistralrs-audio"
|
|
3293
3293
|
version = "0.8.1"
|
|
3294
|
-
source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#
|
|
3294
|
+
source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#e53956bcd1b40c8221f79b919d78c1e496aba634"
|
|
3295
3295
|
dependencies = [
|
|
3296
3296
|
"anyhow",
|
|
3297
3297
|
"apodize",
|
|
@@ -3302,7 +3302,7 @@ dependencies = [
|
|
|
3302
3302
|
[[package]]
|
|
3303
3303
|
name = "mistralrs-core"
|
|
3304
3304
|
version = "0.8.1"
|
|
3305
|
-
source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#
|
|
3305
|
+
source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#e53956bcd1b40c8221f79b919d78c1e496aba634"
|
|
3306
3306
|
dependencies = [
|
|
3307
3307
|
"ahash",
|
|
3308
3308
|
"akin",
|
|
@@ -3399,7 +3399,7 @@ dependencies = [
|
|
|
3399
3399
|
[[package]]
|
|
3400
3400
|
name = "mistralrs-macros"
|
|
3401
3401
|
version = "0.8.1"
|
|
3402
|
-
source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#
|
|
3402
|
+
source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#e53956bcd1b40c8221f79b919d78c1e496aba634"
|
|
3403
3403
|
dependencies = [
|
|
3404
3404
|
"darling 0.23.0",
|
|
3405
3405
|
"proc-macro2",
|
|
@@ -3410,7 +3410,7 @@ dependencies = [
|
|
|
3410
3410
|
[[package]]
|
|
3411
3411
|
name = "mistralrs-mcp"
|
|
3412
3412
|
version = "0.8.1"
|
|
3413
|
-
source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#
|
|
3413
|
+
source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#e53956bcd1b40c8221f79b919d78c1e496aba634"
|
|
3414
3414
|
dependencies = [
|
|
3415
3415
|
"anyhow",
|
|
3416
3416
|
"async-trait",
|
|
@@ -3430,7 +3430,7 @@ dependencies = [
|
|
|
3430
3430
|
[[package]]
|
|
3431
3431
|
name = "mistralrs-paged-attn"
|
|
3432
3432
|
version = "0.8.1"
|
|
3433
|
-
source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#
|
|
3433
|
+
source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#e53956bcd1b40c8221f79b919d78c1e496aba634"
|
|
3434
3434
|
dependencies = [
|
|
3435
3435
|
"anyhow",
|
|
3436
3436
|
"candle-core",
|
|
@@ -3446,7 +3446,7 @@ dependencies = [
|
|
|
3446
3446
|
[[package]]
|
|
3447
3447
|
name = "mistralrs-quant"
|
|
3448
3448
|
version = "0.8.1"
|
|
3449
|
-
source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#
|
|
3449
|
+
source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#e53956bcd1b40c8221f79b919d78c1e496aba634"
|
|
3450
3450
|
dependencies = [
|
|
3451
3451
|
"byteorder",
|
|
3452
3452
|
"candle-core",
|
|
@@ -3475,7 +3475,7 @@ dependencies = [
|
|
|
3475
3475
|
[[package]]
|
|
3476
3476
|
name = "mistralrs-vision"
|
|
3477
3477
|
version = "0.8.1"
|
|
3478
|
-
source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#
|
|
3478
|
+
source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#e53956bcd1b40c8221f79b919d78c1e496aba634"
|
|
3479
3479
|
dependencies = [
|
|
3480
3480
|
"candle-core",
|
|
3481
3481
|
"image",
|
|
@@ -3799,7 +3799,7 @@ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
|
3799
3799
|
[[package]]
|
|
3800
3800
|
name = "onde"
|
|
3801
3801
|
version = "0.1.8"
|
|
3802
|
-
source = "git+https://github.com/ondeinference/onde?branch=development#
|
|
3802
|
+
source = "git+https://github.com/ondeinference/onde?branch=development#dfcc6ecfa74ac965af6c33ba0bd06d9cf241fc12"
|
|
3803
3803
|
dependencies = [
|
|
3804
3804
|
"anyhow",
|
|
3805
3805
|
"cc",
|
|
@@ -5271,7 +5271,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
|
5271
5271
|
|
|
5272
5272
|
[[package]]
|
|
5273
5273
|
name = "sigit"
|
|
5274
|
-
version = "0.
|
|
5274
|
+
version = "1.0.0"
|
|
5275
5275
|
dependencies = [
|
|
5276
5276
|
"agent-client-protocol",
|
|
5277
5277
|
"anyhow",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "sigit"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "1.0.0"
|
|
4
4
|
edition = "2024"
|
|
5
5
|
description = "siGit Code — ACP-compatible AI coding agent for smbCloud platform."
|
|
6
6
|
documentation = "https://github.com/getsigit/sigit"
|
|
@@ -22,7 +22,7 @@ agent-client-protocol = { version = "0.10.4", features = ["unstable_session_fork
|
|
|
22
22
|
|
|
23
23
|
# Onde Inference engine (local LLM)
|
|
24
24
|
# onde = { path = "../onde" }
|
|
25
|
-
onde = { git = "https://github.com/ondeinference/onde", branch = "development" }
|
|
25
|
+
onde = { version = "0.1.8", git = "https://github.com/ondeinference/onde", branch = "development" }
|
|
26
26
|
|
|
27
27
|
# Async runtime
|
|
28
28
|
async-trait = "0.1"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sigit-code
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.0
|
|
4
4
|
Classifier: Development Status :: 4 - Beta
|
|
5
5
|
Classifier: Environment :: Console
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -25,11 +25,7 @@ Project-URL: Homepage, https://smbcloud.xyz
|
|
|
25
25
|
Project-URL: Issues, https://github.com/getsigit/sigit/issues
|
|
26
26
|
Project-URL: Repository, https://github.com/getsigit/sigit
|
|
27
27
|
|
|
28
|
-
<
|
|
29
|
-
<strong>siGit Code</strong>
|
|
30
|
-
</p>
|
|
31
|
-
|
|
32
|
-
<h1 align="center">sigit</h1>
|
|
28
|
+
<h1 align="center">siGit Code</h1>
|
|
33
29
|
|
|
34
30
|
<p align="center">
|
|
35
31
|
<strong>AI coding agent powered by local LLM via <a href="https://ondeinference.com">Onde Inference</a>.</strong><br>
|
|
@@ -37,10 +33,10 @@ Project-URL: Repository, https://github.com/getsigit/sigit
|
|
|
37
33
|
</p>
|
|
38
34
|
|
|
39
35
|
<p align="center">
|
|
40
|
-
<a href="https://smbcloud.xyz"><img src="https://img.shields.io/badge/smbcloud.xyz-235843?style=flat-square&labelColor=17211D" alt="Website"></a>
|
|
41
36
|
<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>
|
|
42
|
-
<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>
|
|
43
37
|
<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>
|
|
38
|
+
<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>
|
|
39
|
+
<a href="https://smbcloud.xyz"><img src="https://img.shields.io/badge/smbcloud.xyz-235843?style=flat-square&labelColor=17211D" alt="Website"></a>
|
|
44
40
|
<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>
|
|
45
41
|
</p>
|
|
46
42
|
|
|
@@ -50,8 +46,11 @@ Project-URL: Repository, https://github.com/getsigit/sigit
|
|
|
50
46
|
|
|
51
47
|
## Install
|
|
52
48
|
|
|
49
|
+
Use `pip` or `uv`:
|
|
50
|
+
|
|
53
51
|
```sh
|
|
54
52
|
pip install sigit-code
|
|
53
|
+
uvx --from sigit-code sigit
|
|
55
54
|
```
|
|
56
55
|
|
|
57
56
|
Installs the native `sigit` binary for your platform — no compiler, no Node.js, no runtime dependencies.
|
|
@@ -72,15 +71,10 @@ siGit works as an [ACP-compatible](https://github.com/nicobailon/agent-client-pr
|
|
|
72
71
|
|
|
73
72
|
```json
|
|
74
73
|
{
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
"binary": {
|
|
80
|
-
"path": "sigit",
|
|
81
|
-
"args": ["--acp"]
|
|
82
|
-
}
|
|
83
|
-
}
|
|
74
|
+
"agent_servers": {
|
|
75
|
+
"siGit Code": {
|
|
76
|
+
"type": "custom",
|
|
77
|
+
"command": "/absolute/path/to/sigit"
|
|
84
78
|
}
|
|
85
79
|
}
|
|
86
80
|
}
|
|
@@ -93,7 +87,7 @@ Then select **sigit** as your agent profile in the Zed assistant panel.
|
|
|
93
87
|
| Method | Command |
|
|
94
88
|
|--------|---------|
|
|
95
89
|
| npm | `npm install -g @smbcloud/sigit` |
|
|
96
|
-
| Homebrew | `brew
|
|
90
|
+
| Homebrew | `brew tap getsigit/tap && brew install sigit` |
|
|
97
91
|
| Cargo | `cargo install sigit` |
|
|
98
92
|
|
|
99
93
|
### From source
|
|
@@ -131,4 +125,4 @@ Licensed under **Apache 2.0**.
|
|
|
131
125
|
|
|
132
126
|
## Copyright
|
|
133
127
|
|
|
134
|
-
2026 smbCloud (Splitfire AB).
|
|
128
|
+
© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).
|
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
# siGit Code
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<p align="center">
|
|
4
|
+
<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>
|
|
5
|
+
<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>
|
|
6
|
+
<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>
|
|
7
|
+
<a href="https://smbcloud.xyz"><img src="https://img.shields.io/badge/smbcloud.xyz-235843?style=flat-square&labelColor=17211D" alt="Website"></a>
|
|
8
|
+
<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>
|
|
9
|
+
</p>
|
|
4
10
|
|
|
5
|
-
A coding agent for [smbCloud](https://smbcloud.xyz/) that runs entirely on your machine. No API keys. No cloud round-trips.
|
|
11
|
+
A coding agent for [smbCloud](https://smbcloud.xyz/) that runs entirely on your machine. No API keys. No cloud round-trips.
|
|
6
12
|
|
|
7
13
|
siGit is meant to be a general coding agent, but it is especially good in smbCloud codebases. It already knows the rough shape of the platform: Rust workspaces with focused crates, Rails services, deploy flows, auth boundaries, and platform-managed services like GresIQ. In smbCloud repos, that means it can usually give more grounded answers with less back-and-forth.
|
|
8
14
|
|
|
@@ -30,10 +36,19 @@ Outside smbCloud, it should still behave like a normal coding agent and not forc
|
|
|
30
36
|
|
|
31
37
|
## Install
|
|
32
38
|
|
|
39
|
+
Install siGit Code with Cargo, Homebrew, pip, or npm:
|
|
40
|
+
|
|
33
41
|
```sh
|
|
34
42
|
cargo install sigit
|
|
35
43
|
```
|
|
36
44
|
|
|
45
|
+
| Method | Command |
|
|
46
|
+
|--------|---------|
|
|
47
|
+
| Homebrew | `brew tap getsigit/tap && brew install sigit` |
|
|
48
|
+
| pip | `pip install sigit-code` |
|
|
49
|
+
| uv | `uvx --from sigit-code sigit` |
|
|
50
|
+
| npm | `npm install -g @smbcloud/sigit` |
|
|
51
|
+
|
|
37
52
|
## First run
|
|
38
53
|
|
|
39
54
|
The first time siGit starts, it downloads a GGUF model (~1–2 GB) from HuggingFace. Subsequent starts load from disk in a few seconds.
|
|
@@ -57,12 +72,40 @@ Add to `~/.config/zed/settings.json`:
|
|
|
57
72
|
|
|
58
73
|
Use the full absolute path. `~` will not be expanded here.
|
|
59
74
|
|
|
75
|
+
## VSCode via ACP Client extension
|
|
76
|
+
|
|
77
|
+
Install [ACP client](https://marketplace.visualstudio.com/items?itemName=formulahendry.acp-client):
|
|
78
|
+
|
|
79
|
+
```json
|
|
80
|
+
{
|
|
81
|
+
"acp.agents": {
|
|
82
|
+
"siGit Code": {
|
|
83
|
+
"command": "sigit",
|
|
84
|
+
"args": [],
|
|
85
|
+
"env": {}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
```
|
|
90
|
+
|
|
60
91
|
## Terminal mode
|
|
61
92
|
|
|
62
93
|
If you run `sigit` directly in a terminal, it opens an interactive chat UI. It uses the same model and system prompt as the editor integration, so it is useful for quick questions when you do not want to open Zed first.
|
|
63
94
|
|
|
64
95
|
That terminal mode currently depends on Unix terminal behavior, so it works on macOS and Linux. On Windows, siGit supports ACP/editor mode only right now.
|
|
65
96
|
|
|
97
|
+
## Platform support
|
|
98
|
+
|
|
99
|
+
| Platform | Architecture |
|
|
100
|
+
|----------|-------------|
|
|
101
|
+
| macOS | arm64, x64 |
|
|
102
|
+
| Linux (glibc) | arm64, x64 |
|
|
103
|
+
| Windows | arm64, x64 |
|
|
104
|
+
|
|
105
|
+
## License
|
|
106
|
+
|
|
107
|
+
Licensed under **Apache 2.0** — [LICENSE](https://github.com/getsigit/sigit/blob/main/LICENSE)
|
|
108
|
+
|
|
66
109
|
## Copyright
|
|
67
110
|
|
|
68
|
-
2026 smbCloud (Splitfire AB).
|
|
111
|
+
© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
<h1 align="center">siGit Code</h1>
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
AI coding agent powered by local LLM via <a href="https://ondeinference.com">Onde Inference</a>.<br>
|
|
5
|
+
Runs entirely on your machine — no API keys, no cloud round-trips.
|
|
6
|
+
</p>
|
|
7
|
+
|
|
8
|
+
<p align="center">
|
|
9
|
+
<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>
|
|
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://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>
|
|
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
|
+
<br>
|
|
17
|
+
|
|
18
|
+
## `${node_pkg}`
|
|
19
|
+
|
|
20
|
+
This is the **npm** distribution of siGit Code — a platform-specific binary package for [`@smbcloud/sigit`](https://www.npmjs.com/package/@smbcloud/sigit). You don't need to install it directly.
|
|
21
|
+
|
|
22
|
+
Install the main package and npm pulls in the right binary for your OS and architecture automatically:
|
|
23
|
+
|
|
24
|
+
```sh
|
|
25
|
+
npm install -g @smbcloud/sigit
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Other install methods
|
|
29
|
+
|
|
30
|
+
| Channel | Command |
|
|
31
|
+
|---------|---------|
|
|
32
|
+
| **npm** | `npm install -g @smbcloud/sigit` |
|
|
33
|
+
| **Homebrew** | `brew tap getsigit/tap && brew install sigit` |
|
|
34
|
+
| **pip** | `pip install sigit-code` |
|
|
35
|
+
| **uv** | `uvx --from sigit-code sigit` |
|
|
36
|
+
| **Cargo** | `cargo install sigit` |
|
|
37
|
+
|
|
38
|
+
## Platform support
|
|
39
|
+
|
|
40
|
+
| Platform | Architecture | Package |
|
|
41
|
+
|----------|--------------|---------|
|
|
42
|
+
| macOS | Apple Silicon (arm64) | [`@smbcloud/sigit-darwin-arm64`](https://www.npmjs.com/package/@smbcloud/sigit-darwin-arm64) |
|
|
43
|
+
| macOS | Intel (x64) | [`@smbcloud/sigit-darwin-x64`](https://www.npmjs.com/package/@smbcloud/sigit-darwin-x64) |
|
|
44
|
+
| Linux | x64 | [`@smbcloud/sigit-linux-x64`](https://www.npmjs.com/package/@smbcloud/sigit-linux-x64) |
|
|
45
|
+
| Linux | arm64 | [`@smbcloud/sigit-linux-arm64`](https://www.npmjs.com/package/@smbcloud/sigit-linux-arm64) |
|
|
46
|
+
| Windows | x64 | [`@smbcloud/sigit-windows-x64`](https://www.npmjs.com/package/@smbcloud/sigit-windows-x64) |
|
|
47
|
+
| Windows | arm64 | [`@smbcloud/sigit-windows-arm64`](https://www.npmjs.com/package/@smbcloud/sigit-windows-arm64) |
|
|
48
|
+
|
|
49
|
+
## Links
|
|
50
|
+
|
|
51
|
+
- [Homepage](https://smbcloud.xyz)
|
|
52
|
+
- [Source code](https://github.com/getsigit/sigit)
|
|
53
|
+
- [Issues](https://github.com/getsigit/sigit/issues)
|
|
54
|
+
- [Onde Inference](https://ondeinference.com)
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
[Apache-2.0](https://github.com/getsigit/sigit/blob/main/LICENSE)
|
|
59
|
+
|
|
60
|
+
## Copyright
|
|
61
|
+
|
|
62
|
+
© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
<h1 align="center">siGit Code</h1>
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
AI coding agent powered by local LLM via <a href="https://ondeinference.com">Onde Inference</a>.<br>
|
|
5
|
+
Runs entirely on your machine — no API keys, no cloud round-trips.
|
|
6
|
+
</p>
|
|
7
|
+
|
|
8
|
+
<p align="center">
|
|
9
|
+
<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>
|
|
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://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>
|
|
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
|
+
---
|
|
17
|
+
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
```sh
|
|
21
|
+
npm install -g @smbcloud/sigit
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
The right binary for your platform is pulled in automatically. Works on macOS (Apple Silicon and Intel), Linux (x64 and arm64), and Windows (x64 and arm64).
|
|
25
|
+
|
|
26
|
+
### Other ways to install
|
|
27
|
+
|
|
28
|
+
| Method | Command |
|
|
29
|
+
|---|---|
|
|
30
|
+
| **Homebrew** | `brew tap getsigit/tap && brew install sigit` |
|
|
31
|
+
| **pip** | `pip install sigit-code` |
|
|
32
|
+
| **uv** | `uvx --from sigit-code sigit` |
|
|
33
|
+
| **Cargo** | `cargo install sigit` |
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## Usage
|
|
38
|
+
|
|
39
|
+
```sh
|
|
40
|
+
sigit
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Opens a TUI coding agent that runs entirely on your device using a local LLM.
|
|
44
|
+
|
|
45
|
+
### Zed (ACP agent)
|
|
46
|
+
|
|
47
|
+
Add this to `~/.config/zed/settings.json`:
|
|
48
|
+
|
|
49
|
+
```json
|
|
50
|
+
{
|
|
51
|
+
"agent_servers": {
|
|
52
|
+
"siGit Code": {
|
|
53
|
+
"type": "custom",
|
|
54
|
+
"command": "sigit"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Then select **siGit Code** as your agent in the Zed assistant panel.
|
|
61
|
+
|
|
62
|
+
### VSCode via ACP Client extension
|
|
63
|
+
|
|
64
|
+
Install [ACP Client](https://marketplace.visualstudio.com/items?itemName=formulahendry.acp-client), then add:
|
|
65
|
+
|
|
66
|
+
```json
|
|
67
|
+
{
|
|
68
|
+
"acp.agents": {
|
|
69
|
+
"siGit Code": {
|
|
70
|
+
"command": "sigit",
|
|
71
|
+
"args": [],
|
|
72
|
+
"env": {}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## Platform support
|
|
81
|
+
|
|
82
|
+
| Platform | Architecture | Package |
|
|
83
|
+
|---|---|---|
|
|
84
|
+
| macOS | Apple Silicon (arm64) | [`@smbcloud/sigit-darwin-arm64`](https://www.npmjs.com/package/@smbcloud/sigit-darwin-arm64) |
|
|
85
|
+
| macOS | Intel (x64) | [`@smbcloud/sigit-darwin-x64`](https://www.npmjs.com/package/@smbcloud/sigit-darwin-x64) |
|
|
86
|
+
| Linux | x64 | [`@smbcloud/sigit-linux-x64`](https://www.npmjs.com/package/@smbcloud/sigit-linux-x64) |
|
|
87
|
+
| Linux | arm64 | [`@smbcloud/sigit-linux-arm64`](https://www.npmjs.com/package/@smbcloud/sigit-linux-arm64) |
|
|
88
|
+
| Windows | x64 | [`@smbcloud/sigit-windows-x64`](https://www.npmjs.com/package/@smbcloud/sigit-windows-x64) |
|
|
89
|
+
| Windows | arm64 | [`@smbcloud/sigit-windows-arm64`](https://www.npmjs.com/package/@smbcloud/sigit-windows-arm64) |
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
93
|
+
## Links
|
|
94
|
+
|
|
95
|
+
- [smbCloud](https://smbcloud.xyz/)
|
|
96
|
+
- [Source code](https://github.com/getsigit/sigit)
|
|
97
|
+
- [Issues](https://github.com/getsigit/sigit/issues)
|
|
98
|
+
- [Onde Inference](https://ondeinference.com)
|
|
99
|
+
|
|
100
|
+
## License
|
|
101
|
+
|
|
102
|
+
[Apache-2.0](https://github.com/getsigit/sigit/blob/main/LICENSE)
|
|
103
|
+
|
|
104
|
+
## Copyright
|
|
105
|
+
|
|
106
|
+
© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).
|
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
<
|
|
2
|
-
<strong>siGit Code</strong>
|
|
3
|
-
</p>
|
|
4
|
-
|
|
5
|
-
<h1 align="center">sigit</h1>
|
|
1
|
+
<h1 align="center">siGit Code</h1>
|
|
6
2
|
|
|
7
3
|
<p align="center">
|
|
8
4
|
<strong>AI coding agent powered by local LLM via <a href="https://ondeinference.com">Onde Inference</a>.</strong><br>
|
|
@@ -10,10 +6,10 @@
|
|
|
10
6
|
</p>
|
|
11
7
|
|
|
12
8
|
<p align="center">
|
|
13
|
-
<a href="https://smbcloud.xyz"><img src="https://img.shields.io/badge/smbcloud.xyz-235843?style=flat-square&labelColor=17211D" alt="Website"></a>
|
|
14
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>
|
|
15
|
-
<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>
|
|
16
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>
|
|
17
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>
|
|
18
14
|
</p>
|
|
19
15
|
|
|
@@ -23,8 +19,11 @@
|
|
|
23
19
|
|
|
24
20
|
## Install
|
|
25
21
|
|
|
22
|
+
Use `pip` or `uv`:
|
|
23
|
+
|
|
26
24
|
```sh
|
|
27
25
|
pip install sigit-code
|
|
26
|
+
uvx --from sigit-code sigit
|
|
28
27
|
```
|
|
29
28
|
|
|
30
29
|
Installs the native `sigit` binary for your platform — no compiler, no Node.js, no runtime dependencies.
|
|
@@ -45,15 +44,10 @@ siGit works as an [ACP-compatible](https://github.com/nicobailon/agent-client-pr
|
|
|
45
44
|
|
|
46
45
|
```json
|
|
47
46
|
{
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
|
|
52
|
-
"binary": {
|
|
53
|
-
"path": "sigit",
|
|
54
|
-
"args": ["--acp"]
|
|
55
|
-
}
|
|
56
|
-
}
|
|
47
|
+
"agent_servers": {
|
|
48
|
+
"siGit Code": {
|
|
49
|
+
"type": "custom",
|
|
50
|
+
"command": "/absolute/path/to/sigit"
|
|
57
51
|
}
|
|
58
52
|
}
|
|
59
53
|
}
|
|
@@ -66,7 +60,7 @@ Then select **sigit** as your agent profile in the Zed assistant panel.
|
|
|
66
60
|
| Method | Command |
|
|
67
61
|
|--------|---------|
|
|
68
62
|
| npm | `npm install -g @smbcloud/sigit` |
|
|
69
|
-
| Homebrew | `brew
|
|
63
|
+
| Homebrew | `brew tap getsigit/tap && brew install sigit` |
|
|
70
64
|
| Cargo | `cargo install sigit` |
|
|
71
65
|
|
|
72
66
|
### From source
|
|
@@ -104,4 +98,4 @@ Licensed under **Apache 2.0**.
|
|
|
104
98
|
|
|
105
99
|
## Copyright
|
|
106
100
|
|
|
107
|
-
2026 smbCloud (Splitfire AB).
|
|
101
|
+
© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).
|