@link-assistant/hive-mind 1.48.3 → 1.49.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 +10 -0
- package/README.md +1 -2
- package/package.json +1 -1
- package/src/models/index.mjs +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @link-assistant/hive-mind
|
|
2
2
|
|
|
3
|
+
## 1.49.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9a904ae: feat: replace deprecated qwen3.6-plus-free default with nemotron-3-super-free for --tool agent (#1563)
|
|
8
|
+
- Change default agent model from `qwen3.6-plus-free` to `nemotron-3-super-free` (~262K context, NVIDIA hybrid Mamba-Transformer)
|
|
9
|
+
- Move `qwen3.6-plus-free` to deprecated (free promotion ended April 2026, now requires OpenCode Go subscription)
|
|
10
|
+
- Update documentation, tests, and model priority lists
|
|
11
|
+
- Syncs with upstream agent PR #243
|
|
12
|
+
|
|
3
13
|
## 1.48.3
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -445,9 +445,8 @@ 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
448
|
/solve https://github.com/owner/repo/issues/123 --tool agent --model nemotron-3-super-free
|
|
449
|
+
/solve https://github.com/owner/repo/issues/123 --tool agent --model opencode/nemotron-3-super-free
|
|
451
450
|
/solve https://github.com/owner/repo/issues/123 --tool agent --model minimax-m2.5-free
|
|
452
451
|
/solve https://github.com/owner/repo/issues/123 --tool agent --model gpt-5-nano
|
|
453
452
|
|
package/package.json
CHANGED
package/src/models/index.mjs
CHANGED
|
@@ -47,7 +47,8 @@ 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 (
|
|
50
|
+
// Issue #1543: Added qwen3.6-plus-free (former default) and nemotron-3-super-free per agent PR #234
|
|
51
|
+
// Issue #1563: qwen3.6-plus-free free promotion ended (April 2026), nemotron-3-super-free is now default per agent PR #243
|
|
51
52
|
export const agentModels = {
|
|
52
53
|
// OpenCode Zen free models (current)
|
|
53
54
|
grok: 'opencode/grok-code',
|
|
@@ -56,8 +57,7 @@ export const agentModels = {
|
|
|
56
57
|
'big-pickle': 'opencode/big-pickle',
|
|
57
58
|
'gpt-5-nano': 'opencode/gpt-5-nano',
|
|
58
59
|
'minimax-m2.5-free': 'opencode/minimax-m2.5-free', // Upgraded from M2.1 (Issue #1391)
|
|
59
|
-
'
|
|
60
|
-
'nemotron-3-super-free': 'opencode/nemotron-3-super-free', // New: NVIDIA hybrid Mamba-Transformer (Issue #1543)
|
|
60
|
+
'nemotron-3-super-free': 'opencode/nemotron-3-super-free', // Default: NVIDIA hybrid Mamba-Transformer (Issue #1563)
|
|
61
61
|
// Kilo Gateway free models (Issue #1282, updated in #1300)
|
|
62
62
|
// Short names for Kilo-exclusive models (Issue #1300)
|
|
63
63
|
'glm-5-free': 'kilo/glm-5-free', // Kilo-exclusive
|
|
@@ -73,6 +73,7 @@ export const agentModels = {
|
|
|
73
73
|
'kilo/giga-potato-free': 'kilo/giga-potato-free',
|
|
74
74
|
'kilo/trinity-large-preview': 'kilo/trinity-large-preview',
|
|
75
75
|
// Deprecated free models (kept for backward compatibility)
|
|
76
|
+
'qwen3.6-plus-free': 'opencode/qwen3.6-plus-free', // Deprecated: free promotion ended April 2026 (Issue #1563)
|
|
76
77
|
'kimi-k2.5-free': 'opencode/kimi-k2.5-free', // Deprecated: not supported (Issue #1391)
|
|
77
78
|
'glm-4.7-free': 'opencode/glm-4.7-free', // Deprecated: no longer free
|
|
78
79
|
'minimax-m2.1-free': 'opencode/minimax-m2.1-free', // Deprecated: replaced by m2.5
|
|
@@ -115,7 +116,7 @@ export const codexModels = {
|
|
|
115
116
|
// Default model for each tool (Issue #1473: centralized to avoid scattered hardcoded defaults)
|
|
116
117
|
export const defaultModels = {
|
|
117
118
|
claude: 'sonnet',
|
|
118
|
-
agent: '
|
|
119
|
+
agent: 'nemotron-3-super-free', // Issue #1563: changed from qwen3.6-plus-free (free promotion ended) per agent PR #243
|
|
119
120
|
opencode: 'grok-code-fast-1',
|
|
120
121
|
codex: 'gpt-5',
|
|
121
122
|
};
|
|
@@ -192,8 +193,8 @@ export const AGENT_MODELS = {
|
|
|
192
193
|
'opencode/big-pickle': 'opencode/big-pickle',
|
|
193
194
|
'opencode/gpt-5-nano': 'opencode/gpt-5-nano',
|
|
194
195
|
'opencode/minimax-m2.5-free': 'opencode/minimax-m2.5-free',
|
|
195
|
-
'opencode/
|
|
196
|
-
'opencode/
|
|
196
|
+
'opencode/nemotron-3-super-free': 'opencode/nemotron-3-super-free', // Issue #1563: now default
|
|
197
|
+
'opencode/qwen3.6-plus-free': 'opencode/qwen3.6-plus-free', // Deprecated: free promotion ended (Issue #1563)
|
|
197
198
|
'opencode/kimi-k2.5-free': 'opencode/kimi-k2.5-free', // Deprecated
|
|
198
199
|
'opencode/glm-4.7-free': 'opencode/glm-4.7-free', // Deprecated
|
|
199
200
|
'opencode/minimax-m2.1-free': 'opencode/minimax-m2.1-free', // Deprecated
|
|
@@ -304,7 +305,7 @@ export const primaryModelNames = {
|
|
|
304
305
|
claude: ['opus', 'sonnet', 'haiku', 'opusplan'],
|
|
305
306
|
opencode: ['grok', 'gpt4o'],
|
|
306
307
|
codex: ['gpt5', 'gpt5-codex', 'o3'],
|
|
307
|
-
agent: ['
|
|
308
|
+
agent: ['nemotron-3-super-free', 'minimax-m2.5-free', 'big-pickle', 'gpt-5-nano', 'glm-5-free', 'deepseek-r1-free'],
|
|
308
309
|
};
|
|
309
310
|
|
|
310
311
|
/**
|