opencode-kiro 0.4.0-beta.0 → 0.4.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.
- package/README.md +12 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -137,6 +137,18 @@ opencode run -m kiro/<exact-model-id> "hello"
|
|
|
137
137
|
Image input is capability-driven: paste an image path into the TUI prompt and
|
|
138
138
|
image-capable models receive it as an attachment.
|
|
139
139
|
|
|
140
|
+
### Reasoning effort
|
|
141
|
+
|
|
142
|
+
Effort-capable models expose a reasoning-effort toggle: cycle it in opencode with the
|
|
143
|
+
**Cycle model variants** action (default keybind `ctrl+t`). It is **per model**, showing
|
|
144
|
+
each family's native levels.
|
|
145
|
+
|
|
146
|
+
Models without effort control show no effort option. opencode's **Default** (unset) returns the model to its native
|
|
147
|
+
default effort. No config is required: the plugin's `provider.models` hook supplies the
|
|
148
|
+
variants automatically and the chosen level flows to the SDK as
|
|
149
|
+
`providerOptions.kiro.reasoningEffort`. Kiro cannot disable thinking, so even the lowest
|
|
150
|
+
level still produces a reasoning trail.
|
|
151
|
+
|
|
140
152
|
## Credits in the sidebar
|
|
141
153
|
|
|
142
154
|
Kiro is subscription-metered: requests consume **credits**, and the dollar cost
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-kiro",
|
|
3
|
-
"version": "0.4.0
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "The ACP-compliant Kiro plugin for opencode: auth via the official kiro-cli login, the live Kiro model lineup through the Agent Client Protocol, and TUI credits display",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Nacho F. Lizaur (https://github.com/NachoFLizaur)",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@opencode-ai/plugin": "*"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"kiro-acp-ai-provider": "3.0.0
|
|
46
|
+
"kiro-acp-ai-provider": "3.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@opencode-ai/plugin": "1.16.2",
|