@sunerpy/opencode-kiro-auth 0.11.0 → 0.12.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 +3 -2
- package/dist/constants.js +4 -0
- package/dist/plugin.js +15 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,8 +8,9 @@
|
|
|
8
8
|
[](https://www.npmjs.com/package/@sunerpy/opencode-kiro-auth)
|
|
9
9
|
|
|
10
10
|
> OpenCode plugin that lets OpenCode use AWS Kiro (CodeWhisperer) as a model
|
|
11
|
-
> provider — Claude Sonnet, Opus, and Haiku, plus the
|
|
12
|
-
>
|
|
11
|
+
> provider — Claude Sonnet, Opus, and Haiku, plus the other models Kiro proxies
|
|
12
|
+
> (OpenAI GPT 5.6, DeepSeek, GLM, MiniMax, Qwen3) — with substantial trial
|
|
13
|
+
> quotas.
|
|
13
14
|
|
|
14
15
|
## Table of Contents
|
|
15
16
|
|
package/dist/constants.js
CHANGED
|
@@ -81,6 +81,10 @@ export const MODEL_MAPPING = {
|
|
|
81
81
|
'minimax-m2.5': 'minimax-m2.5',
|
|
82
82
|
'minimax-m2.1': 'minimax-m2.1',
|
|
83
83
|
'qwen3-coder-next': 'qwen3-coder-next',
|
|
84
|
+
// OpenAI GPT 5.6 — probe-confirmed (200, us-east-1); other naming guesses 400. No effort variant.
|
|
85
|
+
'gpt-5.6-sol': 'gpt-5.6-sol',
|
|
86
|
+
'gpt-5.6-terra': 'gpt-5.6-terra',
|
|
87
|
+
'gpt-5.6-luna': 'gpt-5.6-luna',
|
|
84
88
|
// Legacy / internal mappings kept for backwards compatibility
|
|
85
89
|
'claude-3-7-sonnet': 'CLAUDE_3_7_SONNET_20250219_V1_0',
|
|
86
90
|
'nova-swe': 'AGI_NOVA_SWE_V1_5',
|
package/dist/plugin.js
CHANGED
|
@@ -259,6 +259,21 @@ export const createKiroPlugin = (id) => async ({ client, directory }) => {
|
|
|
259
259
|
name: 'Qwen3 Coder Next (0.05x)',
|
|
260
260
|
limit: { context: 256000, output: 64000 },
|
|
261
261
|
modalities: { input: ['text'], output: ['text'] }
|
|
262
|
+
},
|
|
263
|
+
'gpt-5.6-sol': {
|
|
264
|
+
name: 'GPT 5.6 Sol (2.4x)',
|
|
265
|
+
limit: { context: 272000, output: 64000 },
|
|
266
|
+
modalities: { input: ['text'], output: ['text'] }
|
|
267
|
+
},
|
|
268
|
+
'gpt-5.6-terra': {
|
|
269
|
+
name: 'GPT 5.6 Terra (1.2x)',
|
|
270
|
+
limit: { context: 272000, output: 64000 },
|
|
271
|
+
modalities: { input: ['text'], output: ['text'] }
|
|
272
|
+
},
|
|
273
|
+
'gpt-5.6-luna': {
|
|
274
|
+
name: 'GPT 5.6 Luna',
|
|
275
|
+
limit: { context: 272000, output: 64000 },
|
|
276
|
+
modalities: { input: ['text'], output: ['text'] }
|
|
262
277
|
}
|
|
263
278
|
};
|
|
264
279
|
}
|