Metadata-Version: 2.4
Name: sigit-code
Version: 1.0.2
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Rust
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Summary: AI coding agent powered by local LLM via Onde Inference.
Keywords: sigit,cli,ai,coding-agent,llm,on-device
Home-Page: https://smbcloud.xyz
Author-email: Seto Elkahfi <hej@setoelkahfi.se>
License: Apache-2.0
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Documentation, https://github.com/getsigit/sigit
Project-URL: Homepage, https://smbcloud.xyz
Project-URL: Issues, https://github.com/getsigit/sigit/issues
Project-URL: Repository, https://github.com/getsigit/sigit

<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.
</p>

<p align="center">
  <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://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>

<br>

---

## Install

```sh
pip install sigit-code
uvx --from sigit-code sigit
```

Installs a native `sigit` binary for your platform. No compiler, no runtime dependencies.

## Quick start

### Terminal

```sh
sigit
```

Opens a chat UI where you talk to a local LLM coding agent directly.

### Zed (ACP agent)

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:

```json
{
  "agent_servers": {
    "siGit Code": {
      "type": "custom",
      "command": "/absolute/path/to/sigit"
    }
  }
}
```

Then pick **sigit** as your agent in the Zed assistant panel.

## Other install methods

| Method | Command |
|--------|---------|
| npm | `npm install -g @smbcloud/sigit` |
| Homebrew | `brew tap getsigit/tap && brew install sigit` |
| Cargo | `cargo install sigit` |

### From source

```sh
git clone https://github.com/getsigit/sigit
cd sigit
cargo build --release
./target/release/sigit
```

## Platform support

| Platform | Architecture |
|----------|--------------|
| macOS | arm64, x64 |
| Linux (glibc) | arm64, x64 |
| Windows | arm64, x64 |

## 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.

## License

[Apache 2.0](https://github.com/getsigit/sigit/blob/main/LICENSE)

## Copyright

© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).
