@sunerpy/kiro-provider 3.1.4 → 3.2.0

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 +19 -29
  2. package/dist/cli.js +84 -84
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -704,39 +704,29 @@ replay before Codex is marked supported. Full details live in
704
704
 
705
705
  ## Use with Claude Code
706
706
 
707
- Claude Code uses Anthropic Messages. The last compiled protocol run with Claude Code
708
- 2.1.209, `claude-opus-5`, and max effort passes provider model validation but
709
- is rejected before Kiro at `context_management`, which has no proven native
710
- equivalent. The provider does not discard it. Direct Opus 5 Messages JSON/SSE
711
- within the verified subset passes; the standard Claude Code configuration
712
- below remains a compatibility probe rather than a full support claim:
707
+ Claude Code 2.1.263 is supported through the existing Anthropic Messages
708
+ surface. For an isolated Linux profile that cannot affect a normal
709
+ Bedrock-backed `claude` command, run the checkout-local launcher:
713
710
 
714
711
  ```bash
715
- export ANTHROPIC_BASE_URL="http://127.0.0.1:8787"
716
- export ANTHROPIC_API_KEY="sk-your-private-key"
717
- claude --bare --safe-mode --model claude-opus-5 --effort max
712
+ PATH="$PWD/scripts:$PATH" kiroclaude
718
713
  ```
719
714
 
720
- The gateway accepts either `Authorization: Bearer <key>` or `x-api-key:
721
- <key>` for Anthropic routes. Direct Messages requests within the verified
722
- subset support typed JSON/SSE and tools, while `/v1/messages/count_tokens` is
723
- an explicit estimate. See
724
- [`docs/CLAUDE_CODE.md`](docs/CLAUDE_CODE.md).
725
-
726
- The current account-management and live-usage validation record is in
727
- [`docs/audits/kiro-provider-v0.5.0-rc.5-account-management-validation-2026-08-29.md`](docs/audits/kiro-provider-v0.5.0-rc.5-account-management-validation-2026-08-29.md).
728
- The current typed stream-error contract and downstream Zuno handoff are in
729
- [`docs/STREAM_ERROR_CONTRACT.md`](docs/STREAM_ERROR_CONTRACT.md) and
730
- [`docs/ZUNO_STREAM_ERROR_HANDOFF.zh.md`](docs/ZUNO_STREAM_ERROR_HANDOFF.zh.md).
731
- The preceding local-auth lifecycle record is retained in
732
- [`docs/audits/kiro-provider-v0.5.0-rc.4-local-auth-maintenance-validation-2026-08-29.md`](docs/audits/kiro-provider-v0.5.0-rc.4-local-auth-maintenance-validation-2026-08-29.md).
733
- The preceding protocol/client matrix is retained in
734
- [`docs/audits/kiro-provider-v0.5.0-rc.3-opus5-validation-2026-08-27.md`](docs/audits/kiro-provider-v0.5.0-rc.3-opus5-validation-2026-08-27.md).
735
- The older [`docs/E2E_VALIDATION_2026-08-22.md`](docs/E2E_VALIDATION_2026-08-22.md)
736
- is retained as historical v0.4 evidence only.
737
-
738
- The v3.1.1 stream delivery, RPC decoding and real SDK/Zuno before/after report is in
739
- [`docs/audits/stream-delivery-recovery-2026-09-13.md`](docs/audits/stream-delivery-recovery-2026-09-13.md).
715
+ It uses a separate `CLAUDE_CONFIG_DIR`, `apiKeyHelper`, the gateway root
716
+ `http://127.0.0.1:8787` (without `/v1`), and Kiro's Opus/Sonnet/Haiku plus
717
+ GPT-5.6 Sol/Terra/Luna model IDs. GPT rows inherit Claude Code's effort picker
718
+ behavior through a version-scoped `modelPicker` mapping. The default is Opus 5
719
+ in Ultra mode, and away/recap summaries are disabled only in this profile.
720
+ Ellipsis-only GPT reasoning is hidden behind a lossless replay token. A separate
721
+ `kiroclaude --bedrock-fable` profile provides the existing native Bedrock Fable
722
+ 5.1 model without mixing providers in one conversation. Because Kiro exposes
723
+ no native GPT output-token field, only the launcher explicitly opts into an
724
+ audited advisory `max_tokens` mode; every other client remains fail-closed.
725
+ Current text, tool/result, mid-system, adaptive/omitted thinking, safe
726
+ context-management, cache-hint, and SSE ping behavior is covered. The scripts
727
+ are not installed by the release installer in this revision. See
728
+ [`docs/CLAUDE_CODE.md`](docs/CLAUDE_CODE.md) for configuration, compatibility
729
+ boundaries, and isolated validation.
740
730
 
741
731
  ## Troubleshooting
742
732