@getsigit/sigit-linux-arm64 0.0.0 → 1.5.5

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.
Files changed (3) hide show
  1. package/README.md +60 -0
  2. package/bin/sigit +0 -0
  3. package/package.json +10 -3
package/README.md ADDED
@@ -0,0 +1,60 @@
1
+ <h1 align="center">siGit Code</h1>
2
+
3
+ <p align="center">
4
+ A local coding agent powered by <a href="https://ondeinference.com">Onde Inference</a>.<br>
5
+ Runs on your machine. No API keys. No cloud round-trips.
6
+ </p>
7
+
8
+ <p align="center">
9
+ <a href="https://www.npmjs.com/package/@getsigit/sigit"><img src="https://img.shields.io/npm/v/@getsigit/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
+ ## `sigit-linux-arm64`
17
+
18
+ This package is one of the platform-specific binaries behind [`@getsigit/sigit`](https://www.npmjs.com/package/@getsigit/sigit). You usually do not need to install it directly.
19
+
20
+ Install the main package and npm will pull in the right binary for your OS and architecture:
21
+
22
+ ```sh
23
+ npm install -g @getsigit/sigit
24
+ ```
25
+
26
+ ## Other install methods
27
+
28
+ | Channel | Command |
29
+ |---------|---------|
30
+ | npm | `npm install -g @getsigit/sigit` |
31
+ | Homebrew | `brew tap getsigit/tap && brew trust --tap getsigit/tap && brew install sigit` |
32
+ | pip | `pip install sigit-code` |
33
+ | uv | `uvx --from sigit-code sigit` |
34
+ | Cargo | `cargo install sigit` |
35
+
36
+ ## Platform support
37
+
38
+ | Platform | Architecture | Package |
39
+ |----------|--------------|---------|
40
+ | macOS | Apple Silicon (arm64) | [`@getsigit/sigit-darwin-arm64`](https://www.npmjs.com/package/@getsigit/sigit-darwin-arm64) |
41
+ | macOS | Intel (x64) | [`@getsigit/sigit-darwin-x64`](https://www.npmjs.com/package/@getsigit/sigit-darwin-x64) |
42
+ | Linux | x64 | [`@getsigit/sigit-linux-x64`](https://www.npmjs.com/package/@getsigit/sigit-linux-x64) |
43
+ | Linux | arm64 | [`@getsigit/sigit-linux-arm64`](https://www.npmjs.com/package/@getsigit/sigit-linux-arm64) |
44
+ | Windows | x64 | [`@getsigit/sigit-windows-x64`](https://www.npmjs.com/package/@getsigit/sigit-windows-x64) |
45
+ | Windows | arm64 | [`@getsigit/sigit-windows-arm64`](https://www.npmjs.com/package/@getsigit/sigit-windows-arm64) |
46
+
47
+ ## Links
48
+
49
+ - [Homepage](https://smbcloud.xyz)
50
+ - [Source code](https://github.com/getsigit/sigit)
51
+ - [Issues](https://github.com/getsigit/sigit/issues)
52
+ - [Onde Inference](https://ondeinference.com)
53
+
54
+ ## License
55
+
56
+ [Apache-2.0](https://github.com/getsigit/sigit/blob/main/LICENSE)
57
+
58
+ ## Copyright
59
+
60
+ © 2026 PT Sigit Mitra Bangun ([siGit Code & Deploy](https://sigit.si)), distributed by [Splitfire AB](https://smbcloud.xyz/).
package/bin/sigit ADDED
Binary file
package/package.json CHANGED
@@ -1,7 +1,14 @@
1
1
  {
2
2
  "name": "@getsigit/sigit-linux-arm64",
3
- "version": "0.0.0",
4
- "description": "Placeholder. See https://github.com/getsigit/sigit",
3
+ "version": "1.5.5",
4
+ "description": "Platform binary for siGit Code.",
5
5
  "license": "Apache-2.0",
6
- "repository": { "type": "git", "url": "git+https://github.com/getsigit/sigit.git" }
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/getsigit/sigit.git"
9
+ },
10
+ "keywords": ["sigit-linux-arm64","cli","binary","sigit","ai","coding-agent"],
11
+ "os": ["linux"],
12
+ "cpu": ["arm64"],
13
+ "files": ["bin"]
7
14
  }