sigit-code 0.1.1__py3-none-win_amd64.whl
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.
|
Binary file
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sigit-code
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Classifier: Development Status :: 4 - Beta
|
|
5
|
+
Classifier: Environment :: Console
|
|
6
|
+
Classifier: Intended Audience :: Developers
|
|
7
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
8
|
+
Classifier: Operating System :: MacOS
|
|
9
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
10
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Rust
|
|
13
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
14
|
+
Classifier: Topic :: Software Development
|
|
15
|
+
Classifier: Topic :: Utilities
|
|
16
|
+
Summary: AI coding agent powered by local LLM via Onde Inference.
|
|
17
|
+
Keywords: sigit,cli,ai,coding-agent,llm,on-device
|
|
18
|
+
Home-Page: https://smbcloud.xyz
|
|
19
|
+
Author-email: Seto Elkahfi <hej@setoelkahfi.se>
|
|
20
|
+
License: Apache-2.0
|
|
21
|
+
Requires-Python: >=3.8
|
|
22
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
23
|
+
Project-URL: Documentation, https://github.com/getsigit/sigit
|
|
24
|
+
Project-URL: Homepage, https://smbcloud.xyz
|
|
25
|
+
Project-URL: Issues, https://github.com/getsigit/sigit/issues
|
|
26
|
+
Project-URL: Repository, https://github.com/getsigit/sigit
|
|
27
|
+
|
|
28
|
+
<p align="center">
|
|
29
|
+
<strong>siGit Code</strong>
|
|
30
|
+
</p>
|
|
31
|
+
|
|
32
|
+
<h1 align="center">sigit</h1>
|
|
33
|
+
|
|
34
|
+
<p align="center">
|
|
35
|
+
<strong>AI coding agent powered by local LLM via <a href="https://ondeinference.com">Onde Inference</a>.</strong><br>
|
|
36
|
+
ACP-compatible agent that runs entirely on your machine — no API keys, no cloud.
|
|
37
|
+
</p>
|
|
38
|
+
|
|
39
|
+
<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
|
+
<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
|
+
<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>
|
|
44
|
+
<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
|
+
</p>
|
|
46
|
+
|
|
47
|
+
<br>
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## Install
|
|
52
|
+
|
|
53
|
+
```sh
|
|
54
|
+
pip install sigit-code
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
Installs the native `sigit` binary for your platform — no compiler, no Node.js, no runtime dependencies.
|
|
58
|
+
|
|
59
|
+
## Quick start
|
|
60
|
+
|
|
61
|
+
### Interactive TUI
|
|
62
|
+
|
|
63
|
+
```sh
|
|
64
|
+
sigit
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
A terminal UI opens where you can chat with a local LLM coding agent directly.
|
|
68
|
+
|
|
69
|
+
### Zed editor (ACP agent)
|
|
70
|
+
|
|
71
|
+
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:
|
|
72
|
+
|
|
73
|
+
```json
|
|
74
|
+
{
|
|
75
|
+
"agent": {
|
|
76
|
+
"profiles": {
|
|
77
|
+
"sigit": {
|
|
78
|
+
"provider": "acp",
|
|
79
|
+
"binary": {
|
|
80
|
+
"path": "sigit",
|
|
81
|
+
"args": ["--acp"]
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Then select **sigit** as your agent profile in the Zed assistant panel.
|
|
90
|
+
|
|
91
|
+
## Other installation methods
|
|
92
|
+
|
|
93
|
+
| Method | Command |
|
|
94
|
+
|--------|---------|
|
|
95
|
+
| npm | `npm install -g @smbcloud/sigit` |
|
|
96
|
+
| Homebrew | `brew install getsigit/sigit/sigit` |
|
|
97
|
+
| Cargo | `cargo install sigit` |
|
|
98
|
+
|
|
99
|
+
### From source
|
|
100
|
+
|
|
101
|
+
```sh
|
|
102
|
+
git clone https://github.com/getsigit/sigit
|
|
103
|
+
cd sigit
|
|
104
|
+
cargo build --release
|
|
105
|
+
./target/release/sigit
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
## Platform support
|
|
109
|
+
|
|
110
|
+
Pre-built native binaries ship for every major platform:
|
|
111
|
+
|
|
112
|
+
| Platform | Architecture |
|
|
113
|
+
|---------------|--------------|
|
|
114
|
+
| macOS | arm64, x64 |
|
|
115
|
+
| Linux (glibc) | arm64, x64 |
|
|
116
|
+
| Windows | arm64, x64 |
|
|
117
|
+
|
|
118
|
+
## Source & issues
|
|
119
|
+
|
|
120
|
+
This package ships a pre-built native binary. Source lives at
|
|
121
|
+
[github.com/getsigit/sigit](https://github.com/getsigit/sigit) —
|
|
122
|
+
file bugs and feature requests there.
|
|
123
|
+
|
|
124
|
+
## License
|
|
125
|
+
|
|
126
|
+
Licensed under **Apache 2.0**.
|
|
127
|
+
|
|
128
|
+
- [Apache License 2.0](https://github.com/getsigit/sigit/blob/main/LICENSE)
|
|
129
|
+
|
|
130
|
+
---
|
|
131
|
+
|
|
132
|
+
## Copyright
|
|
133
|
+
|
|
134
|
+
2026 smbCloud (Splitfire AB).
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
sigit_code-0.1.1.data/scripts/sigit.exe,sha256=DoF6OYh_K4J6ejKmt9TPtKrdyPCxouI8Ymb30Sr-tRM,61098496
|
|
2
|
+
sigit_code-0.1.1.dist-info/METADATA,sha256=qidKcC_5oWnaavwwl0sD9fYdm54UDQamWGLDx2xRJug,4111
|
|
3
|
+
sigit_code-0.1.1.dist-info/WHEEL,sha256=0cg7uMdVM1SNK0ih4zFWnV0wsxqvcArlTmRGOaRhEnw,94
|
|
4
|
+
sigit_code-0.1.1.dist-info/sboms/sigit.cyclonedx.json,sha256=qjjGaXVYwRNeiP72S0I1ravWV2-qD_pjzkYjP0mygbY,819686
|
|
5
|
+
sigit_code-0.1.1.dist-info/RECORD,,
|