Re-add siGit Code (v1.0.3, auth fix)#269
Open
setoelkahfi wants to merge 10 commits intoagentclientprotocol:mainfrom
Open
Re-add siGit Code (v1.0.3, auth fix)#269setoelkahfi wants to merge 10 commits intoagentclientprotocol:mainfrom
setoelkahfi wants to merge 10 commits intoagentclientprotocol:mainfrom
Conversation
- 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
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Brings siGit Code back to the registry after the revert in #265.
v1.0.3 fixes the two problems that caused the auth failure in #3:
GGUF metadata on stdout. The underlying inference engine printed model metadata (lines like
general.architecture: qwen3) to stdout during startup. This corrupted the ACP JSON stream before the initialize response even got sent. Fixed by deferring model loading until the first session, so nothing hits stdout before ACP is ready.Broken stdout transport on macOS.
tokio::io::stdout().compat_write()silently routed output to stderr instead of fd 1. Replaced withblocking::Unblock::new(std::io::stdout()), which is what the ACP SDK's own Stdio transport uses internally.Verified locally: downloaded the v1.0.3 macOS arm64 binary, piped an
initializerequest through stdin, got back clean JSON-RPC on stdout withauthMethodspresent. No stray output.Registry build passes:
SKIP_URL_VALIDATION=1 uv run --with jsonschema .github/workflows/build_registry.pyincludes sigit in all 33 agents.Closes #3