@link-assistant/hive-mind 1.46.9 → 1.47.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/CHANGELOG.md +11 -0
- package/README.md +3 -2
- package/package.json +1 -1
- package/src/models/index.mjs +10 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @link-assistant/hive-mind
|
|
2
2
|
|
|
3
|
+
## 1.47.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7997308: feat: update free models for --tool agent, set qwen3.6-plus-free as default (#1543)
|
|
8
|
+
- Change default agent model from `minimax-m2.5-free` to `qwen3.6-plus-free` (~1M context window)
|
|
9
|
+
- Add `qwen3.6-plus-free` (Alibaba Qwen, ~1M context) to free models
|
|
10
|
+
- Add `nemotron-3-super-free` (NVIDIA hybrid Mamba-Transformer, ~262K context) to free models
|
|
11
|
+
- Update documentation, tests, and provider priority lists
|
|
12
|
+
- Syncs with upstream agent PR #234
|
|
13
|
+
|
|
3
14
|
## 1.46.9
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -445,10 +445,11 @@ Examples:
|
|
|
445
445
|
/solve https://github.com/owner/repo/issues/123 --model opus --think max
|
|
446
446
|
|
|
447
447
|
Free Models (with --tool agent):
|
|
448
|
+
/solve https://github.com/owner/repo/issues/123 --tool agent --model qwen3.6-plus-free
|
|
449
|
+
/solve https://github.com/owner/repo/issues/123 --tool agent --model opencode/qwen3.6-plus-free
|
|
450
|
+
/solve https://github.com/owner/repo/issues/123 --tool agent --model nemotron-3-super-free
|
|
448
451
|
/solve https://github.com/owner/repo/issues/123 --tool agent --model minimax-m2.5-free
|
|
449
|
-
/solve https://github.com/owner/repo/issues/123 --tool agent --model opencode/minimax-m2.5-free
|
|
450
452
|
/solve https://github.com/owner/repo/issues/123 --tool agent --model gpt-5-nano
|
|
451
|
-
/solve https://github.com/owner/repo/issues/123 --tool agent --model big-pickle
|
|
452
453
|
|
|
453
454
|
Free Models via Kilo Gateway (with --tool agent):
|
|
454
455
|
/solve https://github.com/owner/repo/issues/123 --tool agent --model kilo/glm-5-free
|
package/package.json
CHANGED
package/src/models/index.mjs
CHANGED
|
@@ -47,6 +47,7 @@ export const claudeModels = {
|
|
|
47
47
|
|
|
48
48
|
// Agent models (OpenCode API and Kilo Gateway via agent CLI)
|
|
49
49
|
// Issue #1300: Updated free models to match agent PR #191
|
|
50
|
+
// Issue #1543: Added qwen3.6-plus-free (new default) and nemotron-3-super-free per agent PR #234
|
|
50
51
|
export const agentModels = {
|
|
51
52
|
// OpenCode Zen free models (current)
|
|
52
53
|
grok: 'opencode/grok-code',
|
|
@@ -54,7 +55,9 @@ export const agentModels = {
|
|
|
54
55
|
'grok-code-fast-1': 'opencode/grok-code',
|
|
55
56
|
'big-pickle': 'opencode/big-pickle',
|
|
56
57
|
'gpt-5-nano': 'opencode/gpt-5-nano',
|
|
57
|
-
'minimax-m2.5-free': 'opencode/minimax-m2.5-free', //
|
|
58
|
+
'minimax-m2.5-free': 'opencode/minimax-m2.5-free', // Upgraded from M2.1 (Issue #1391)
|
|
59
|
+
'qwen3.6-plus-free': 'opencode/qwen3.6-plus-free', // New: ~1M context, default (Issue #1543)
|
|
60
|
+
'nemotron-3-super-free': 'opencode/nemotron-3-super-free', // New: NVIDIA hybrid Mamba-Transformer (Issue #1543)
|
|
58
61
|
// Kilo Gateway free models (Issue #1282, updated in #1300)
|
|
59
62
|
// Short names for Kilo-exclusive models (Issue #1300)
|
|
60
63
|
'glm-5-free': 'kilo/glm-5-free', // Kilo-exclusive
|
|
@@ -112,7 +115,7 @@ export const codexModels = {
|
|
|
112
115
|
// Default model for each tool (Issue #1473: centralized to avoid scattered hardcoded defaults)
|
|
113
116
|
export const defaultModels = {
|
|
114
117
|
claude: 'sonnet',
|
|
115
|
-
agent: 'minimax-m2.5-free
|
|
118
|
+
agent: 'qwen3.6-plus-free', // Issue #1543: changed from minimax-m2.5-free per agent PR #234
|
|
116
119
|
opencode: 'grok-code-fast-1',
|
|
117
120
|
codex: 'gpt-5',
|
|
118
121
|
};
|
|
@@ -140,6 +143,8 @@ export const freeToBaseModelMap = {
|
|
|
140
143
|
'glm-4.7-free': 'glm-4.7',
|
|
141
144
|
'minimax-m2.1-free': 'minimax-m2.1',
|
|
142
145
|
'minimax-m2.5-free': 'minimax-m2.5',
|
|
146
|
+
'qwen3.6-plus-free': 'qwen3.6-plus', // Issue #1543
|
|
147
|
+
'nemotron-3-super-free': 'nemotron-3-super', // Issue #1543
|
|
143
148
|
'glm-5-free': 'glm-5',
|
|
144
149
|
'glm-4.5-air-free': 'glm-4.5-air',
|
|
145
150
|
'deepseek-r1-free': 'deepseek-r1',
|
|
@@ -187,6 +192,8 @@ export const AGENT_MODELS = {
|
|
|
187
192
|
'opencode/big-pickle': 'opencode/big-pickle',
|
|
188
193
|
'opencode/gpt-5-nano': 'opencode/gpt-5-nano',
|
|
189
194
|
'opencode/minimax-m2.5-free': 'opencode/minimax-m2.5-free',
|
|
195
|
+
'opencode/qwen3.6-plus-free': 'opencode/qwen3.6-plus-free', // Issue #1543
|
|
196
|
+
'opencode/nemotron-3-super-free': 'opencode/nemotron-3-super-free', // Issue #1543
|
|
190
197
|
'opencode/kimi-k2.5-free': 'opencode/kimi-k2.5-free', // Deprecated
|
|
191
198
|
'opencode/glm-4.7-free': 'opencode/glm-4.7-free', // Deprecated
|
|
192
199
|
'opencode/minimax-m2.1-free': 'opencode/minimax-m2.1-free', // Deprecated
|
|
@@ -297,7 +304,7 @@ export const primaryModelNames = {
|
|
|
297
304
|
claude: ['opus', 'sonnet', 'haiku', 'opusplan'],
|
|
298
305
|
opencode: ['grok', 'gpt4o'],
|
|
299
306
|
codex: ['gpt5', 'gpt5-codex', 'o3'],
|
|
300
|
-
agent: ['minimax-m2.5-free', 'big-pickle', 'gpt-5-nano', 'glm-5-free', 'deepseek-r1-free'],
|
|
307
|
+
agent: ['qwen3.6-plus-free', 'nemotron-3-super-free', 'minimax-m2.5-free', 'big-pickle', 'gpt-5-nano', 'glm-5-free', 'deepseek-r1-free'],
|
|
301
308
|
};
|
|
302
309
|
|
|
303
310
|
/**
|