Release siGit 1.0.0
Add stable release notes, update install docs, and improve platform badges and copyright. Update dependencies for Onde Inference 0.1.8.
paydii committed
Apr 26, 2026 at 14:30 UTC
a0d59681a99aac98d5cb72e7c620fe009894d195
7 files changed
+188
-37
CHANGELOG.md
+70
new file mode 100644
index 0000000..ca032e4
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,70 @@
+# Changelog
+
+## 1.0.0 — 2026
+
+We've been running siGit in production across smbCloud codebases for a while now. It works. Time to call it 1.0.
+
+---
+
+### The short version
+
+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.
+
+---
+
+### What's actually in here
+
+**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.
+
+**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.
+
+**Tool calling** is what makes it an agent instead of a chat window. The loop runs up to 10 rounds per message:
+
+- `read_file` / `write_file` / `delete_file`
+- `list_directory` / `search_files`
+- `run_command` — shell commands with optional working directory
+- `read_website` — fetches a URL and strips it to readable text
+
+The model decides which tools to call, sees the results, and keeps going until it has something worth saying.
+
+**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.
+
+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.
+
+**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.
+
+**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.
+
+**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.
+
+---
+
+### What doesn't work yet
+
+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.
+
+---
+
+### Changes since 0.1.2
+
+- Qwen 3 14B support
+- Qwen 3 `<think>` block parsing — strips and renders thinking content separately in the TUI
+- Moved all TUI code into `#[cfg(unix)]` — this fixed a pile of dead-code errors on Windows CI that were blocking releases
+- Live download progress bar during model switch, with cancellation (Ctrl+C mid-download works)
+- Model download and loading progress shown in the Zed agent config panel
+- Animated spinner during model switching
+- Qwen 2.5 Coder 7B
+- Available-for-download models shown in the picker, not just locally cached ones
+- Model selection persists across restarts
+- Session working directory support
+- Model picker logic moved to a platform-independent module so it compiles on Windows even without the TUI
+- `/models N` shortcut for picking a model by number directly
+- `read_website` tool
+- Better `read_file` handling and empty reply detection
+- Async tool execution
+- Fixed CI cross-compilation for macOS, iOS, Linux, and Windows
+- npm, PyPI, and Homebrew distribution added
+
+---
+
+*© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).*
\ No newline at end of file
Cargo.lock
+1
-1
index 4f966d1..982cd1b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5271,7 +5271,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
[[package]]
name = "sigit"
-version = "0.1.2"
+version = "1.0.0"
dependencies = [
"agent-client-protocol",
"anyhow",
Cargo.toml
+2
-2
index 21cf7bc..4b26d37 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "sigit"
-version = "0.1.2"
+version = "1.0.0"
edition = "2024"
description = "siGit Code — ACP-compatible AI coding agent for smbCloud platform."
documentation = "https://github.com/getsigit/sigit"
@@ -22,7 +22,7 @@ agent-client-protocol = { version = "0.10.4", features = ["unstable_session_fork
# Onde Inference engine (local LLM)
# onde = { path = "../onde" }
-onde = { git = "https://github.com/ondeinference/onde", branch = "development" }
+onde = { version = "0.1.8", git = "https://github.com/ondeinference/onde", branch = "development" }
# Async runtime
async-trait = "0.1"
README.md
+28
-3
index 505a0a2..cb5a424 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,12 @@
# siGit Code
-[](https://crates.io/crates/sigit)
+<p align="center">
+ <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>
+ <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>
+ <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>
+ <a href="https://smbcloud.xyz"><img src="https://img.shields.io/badge/smbcloud.xyz-235843?style=flat-square&labelColor=17211D" alt="Website"></a>
+ <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>
+</p>
A coding agent for [smbCloud](https://smbcloud.xyz/) that runs entirely on your machine. No API keys. No cloud round-trips.
@@ -30,12 +36,19 @@ Outside smbCloud, it should still behave like a normal coding agent and not forc
## Install
-Install siGit Code with cargo, Homebrew, PyPi, or NPM:
+Install siGit Code with Cargo, Homebrew, pip, or npm:
```sh
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 time siGit starts, it downloads a GGUF model (~1–2 GB) from HuggingFace. Subsequent starts load from disk in a few seconds.
@@ -81,6 +94,18 @@ If you run `sigit` directly in a terminal, it opens an interactive chat UI. It u
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.
+## Platform support
+
+| Platform | Architecture |
+|----------|-------------|
+| macOS | arm64, x64 |
+| Linux (glibc) | arm64, x64 |
+| Windows | arm64, x64 |
+
+## License
+
+Licensed under **Apache 2.0** — [LICENSE](https://github.com/getsigit/sigit/blob/main/LICENSE)
+
## Copyright
-2026 smbCloud (Splitfire AB).
+© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).
\ No newline at end of file
npm/README.md.tmpl
+43
-3
index 3fdece4..da5f30a 100644
--- a/npm/README.md.tmpl
+++ b/npm/README.md.tmpl
@@ -1,22 +1,62 @@
<h1 align="center">siGit Code</h1>
+<p align="center">
+ AI coding agent powered by local LLM via <a href="https://ondeinference.com">Onde Inference</a>.<br>
+ Runs entirely on your machine — no API keys, no cloud round-trips.
+</p>
+
+<p align="center">
+ <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>
+ <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>
+ <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>
+ <a href="https://smbcloud.xyz"><img src="https://img.shields.io/badge/smbcloud.xyz-235843?style=flat-square&labelColor=17211D" alt="Website"></a>
+ <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>
+</p>
+
+<br>
+
## `${node_pkg}`
-This is a platform-specific binary for [`@smbcloud/sigit`](https://www.npmjs.com/package/@smbcloud/sigit). You don't need to install it directly.
+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.
-Install the main package instead:
+Install the main package and npm pulls in the right binary for your OS and architecture automatically:
```sh
npm install -g @smbcloud/sigit
```
-npm pulls in the right binary for your OS and architecture.
+## Other install methods
+
+| Channel | Command |
+|---------|---------|
+| **npm** | `npm install -g @smbcloud/sigit` |
+| **Homebrew** | `brew tap getsigit/tap && brew install sigit` |
+| **pip** | `pip install sigit-code` |
+| **uv** | `uvx --from sigit-code sigit` |
+| **Cargo** | `cargo install sigit` |
+
+## Platform support
+
+| Platform | Architecture | Package |
+|----------|--------------|---------|
+| macOS | Apple Silicon (arm64) | [`@smbcloud/sigit-darwin-arm64`](https://www.npmjs.com/package/@smbcloud/sigit-darwin-arm64) |
+| macOS | Intel (x64) | [`@smbcloud/sigit-darwin-x64`](https://www.npmjs.com/package/@smbcloud/sigit-darwin-x64) |
+| Linux | x64 | [`@smbcloud/sigit-linux-x64`](https://www.npmjs.com/package/@smbcloud/sigit-linux-x64) |
+| Linux | arm64 | [`@smbcloud/sigit-linux-arm64`](https://www.npmjs.com/package/@smbcloud/sigit-linux-arm64) |
+| Windows | x64 | [`@smbcloud/sigit-windows-x64`](https://www.npmjs.com/package/@smbcloud/sigit-windows-x64) |
+| Windows | arm64 | [`@smbcloud/sigit-windows-arm64`](https://www.npmjs.com/package/@smbcloud/sigit-windows-arm64) |
## Links
+- [Homepage](https://smbcloud.xyz)
- [Source code](https://github.com/getsigit/sigit)
- [Issues](https://github.com/getsigit/sigit/issues)
+- [Onde Inference](https://ondeinference.com)
## License
[Apache-2.0](https://github.com/getsigit/sigit/blob/main/LICENSE)
+
+## Copyright
+
+© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).
npm/sigit/README.md
+40
-20
index f37a4a3..ceb856f 100644
--- a/npm/sigit/README.md
+++ b/npm/sigit/README.md
@@ -1,13 +1,16 @@
<h1 align="center">siGit Code</h1>
<p align="center">
- AI coding agent powered by local LLM via Onde Inference.
+ AI coding agent powered by local LLM via <a href="https://ondeinference.com">Onde Inference</a>.<br>
+ Runs entirely on your machine — no API keys, no cloud round-trips.
</p>
<p align="center">
<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>
- <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>
- <a href="https://pypi.org/project/sigit/"><img src="https://img.shields.io/pypi/v/sigit?style=flat-square&labelColor=17211D&color=235843" alt="PyPI"></a>
+ <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>
+ <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>
+ <a href="https://smbcloud.xyz"><img src="https://img.shields.io/badge/smbcloud.xyz-235843?style=flat-square&labelColor=17211D" alt="Website"></a>
+ <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>
</p>
---
@@ -18,7 +21,7 @@
npm install -g @smbcloud/sigit
```
-The right binary for your platform gets pulled in automatically. Works on macOS (Apple Silicon and Intel), Linux (x64 and arm64), and Windows (x64 and arm64).
+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).
### Other ways to install
@@ -39,19 +42,34 @@ sigit
Opens a TUI coding agent that runs entirely on your device using a local LLM.
-### Zed ACP (Agent Control Protocol)
+### Zed (ACP agent)
-Add siGit as an agent in Zed by adding this to your settings:
+Add this to `~/.config/zed/settings.json`:
```json
{
- "agent": {
- "profiles": {
- "sigit": {
- "provider": "acp",
- "binary": "sigit",
- "args": ["--acp"]
- }
+ "agent_servers": {
+ "siGit Code": {
+ "type": "custom",
+ "command": "sigit"
+ }
+ }
+}
+```
+
+Then select **siGit Code** as your agent in the Zed assistant panel.
+
+### VSCode via ACP Client extension
+
+Install [ACP Client](https://marketplace.visualstudio.com/items?itemName=formulahendry.acp-client), then add:
+
+```json
+{
+ "acp.agents": {
+ "siGit Code": {
+ "command": "sigit",
+ "args": [],
+ "env": {}
}
}
}
@@ -63,19 +81,21 @@ Add siGit as an agent in Zed by adding this to your settings:
| Platform | Architecture | Package |
|---|---|---|
-| macOS | Apple Silicon (arm64) | `@smbcloud/sigit-darwin-arm64` |
-| macOS | Intel (x64) | `@smbcloud/sigit-darwin-x64` |
-| Linux | x64 | `@smbcloud/sigit-linux-x64` |
-| Linux | arm64 | `@smbcloud/sigit-linux-arm64` |
-| Windows | x64 | `@smbcloud/sigit-windows-x64` |
-| Windows | arm64 | `@smbcloud/sigit-windows-arm64` |
+| macOS | Apple Silicon (arm64) | [`@smbcloud/sigit-darwin-arm64`](https://www.npmjs.com/package/@smbcloud/sigit-darwin-arm64) |
+| macOS | Intel (x64) | [`@smbcloud/sigit-darwin-x64`](https://www.npmjs.com/package/@smbcloud/sigit-darwin-x64) |
+| Linux | x64 | [`@smbcloud/sigit-linux-x64`](https://www.npmjs.com/package/@smbcloud/sigit-linux-x64) |
+| Linux | arm64 | [`@smbcloud/sigit-linux-arm64`](https://www.npmjs.com/package/@smbcloud/sigit-linux-arm64) |
+| Windows | x64 | [`@smbcloud/sigit-windows-x64`](https://www.npmjs.com/package/@smbcloud/sigit-windows-x64) |
+| Windows | arm64 | [`@smbcloud/sigit-windows-arm64`](https://www.npmjs.com/package/@smbcloud/sigit-windows-arm64) |
---
## Links
+- [smbCloud](https://smbcloud.xyz/)
- [Source code](https://github.com/getsigit/sigit)
- [Issues](https://github.com/getsigit/sigit/issues)
+- [Onde Inference](https://ondeinference.com)
## License
@@ -83,4 +103,4 @@ Add siGit as an agent in Zed by adding this to your settings:
## Copyright
-2026 smbCloud (Splitfire AB).
+© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).
\ No newline at end of file
pypi/README.md
+4
-8
index 3c19dac..f9c55ec 100644
--- a/pypi/README.md
+++ b/pypi/README.md
@@ -1,8 +1,4 @@
-<p align="center">
- <strong>siGit Code</strong>
-</p>
-
-<h1 align="center">sigit</h1>
+<h1 align="center">siGit Code</h1>
<p align="center">
<strong>AI coding agent powered by local LLM via <a href="https://ondeinference.com">Onde Inference</a>.</strong><br>
@@ -10,10 +6,10 @@
</p>
<p align="center">
- <a href="https://smbcloud.xyz"><img src="https://img.shields.io/badge/smbcloud.xyz-235843?style=flat-square&labelColor=17211D" alt="Website"></a>
<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>
- <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>
<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>
+ <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>
+ <a href="https://smbcloud.xyz"><img src="https://img.shields.io/badge/smbcloud.xyz-235843?style=flat-square&labelColor=17211D" alt="Website"></a>
<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>
</p>
@@ -102,4 +98,4 @@ Licensed under **Apache 2.0**.
## Copyright
-2026 smbCloud (Splitfire AB).
+© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).
\ No newline at end of file