From e04df1935eb28866fd701d876f75564cbfd36c96 Mon Sep 17 00:00:00 2001 From: Seto Elkahfi Date: Tue, 14 Apr 2026 23:32:25 +0200 Subject: [PATCH 1/2] Add sigit agent with binary distribution and icon --- sigit/agent.json | 22 +++++++++++ sigit/icon.svg | 98 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 120 insertions(+) create mode 100644 sigit/agent.json create mode 100644 sigit/icon.svg diff --git a/sigit/agent.json b/sigit/agent.json new file mode 100644 index 00000000..adcaf5d7 --- /dev/null +++ b/sigit/agent.json @@ -0,0 +1,22 @@ +{ + "id": "sigit", + "name": "siGit", + "version": "0.1.1", + "description": "A coding agent for smbCloud that runs entirely on your machine.", + "repository": "https://github.com/getsigit/sigit", + "website": "https://github.com/getsigit/sigit", + "authors": ["Seto Elkahfi "], + "license": "Apache-2.0", + "distribution": { + "binary": { + "darwin-aarch64": { + "archive": "https://github.com/getsigit/sigit/releases/download/v0.1.1/sigit-darwin-aarch64.tar.gz", + "cmd": "./sigit" + }, + "darwin-x86_64": { + "archive": "https://github.com/getsigit/sigit/releases/download/v0.1.1/sigit-darwin-x86_64.tar.gz", + "cmd": "./sigit" + } + } + } +} diff --git a/sigit/icon.svg b/sigit/icon.svg new file mode 100644 index 00000000..334fc95c --- /dev/null +++ b/sigit/icon.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + From dac7b7d7bf56c2b3f8ec878be3552f9e70e8927a Mon Sep 17 00:00:00 2001 From: Seto Elkahfi Date: Sun, 26 Apr 2026 15:33:01 +0200 Subject: [PATCH 2/2] Fix archive URLs, add all platforms, add npx distribution - Fixed darwin archive URLs to match actual release asset names (sigit-macos-arm64.tar.gz, not sigit-darwin-aarch64.tar.gz) - Added linux-aarch64, linux-x86_64, windows-aarch64, windows-x86_64 - Added npx distribution via @smbcloud/sigit - Updated description and version to 1.0.0 --- sigit/agent.json | 31 +++++++++++++++++++++++++------ 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/sigit/agent.json b/sigit/agent.json index adcaf5d7..8ad3be5d 100644 --- a/sigit/agent.json +++ b/sigit/agent.json @@ -1,22 +1,41 @@ { "id": "sigit", - "name": "siGit", - "version": "0.1.1", - "description": "A coding agent for smbCloud that runs entirely on your machine.", + "name": "siGit Code", + "version": "1.0.0", + "description": "Local-first coding agent. Runs entirely on your machine with optional on-device LLM inference via Onde.", "repository": "https://github.com/getsigit/sigit", "website": "https://github.com/getsigit/sigit", - "authors": ["Seto Elkahfi "], + "authors": ["smbCloud"], "license": "Apache-2.0", "distribution": { "binary": { "darwin-aarch64": { - "archive": "https://github.com/getsigit/sigit/releases/download/v0.1.1/sigit-darwin-aarch64.tar.gz", + "archive": "https://github.com/getsigit/sigit/releases/download/v1.0.0/sigit-macos-arm64.tar.gz", "cmd": "./sigit" }, "darwin-x86_64": { - "archive": "https://github.com/getsigit/sigit/releases/download/v0.1.1/sigit-darwin-x86_64.tar.gz", + "archive": "https://github.com/getsigit/sigit/releases/download/v1.0.0/sigit-macos-amd64.tar.gz", "cmd": "./sigit" + }, + "linux-aarch64": { + "archive": "https://github.com/getsigit/sigit/releases/download/v1.0.0/sigit-linux-arm64", + "cmd": "./sigit-linux-arm64" + }, + "linux-x86_64": { + "archive": "https://github.com/getsigit/sigit/releases/download/v1.0.0/sigit-linux-amd64", + "cmd": "./sigit-linux-amd64" + }, + "windows-aarch64": { + "archive": "https://github.com/getsigit/sigit/releases/download/v1.0.0/sigit-win-arm64.exe", + "cmd": "./sigit-win-arm64.exe" + }, + "windows-x86_64": { + "archive": "https://github.com/getsigit/sigit/releases/download/v1.0.0/sigit-win-amd64.exe", + "cmd": "./sigit-win-amd64.exe" } + }, + "npx": { + "package": "@smbcloud/sigit@1.0.0" } } }