fix: opencode compat tool call rendering and default to no-token (#95)

- Fix tool name lost on ToolResult events (persist via tool_name_by_call)
- Fix tool input lost on ToolResult events (persist via tool_args_by_call)
- Fix tool output in wrong field (error -> output)
- Fix text doubling in streaming (defer emit to ItemCompleted)
- Fix missing delta field in text streaming events
- Default server mode to no-token when --token not specified
- Add install-fast-sa and install-fast-gigacode justfile targets
This commit is contained in:
Nathan Flurry 2026-02-06 02:57:23 -08:00 committed by GitHub
parent a02393436c
commit 6a3345b954
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
32 changed files with 9193 additions and 38 deletions

View file

@ -48,6 +48,16 @@ check:
fmt:
cargo fmt --all
[group('dev')]
install-fast-sa:
cargo build --release -p sandbox-agent
cp target/release/sandbox-agent ~/.cargo/bin/sandbox-agent
[group('dev')]
install-fast-gigacode:
cargo build --release -p gigacode
cp target/release/gigacode ~/.cargo/bin/gigacode
[group('dev')]
dev-docs:
cd docs && pnpm dlx mintlify dev