@smbcloud/sigit-darwin-arm64 0.1.2 → 1.0.1
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.
- package/README.md +43 -3
- package/bin/sigit +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,22 +1,62 @@
|
|
|
1
1
|
<h1 align="center">siGit Code</h1>
|
|
2
2
|
|
|
3
|
+
<p align="center">
|
|
4
|
+
AI coding agent powered by local LLM via <a href="https://ondeinference.com">Onde Inference</a>.<br>
|
|
5
|
+
Runs on your machine. No API keys, no cloud.
|
|
6
|
+
</p>
|
|
7
|
+
|
|
8
|
+
<p align="center">
|
|
9
|
+
<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>
|
|
10
|
+
<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>
|
|
11
|
+
<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>
|
|
12
|
+
<a href="https://smbcloud.xyz"><img src="https://img.shields.io/badge/smbcloud.xyz-235843?style=flat-square&labelColor=17211D" alt="Website"></a>
|
|
13
|
+
<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>
|
|
14
|
+
</p>
|
|
15
|
+
|
|
16
|
+
<br>
|
|
17
|
+
|
|
3
18
|
## `sigit-darwin-arm64`
|
|
4
19
|
|
|
5
|
-
This is a platform-specific binary for [`@smbcloud/sigit`](https://www.npmjs.com/package/@smbcloud/sigit). You don't need to install it directly.
|
|
20
|
+
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.
|
|
6
21
|
|
|
7
|
-
Install the main package
|
|
22
|
+
Install the main package and npm pulls in the right binary for your OS and architecture:
|
|
8
23
|
|
|
9
24
|
```sh
|
|
10
25
|
npm install -g @smbcloud/sigit
|
|
11
26
|
```
|
|
12
27
|
|
|
13
|
-
|
|
28
|
+
## Other install methods
|
|
29
|
+
|
|
30
|
+
| Channel | Command |
|
|
31
|
+
|---------|---------|
|
|
32
|
+
| **npm** | `npm install -g @smbcloud/sigit` |
|
|
33
|
+
| **Homebrew** | `brew tap getsigit/tap && brew install sigit` |
|
|
34
|
+
| **pip** | `pip install sigit-code` |
|
|
35
|
+
| **uv** | `uvx --from sigit-code sigit` |
|
|
36
|
+
| **Cargo** | `cargo install sigit` |
|
|
37
|
+
|
|
38
|
+
## Platform support
|
|
39
|
+
|
|
40
|
+
| Platform | Architecture | Package |
|
|
41
|
+
|----------|--------------|---------|
|
|
42
|
+
| macOS | Apple Silicon (arm64) | [`@smbcloud/sigit-darwin-arm64`](https://www.npmjs.com/package/@smbcloud/sigit-darwin-arm64) |
|
|
43
|
+
| macOS | Intel (x64) | [`@smbcloud/sigit-darwin-x64`](https://www.npmjs.com/package/@smbcloud/sigit-darwin-x64) |
|
|
44
|
+
| Linux | x64 | [`@smbcloud/sigit-linux-x64`](https://www.npmjs.com/package/@smbcloud/sigit-linux-x64) |
|
|
45
|
+
| Linux | arm64 | [`@smbcloud/sigit-linux-arm64`](https://www.npmjs.com/package/@smbcloud/sigit-linux-arm64) |
|
|
46
|
+
| Windows | x64 | [`@smbcloud/sigit-windows-x64`](https://www.npmjs.com/package/@smbcloud/sigit-windows-x64) |
|
|
47
|
+
| Windows | arm64 | [`@smbcloud/sigit-windows-arm64`](https://www.npmjs.com/package/@smbcloud/sigit-windows-arm64) |
|
|
14
48
|
|
|
15
49
|
## Links
|
|
16
50
|
|
|
51
|
+
- [Homepage](https://smbcloud.xyz)
|
|
17
52
|
- [Source code](https://github.com/getsigit/sigit)
|
|
18
53
|
- [Issues](https://github.com/getsigit/sigit/issues)
|
|
54
|
+
- [Onde Inference](https://ondeinference.com)
|
|
19
55
|
|
|
20
56
|
## License
|
|
21
57
|
|
|
22
58
|
[Apache-2.0](https://github.com/getsigit/sigit/blob/main/LICENSE)
|
|
59
|
+
|
|
60
|
+
## Copyright
|
|
61
|
+
|
|
62
|
+
© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).
|
package/bin/sigit
CHANGED
|
Binary file
|