1 # Changelog
2
3 ## 1.2.1
4
5 Stabilizes the Zed/ACP integration and finishes the cloud-tier wiring on top of 1.2.0.
6
7 ### What changed
8
9 - Fixed a Zed crash by keeping model-picker labels ASCII in the ACP model selector
10 - Wired ACP auth, cloud tiers, and slash commands into the Zed panel, including a `/reload` command to re-sync session state in place
11 - Fixed the TUI so the loaded-model checkmark appears once a download completes
12 - Synced bundled agent skills with the current code and added `CLAUDE.md`
13
14 ## 1.2.0
15
16 Adds siGit Code Cloud — a hosted inference tier alongside on-device models.
17
18 ### What changed
19
20 - Added siGit Code Cloud with cloud-tier routing, pointed at `sigit.si`
21 - Added account management slash commands and surfaced cloud tiers in `/models`
22 - Carried forward from 1.1.0: ACP SDK v0.13, refreshed dependencies and branding
23
24 ## 1.1.0
25
26 Bumps the ACP SDK to v0.13 and pulls in updated dependencies.
27
28 ### What changed
29
30 - Updated `agent-client-protocol` from v0.11 to v0.13
31 - Updated `onde` to 1.1.2
32 - Refreshed branding and skill metadata
33
34 ## 1.0.4
35
36 This release tightens up the terminal experience and finishes a few release-facing cleanup items.
37
38 ### What changed
39
40 - Added bold rich-text rendering in the TUI for assistant replies, so `**text**` now displays with terminal styling instead of raw markdown markers
41 - Refreshed the bundled skill metadata to follow the current Agent Skills `SKILL.md` format
42 - Synced the crate release metadata for the `1.0.4` cut
43
44 ## 1.0.3
45
46 This is the cleanup release for the editor-side startup problems.
47
48 ### What changed
49
50 - Fixed ACP sessions failing on the first real prompt because the server claimed the model was ready before anything had actually been loaded
51 - Changed ACP startup so the default model loads lazily on the first non-slash prompt instead of pretending it is already in memory
52 - Kept `initialize` and `session/new` lightweight while still sending proper progress updates once model loading begins
53 - Updated the Onde integration to `1.0.0`
54 - Removed a few dependencies we were no longer using
55
56 ## 1.0.2
57
58 This release was supposed to fix the ACP auth breakage. It did fix the stdout pollution problem, but it turned out not to be the whole story.
59
60 ### What changed
61
62 - Delayed model loading in ACP mode so startup diagnostics would not leak into protocol stdout during the auth handshake
63 - Tightened up the ACP startup path for editor integrations
64 - Refreshed some README wording while cutting `1.0.2`
65
66 ## 1.0.1
67
68 The first patch after `1.0.0` was mostly about making model loading and model switching feel less opaque.
69
70 ### What changed
71
72 - Added ToolCall-based progress UI for startup model loading and downloading
73 - Improved model-switch progress reporting in ACP clients
74 - Fixed model-load error handling so failed switches did not leave the UI in a weird state
75 - Cleaned up a few status messages and docs while the release was going out
76
77 ## 1.0.0 (2026)
78
79 siGit Code has been living in real smbCloud repos for a while now. At some point it stopped feeling like an experiment, so we called it 1.0.
80
81 ### What this release is
82
83 siGit Code is a local coding agent. It runs a quantized model on your machine, talks to editors over ACP, and can read files, run commands, fetch web pages, and write code without sending your project to a hosted API.
84
85 You can install it with Cargo, pip, npm, or Homebrew and use it like any other tool on your machine.
86
87 ### What shipped in 1.0
88
89 #### Editor integration
90
91 This is the core of the project.
92
93 Zed and VS Code can talk to siGit Code over ACP. Multi-turn sessions work. Tool calling works. Session forking works. Working-directory context works. That was the original goal, and it feels solid now.
94
95 #### Terminal UI
96
97 The terminal UI started as a side quest and turned out to be useful. You get a full-screen ratatui chat, streaming tokens, a spinner while the model is busy, and a model picker you can open in the middle of a session.
98
99 It runs on macOS and Linux. Windows gets ACP and editor mode for now. The Windows terminal UI is still unfinished.
100
101 #### Tool calling
102
103 This is the part that makes siGit Code feel like an agent instead of a chat box. The loop can run up to 10 rounds per message.
104
105 Available tools:
106
107 - `read_file` / `write_file` / `delete_file`
108 - `list_directory` / `search_files`
109 - `run_command`, with an optional working directory
110 - `read_website`, which fetches a URL and strips it down to readable text
111
112 The model can call a tool, inspect the result, and keep going until it has a real answer.
113
114 #### Model support
115
116 The model list ended up wider than we expected for 1.0:
117
118 - Qwen 3 1.7B, 4B, 8B, and 14B
119 - Qwen 2.5 1.5B and 3B
120 - Qwen 2.5 Coder 1.5B, 3B, and 7B
121 - DeepSeek Coder 6.7B
122
123 They are all GGUF models and they all come from Hugging Face on first run.
124
125 Qwen 3 is the interesting one. It uses extended thinking mode. The model reasons inside `<think>...</think>` blocks before answering. The TUI strips those blocks out and renders them dimmed above the reply, so you can see what happened without turning the whole conversation into noise.
126
127 The 8B model is the desktop default. Mobile stays on 1.7B because iOS gives apps roughly 2 to 3 GB of memory, and we learned the hard way that 3B can blow up on an iPhone 16e.
128
129 #### Model picker
130
131 The model picker shows:
132
133 - what is already cached locally
134 - what can be downloaded
135 - which models support tool calling
136 - whether the local cache looks healthy
137
138 You can open it with `/models` in the TUI or through the editor config option. Switching models happens in the background and the UI stays alive while the download or load is in progress.
139
140 #### smbCloud context
141
142 siGit Code knows smbCloud repos better than a generic coding assistant does. It understands the difference between platform-user flows and tenant-app auth flows, how `Project`, `FrontendApp`, `AuthApp`, and GresIQ fit together, and why Next.js SSR deploys are not the same thing as the generic git-push path.
143
144 Outside smbCloud, it backs off and behaves like a normal coding agent.
145
146 #### Distribution
147
148 Distribution took an unreasonable amount of time, honestly.
149
150 There are prebuilt binaries for macOS, Linux, and Windows on both arm64 and x64 where relevant, plus install paths through Cargo, PyPI, npm, and Homebrew:
151
152 - `cargo install sigit`
153 - `pip install sigit-code`
154 - `npm install -g @smbcloud/sigit`
155 - `brew install sigit`
156
157 Getting that whole pipeline to behave across CI, crates.io, PyPI, npm, and Homebrew was basically its own project.
158
159 ### What still does not work
160
161 The Windows terminal UI is still missing.
162
163 ACP and editor mode work on Windows. The part that is still missing is the interactive full-screen terminal UI. The blocker is Unix-specific terminal handling that has not been abstracted cleanly yet.
164
165 ### Changes since 0.1.2
166
167 - Added Qwen 3 14B support
168 - Added Qwen 3 `<think>` block parsing and separate rendering in the TUI
169 - Moved all TUI code into `#[cfg(unix)]`, which fixed a pile of dead-code errors on Windows CI
170 - Added live download progress during model switches, including cancellation with Ctrl+C
171 - Added model download and loading progress in the Zed agent config panel
172 - Added an animated spinner during model switching
173 - Added Qwen 2.5 Coder 7B
174 - Added downloadable models to the picker, not just locally cached ones
175 - Made model selection persist across restarts
176 - Added session working-directory support
177 - Moved model picker logic into a platform-independent module so Windows can compile without the TUI
178 - Added the `/models N` shortcut for picking a model by number
179 - Added the `read_website` tool
180 - Improved `read_file` handling and empty-reply detection
181 - Added async tool execution
182 - Fixed CI cross-compilation for macOS, iOS, Linux, and Windows
183 - Added npm, PyPI, and Homebrew distribution
184
185 ---
186
187 *© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).*