Clarify branding and update docs for siGit Code 1.0.3
paydii committed
Apr 30, 2026 at 11:58 UTC
aa533f4b61bfd76237e420438cb7b7378f969957
8 files changed
+346
-96
.agents/skills/branding/SKILL.md
+173
new file mode 100644
index 0000000..c3e175c
--- /dev/null
+++ b/.agents/skills/branding/SKILL.md
@@ -0,0 +1,173 @@
+# Skill: Branding and naming reference
+
+## Overview
+
+Use this file when writing docs, release notes, UI copy, package metadata, or setup guides for this repository.
+
+The short version:
+
+- **Product / brand name:** `siGit Code`
+- **CLI command:** `sigit`
+- **Rust crate:** `sigit`
+- **npm package:** `@smbcloud/sigit`
+- **PyPI package:** `sigit-code`
+- **Company name:** `smbCloud`
+- **LLM backend name:** `Onde Inference`
+
+The most common mistake is mixing the product name with the command name.
+
+---
+
+## Primary rule
+
+When you mean the product, write **`siGit Code`** exactly like that.
+
+Correct:
+
+- `siGit Code is a local coding agent.`
+- `siGit Code works in Zed over ACP.`
+- `siGit Code shares its model cache with the desktop app on macOS.`
+
+Wrong:
+
+- `Sigit Code`
+- `SiGit Code`
+- `siGit`
+- `sigit Code`
+- `SIGIT`
+
+Do not shorten the product name to just `siGit` in documentation or marketing copy unless there is a very specific reason and the surrounding text makes it unmistakable.
+
+---
+
+## Use lowercase names for commands and packages
+
+Use lowercase `sigit` when you mean the executable, crate, repo slug, or package name.
+
+Examples:
+
+- Run `sigit` in a terminal.
+- Install with `cargo install sigit`.
+- Install with `npm install -g @smbcloud/sigit`.
+- Install with `pip install sigit-code`.
+- The repository is `getsigit/sigit`.
+
+This distinction matters:
+
+- **Brand / product:** `siGit Code`
+- **Command / package / repo:** `sigit`
+
+---
+
+## Recommended wording patterns
+
+### Product description
+
+Prefer:
+
+- `siGit Code is a local coding agent.`
+- `siGit Code runs on your machine.`
+- `siGit Code works with any codebase.`
+
+Avoid:
+
+- `siGit is a local coding agent.`
+- `sigit is a coding assistant.`
+- `The siGit product...`
+
+### Install instructions
+
+Prefer:
+
+- `Install siGit Code with Cargo:`
+- `Install siGit Code from npm:`
+- To start siGit Code, run `sigit`.
+
+That keeps the brand name in prose and the command name in code.
+
+### Editor setup
+
+In UI-facing examples, keep the displayed agent name as `siGit Code`.
+
+Example:
+
+```/dev/null/branding-example.json#L1-8
+{
+ "agent_servers": {
+ "siGit Code": {
+ "type": "custom",
+ "command": "/absolute/path/to/sigit"
+ }
+ }
+}
+```
+
+The visible name is `siGit Code`. The executable path is `sigit`.
+
+---
+
+## Other names that should stay consistent
+
+### smbCloud
+
+Always write `smbCloud` with a lowercase `smb` and uppercase `C`.
+
+Correct:
+
+- `smbCloud`
+
+Wrong:
+
+- `SMBCloud`
+- `SmbCloud`
+- `smbcloud`
+
+### Onde Inference
+
+Use `Onde Inference` when referring to the product or project.
+
+Use `onde` when referring to the Rust crate.
+
+Examples:
+
+- `siGit Code uses Onde Inference as its local LLM backend.`
+- The Rust dependency is `onde`.
+
+### ACP
+
+Use `ACP` for the protocol acronym.
+
+Preferred long form:
+
+- `Agent Client Protocol (ACP)` on first mention when useful
+
+---
+
+## Copy checklist
+
+Before you finish any docs or release-note edit, check these quickly:
+
+1. Did you use `siGit Code` for the product name?
+2. Did you keep `sigit` lowercase for commands and package names?
+3. Did you keep `smbCloud` cased correctly?
+4. Did you keep `Onde Inference` cased correctly in prose?
+5. In setup examples, does the visible editor label say `siGit Code` while the command stays `sigit`?
+
+---
+
+## Fast replacements
+
+Common fixes:
+
+- `siGit is` -> `siGit Code is`
+- `siGit works` -> `siGit Code works`
+- `siGit knows` -> `siGit Code knows`
+- `On macOS, siGit` -> `On macOS, siGit Code`
+- `Sigit` -> usually `siGit Code` or `sigit`, depending on context
+
+When in doubt, ask:
+
+> Am I talking about the branded product, or the literal command/package name?
+
+If it is the product, use `siGit Code`.
+If it is something users type or install, use `sigit`.
CHANGELOG.md
+114
-34
index c895223..f2aa607 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,69 +1,145 @@
# Changelog
-## 1.0.0 — 2026
+## 1.0.3
-We've been running siGit in real smbCloud codebases for a while now. It holds up. Time to call it 1.0.
+This is the cleanup release for the editor-side startup problems.
----
+### What changed
-### The short version
+- Fixed ACP sessions failing on the first real prompt because the server claimed the model was ready before anything had actually been loaded
+- Changed ACP startup so the default model loads lazily on the first non-slash prompt instead of pretending it is already in memory
+- Kept `initialize` and `session/new` lightweight while still sending proper progress updates once model loading begins
+- Updated the Onde integration to `1.0.0`
+- Removed a few dependencies we were no longer using
-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 can install it with cargo, pip, npm, or Homebrew. Then you use it like any other tool on your machine.
+## 1.0.2
----
+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.
+
+### What changed
+
+- Delayed model loading in ACP mode so startup diagnostics would not leak into protocol stdout during the auth handshake
+- Tightened up the ACP startup path for editor integrations
+- Refreshed some README wording while cutting `1.0.2`
+
+## 1.0.1
+
+The first patch after `1.0.0` was mostly about making model loading and model switching feel less opaque.
+
+### What changed
+
+- Added ToolCall-based progress UI for startup model loading and downloading
+- Improved model-switch progress reporting in ACP clients
+- Fixed model-load error handling so failed switches did not leave the UI in a weird state
+- Cleaned up a few status messages and docs while the release was going out
+
+## 1.0.0 (2026)
+
+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.
+
+### What this release is
+
+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.
+
+You can install it with Cargo, pip, npm, or Homebrew and use it like any other tool on your machine.
+
+### What shipped in 1.0
+
+#### Editor integration
+
+This is the core of the project.
+
+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.
-### What's actually in here
+#### Terminal UI
-**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 feels solid now.
+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.
-**The terminal UI** started as a bonus and ended up being genuinely useful. You get a full-screen ratatui chat, streaming tokens with a blinking cursor, a spinner while the model thinks, and a model picker you can open mid-session. It runs on macOS and Linux. Windows gets the editor integration for now. TUI support there is still on the list.
+It runs on macOS and Linux. Windows gets ACP and editor mode for now. The Windows terminal UI is still unfinished.
-**Tool calling** is what makes it feel like an agent instead of a chat window. The loop runs up to 10 rounds per message:
+#### Tool calling
+
+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.
+
+Available tools:
- `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
+- `run_command`, with an optional working directory
+- `read_website`, which fetches a URL and strips it down to readable text
-The model decides which tools to call, sees the results, and keeps going until it has something useful to say.
+The model can call a tool, inspect the result, and keep going until it has a real answer.
-**Model support** ended up broader than we expected for 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.
+#### Model support
-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 cluttering the conversation. The 8B is the default on desktop. Mobile defaults to 1.7B because iOS gives apps about 2 to 3 GB, and we found out the hard way that 3B causes OOM on an iPhone 16e.
+The model list ended up wider than we expected for 1.0:
-**The model picker** (`/models` in the TUI, or an agent config option in editors) shows what is cached locally, what is 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.
+- 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
-**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 behaves like a normal coding agent and does not force platform-specific advice where it does not belong.
+They are all GGUF models and they all come from Hugging Face on first run.
-**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 was basically its own project.
+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.
----
+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.
-### What doesn't work yet
+#### Model picker
-The Windows TUI. ACP and editor mode work fine on Windows. It is just the interactive terminal UI that is still missing. The underlying issue is Unix-specific terminal handling that we have not abstracted yet.
+The model picker shows:
----
+- what is already cached locally
+- what can be downloaded
+- which models support tool calling
+- whether the local cache looks healthy
+
+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.
+
+#### smbCloud context
+
+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.
+
+Outside smbCloud, it backs off and behaves like a normal coding agent.
+
+#### Distribution
+
+Distribution took an unreasonable amount of time, honestly.
+
+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:
+
+- `cargo install sigit`
+- `pip install sigit-code`
+- `npm install -g @smbcloud/sigit`
+- `brew install sigit`
+
+Getting that whole pipeline to behave across CI, crates.io, PyPI, npm, and Homebrew was basically its own project.
+
+### What still does not work
+
+The Windows terminal UI is still missing.
+
+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.
### Changes since 0.1.2
-- Qwen 3 14B support
-- Qwen 3 `<think>` block parsing, which strips and renders thinking content separately in the TUI
-- Moved all TUI code into `#[cfg(unix)]`, which fixed a pile of dead-code errors on Windows CI that were blocking releases
-- Live download progress bar during model switch, with cancellation support (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
+- Added Qwen 3 14B support
+- Added Qwen 3 `<think>` block parsing and separate rendering in the TUI
+- Moved all TUI code into `#[cfg(unix)]`, which fixed a pile of dead-code errors on Windows CI
+- Added live download progress during model switches, including cancellation with Ctrl+C
+- Added model download and loading progress in the Zed agent config panel
+- Added an animated spinner during model switching
+- Added Qwen 2.5 Coder 7B
+- Added downloadable models to the picker, not just locally cached ones
+- Made model selection persist across restarts
+- Added session working-directory support
+- Moved model picker logic into a platform-independent module so Windows can compile without the TUI
+- Added the `/models N` shortcut for picking a model by number
+- Added the `read_website` tool
+- Improved `read_file` handling and empty-reply detection
+- Added async tool execution
- Fixed CI cross-compilation for macOS, iOS, Linux, and Windows
-- npm, PyPI, and Homebrew distribution added
+- Added npm, PyPI, and Homebrew distribution
---
Cargo.lock
+1
-1
index e71a296..d6edfa2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5002,7 +5002,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
[[package]]
name = "sigit"
-version = "1.0.2"
+version = "1.0.3"
dependencies = [
"agent-client-protocol",
"anyhow",
Cargo.toml
+1
-1
index 3a1a59d..1ca51f4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "sigit"
-version = "1.0.2"
+version = "1.0.3"
edition = "2024"
description = "siGit Code — ACP-compatible AI coding agent for smbCloud platform."
documentation = "https://github.com/getsigit/sigit"
README.md
+19
-19
index f19c0b0..f37b2cc 100644
--- a/README.md
+++ b/README.md
@@ -8,14 +8,14 @@
<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>
-siGit is a coding agent that runs on your machine. No API keys, no cloud round-trips, no subscription.
+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 with any codebase. It knows smbCloud repos a bit better — the Rust workspace layout, deploy flows, auth boundaries, GresIQ — so you spend less time explaining the setup.
+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.
-Two modes:
+You can use it in two ways:
-- **ACP mode** — Zed or another ACP-compatible editor starts it over stdio
-- **Terminal mode** — run `sigit` for an interactive chat UI
+- **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 |
|----------|----------|---------------|
@@ -25,14 +25,14 @@ Two modes:
## smbCloud context
-In an smbCloud repo, siGit knows the terrain:
+In an smbCloud repo, siGit Code already knows a few important things:
-- platform user flows and tenant app auth flows are different things
-- `Project` is the umbrella workspace; `FrontendApp`, `AuthApp`, and GresIQ are separate deployable units
-- Next.js SSR deploys aren't the same as the git-push path
-- existing workspace patterns and crate boundaries over new abstractions
+- 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 doesn't pretend otherwise.
+In other repos it stays general and does not pretend everything is about smbCloud.
## Install
@@ -49,13 +49,13 @@ cargo install sigit
## First run
-On first launch siGit downloads a GGUF model from Hugging Face, usually 1–2 GB. After that it loads from disk in a few seconds.
+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, the model cache is shared with the siGit desktop app via an App Group container. If the desktop app already pulled the model, the CLI reuses it.
+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 to `~/.config/zed/settings.json`:
+Add this to `~/.config/zed/settings.json`:
```json
{
@@ -68,11 +68,11 @@ Add to `~/.config/zed/settings.json`:
}
```
-Use the full absolute path. `~` doesn't expand here.
+Use the full absolute path. `~` does not expand here.
-## VSCode via ACP Client extension
+## VS Code with ACP Client
-Install [ACP client](https://marketplace.visualstudio.com/items?itemName=formulahendry.acp-client):
+Install [ACP Client](https://marketplace.visualstudio.com/items?itemName=formulahendry.acp-client), then add:
```json
{
@@ -88,9 +88,9 @@ Install [ACP client](https://marketplace.visualstudio.com/items?itemName=formula
## Terminal mode
-Run `sigit` in a terminal and you get an interactive chat UI. Same model and system prompt as the editor integration, just without Zed.
+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 needs Unix terminal behavior, so macOS and Linux only for now.
+Terminal mode currently needs Unix terminal behavior, so it works on macOS and Linux only.
## Platform support
npm/README.md.tmpl
+9
-11
index bc9f8f8..15991b7 100644
--- a/npm/README.md.tmpl
+++ b/npm/README.md.tmpl
@@ -1,8 +1,8 @@
<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 on your machine. No API keys, no cloud.
+ A local coding agent powered by <a href="https://ondeinference.com">Onde Inference</a>.<br>
+ Runs on your machine. No API keys. No cloud round-trips.
</p>
<p align="center">
@@ -13,13 +13,11 @@
<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 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.
+This package is one of the platform-specific binaries behind [`@smbcloud/sigit`](https://www.npmjs.com/package/@smbcloud/sigit). You usually do not need to install it directly.
-Install the main package and npm pulls in the right binary for your OS and architecture:
+Install the main package and npm will pull in the right binary for your OS and architecture:
```sh
npm install -g @smbcloud/sigit
@@ -29,11 +27,11 @@ npm install -g @smbcloud/sigit
| 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` |
+| 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
npm/sigit/README.md
+19
-17
index ceb856f..b126a6d 100644
--- a/npm/sigit/README.md
+++ b/npm/sigit/README.md
@@ -1,8 +1,8 @@
<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.
+ A local coding agent powered by <a href="https://ondeinference.com">Onde Inference</a>.<br>
+ Runs on your machine. No API keys. No cloud round-trips.
</p>
<p align="center">
@@ -13,26 +13,28 @@
<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>
----
-
## Install
```sh
npm install -g @smbcloud/sigit
```
-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).
+npm pulls in the right binary for your platform automatically.
+
+Supported targets:
+
+- macOS, Apple Silicon and Intel
+- Linux, x64 and arm64
+- Windows, x64 and arm64
-### Other ways to install
+## Other install methods
| Method | Command |
|---|---|
-| **Homebrew** | `brew tap getsigit/tap && brew install sigit` |
-| **pip** | `pip install sigit-code` |
-| **uv** | `uvx --from sigit-code sigit` |
-| **Cargo** | `cargo install sigit` |
-
----
+| Homebrew | `brew tap getsigit/tap && brew install sigit` |
+| pip | `pip install sigit-code` |
+| uv | `uvx --from sigit-code sigit` |
+| Cargo | `cargo install sigit` |
## Usage
@@ -40,9 +42,9 @@ The right binary for your platform is pulled in automatically. Works on macOS (A
sigit
```
-Opens a TUI coding agent that runs entirely on your device using a local LLM.
+That starts the local terminal UI.
-### Zed (ACP agent)
+### Zed
Add this to `~/.config/zed/settings.json`:
@@ -57,9 +59,9 @@ Add this to `~/.config/zed/settings.json`:
}
```
-Then select **siGit Code** as your agent in the Zed assistant panel.
+Then select **siGit Code** in the Zed assistant panel.
-### VSCode via ACP Client extension
+### VS Code with ACP Client
Install [ACP Client](https://marketplace.visualstudio.com/items?itemName=formulahendry.acp-client), then add:
@@ -75,8 +77,6 @@ Install [ACP Client](https://marketplace.visualstudio.com/items?itemName=formula
}
```
----
-
## Platform support
| Platform | Architecture | Package |
@@ -88,8 +88,6 @@ Install [ACP Client](https://marketplace.visualstudio.com/items?itemName=formula
| 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/)
@@ -103,4 +101,4 @@ Install [ACP Client](https://marketplace.visualstudio.com/items?itemName=formula
## Copyright
-© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).
\ No newline at end of file
+© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).
pypi/README.md
+10
-13
index cb45537..427fea8 100644
--- a/pypi/README.md
+++ b/pypi/README.md
@@ -1,8 +1,8 @@
<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 on your machine. No API keys, no cloud.
+ A local coding agent powered by <a href="https://ondeinference.com">Onde Inference</a>.<br>
+ Runs on your machine. No API keys. No cloud round-trips.
</p>
<p align="center">
@@ -13,10 +13,6 @@
<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>
-
----
-
## Install
```sh
@@ -24,21 +20,21 @@ pip install sigit-code
uvx --from sigit-code sigit
```
-Installs a native `sigit` binary for your platform. No compiler, no runtime dependencies.
+This installs a native `sigit` binary for your platform. You do not need a compiler or extra runtime setup.
## Quick start
-### Terminal
+### Terminal mode
```sh
sigit
```
-Opens a chat UI where you talk to a local LLM coding agent directly.
+That opens the local chat UI.
-### Zed (ACP agent)
+### Zed
-siGit works as an [ACP-compatible](https://github.com/nicobailon/agent-client-protocol) agent in [Zed](https://zed.dev). Add this to your Zed settings:
+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:
```json
{
@@ -51,7 +47,7 @@ siGit works as an [ACP-compatible](https://github.com/nicobailon/agent-client-pr
}
```
-Then pick **sigit** as your agent in the Zed assistant panel.
+Then pick **siGit Code** in the assistant panel.
## Other install methods
@@ -80,7 +76,7 @@ cargo build --release
## Source and issues
-This package ships a pre-built binary. Source code is at [github.com/getsigit/sigit](https://github.com/getsigit/sigit). File bugs there.
+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.
## License
@@ -88,4 +84,4 @@ This package ships a pre-built binary. Source code is at [github.com/getsigit/si
## Copyright
-© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).
\ No newline at end of file
+© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).