@sunerpy/kiro-provider 0.5.0-rc.2 → 0.5.0-rc.3
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.
- package/README.md +33 -39
- package/dist/cli.js +49 -49
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,24 +69,23 @@ Key boundaries:
|
|
|
69
69
|
rather than weakened;
|
|
70
70
|
- base64/data-URL images are supported, while remote image URLs and detail
|
|
71
71
|
controls are rejected;
|
|
72
|
-
- an output-token limit is probe-confirmed
|
|
73
|
-
in the range 1,024–128,000;
|
|
72
|
+
- an output-token limit is probe-confirmed for `claude-sonnet-5` and
|
|
73
|
+
`claude-opus-5` variants in the range 1,024–128,000;
|
|
74
74
|
- stateful Responses fields and native Web Search remain unsupported, and the
|
|
75
75
|
provider never fabricates search/citation events.
|
|
76
76
|
|
|
77
|
-
Current compiled-binary acceptance on 2026-08-27:
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
relocating those fields.
|
|
77
|
+
Current compiled-binary acceptance on 2026-08-27: RC.3 exposes
|
|
78
|
+
`claude-opus-5` plus `low/medium/high/xhigh/max`, with a 1,000,000-token
|
|
79
|
+
context window and a probe-confirmed 1,024–128,000 native output limit. OpenAI
|
|
80
|
+
JavaScript SDK 7.5.0 passes Opus 5 Responses streaming/non-streaming, explicit
|
|
81
|
+
Chat, function tools, and direct Anthropic Messages JSON/SSE. OpenCode 1.18.18
|
|
82
|
+
passes a real Opus 5 Max bash/read tool loop in explicit
|
|
83
|
+
`legacy-user-prefix` mode while reusing one account and Kiro conversation.
|
|
84
|
+
Codex 0.150.0-alpha.9 now passes model validation but remains blocked before
|
|
85
|
+
Kiro by `reasoning.summary`; Claude Code 2.1.209 likewise passes Opus 5 model
|
|
86
|
+
validation but remains blocked by `context_management`. Zuno was intentionally
|
|
87
|
+
not changed or rerun. These are RC findings; stable v0.5.0 remains gated
|
|
88
|
+
rather than silently discarding unsupported fields.
|
|
90
89
|
|
|
91
90
|
For the complete capability matrix, error codes, reasoning replay contract,
|
|
92
91
|
and v0.4 migration steps, see
|
|
@@ -606,16 +605,12 @@ exception scheduled for removal in v0.7.0.
|
|
|
606
605
|
|
|
607
606
|
## Use with Codex CLI
|
|
608
607
|
|
|
609
|
-
Codex uses the correct Responses endpoint
|
|
610
|
-
0.
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
custom grammar/namespace semantics. The provider does not strip these fields
|
|
616
|
-
or simulate them with prompt text. The following isolated configuration
|
|
617
|
-
reproduces the compatibility check without touching the real `~/.codex`
|
|
618
|
-
state:
|
|
608
|
+
Codex uses the correct Responses endpoint. The compiled RC.3 gate with Codex
|
|
609
|
+
0.150.0-alpha.9 and `claude-opus-5-max` now passes provider model validation,
|
|
610
|
+
but its first request is rejected before Kiro at `reasoning.summary`, which
|
|
611
|
+
has no proven native equivalent. The provider does not strip that field or
|
|
612
|
+
simulate it with prompt text. The following isolated configuration reproduces
|
|
613
|
+
the compatibility check without touching the real `~/.codex` state:
|
|
619
614
|
|
|
620
615
|
```bash
|
|
621
616
|
export CODEX_TEST_ROOT="$(mktemp -d)"
|
|
@@ -624,8 +619,9 @@ export CODEX_SQLITE_HOME="$CODEX_TEST_ROOT/sqlite"
|
|
|
624
619
|
mkdir -p "$CODEX_HOME" "$CODEX_SQLITE_HOME"
|
|
625
620
|
export LOCALGW_KEY="sk-...your gateway api key..."
|
|
626
621
|
cat > "$CODEX_HOME/config.toml" <<'EOF'
|
|
627
|
-
model = "
|
|
622
|
+
model = "claude-opus-5-max"
|
|
628
623
|
model_provider = "localgw"
|
|
624
|
+
model_reasoning_effort = "high"
|
|
629
625
|
[model_providers.localgw]
|
|
630
626
|
name = "Local Gateway"
|
|
631
627
|
base_url = "http://127.0.0.1:8787/v1"
|
|
@@ -635,27 +631,25 @@ EOF
|
|
|
635
631
|
codex exec --skip-git-repo-check "say hi"
|
|
636
632
|
```
|
|
637
633
|
|
|
638
|
-
For Codex 0.
|
|
639
|
-
|
|
634
|
+
For Codex 0.150.0-alpha.9 the expected RC.3 result is a non-zero exit with
|
|
635
|
+
`unsupported_reasoning_summary` at `reasoning.summary`. A future supported request shape must
|
|
640
636
|
then pass a real shell/custom-tool loop, continuation, and restart reasoning
|
|
641
637
|
replay before Codex is marked supported. Full details live in
|
|
642
638
|
[`docs/CODEX.md`](docs/CODEX.md).
|
|
643
639
|
|
|
644
640
|
## Use with Claude Code
|
|
645
641
|
|
|
646
|
-
Claude Code uses Anthropic Messages
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
configuration below is therefore a compatibility probe, not a current
|
|
653
|
-
support claim:
|
|
642
|
+
Claude Code uses Anthropic Messages. The compiled RC.3 run with Claude Code
|
|
643
|
+
2.1.209, `claude-opus-5`, and max effort passes provider model validation but
|
|
644
|
+
is rejected before Kiro at `context_management`, which has no proven native
|
|
645
|
+
equivalent. The provider does not discard it. Direct Opus 5 Messages JSON/SSE
|
|
646
|
+
within the verified subset passes; the standard Claude Code configuration
|
|
647
|
+
below remains a compatibility probe rather than a full support claim:
|
|
654
648
|
|
|
655
649
|
```bash
|
|
656
650
|
export ANTHROPIC_BASE_URL="http://127.0.0.1:8787"
|
|
657
|
-
export
|
|
658
|
-
claude
|
|
651
|
+
export ANTHROPIC_API_KEY="sk-your-private-key"
|
|
652
|
+
claude --bare --safe-mode --model claude-opus-5 --effort max
|
|
659
653
|
```
|
|
660
654
|
|
|
661
655
|
The gateway accepts either `Authorization: Bearer <key>` or `x-api-key:
|
|
@@ -665,7 +659,7 @@ an explicit estimate. See
|
|
|
665
659
|
[`docs/CLAUDE_CODE.md`](docs/CLAUDE_CODE.md).
|
|
666
660
|
|
|
667
661
|
The current compiled-service validation record is in
|
|
668
|
-
[`docs/audits/kiro-provider-v0.5.0-rc.
|
|
662
|
+
[`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).
|
|
669
663
|
The older [`docs/E2E_VALIDATION_2026-08-22.md`](docs/E2E_VALIDATION_2026-08-22.md)
|
|
670
664
|
is retained as historical v0.4 evidence only.
|
|
671
665
|
|