@link-assistant/hive-mind 1.19.0 → 1.20.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 +6 -0
- package/README.md +9 -0
- package/package.json +1 -1
- package/src/solve.config.lib.mjs +2 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -474,6 +474,15 @@ All commands work in **group chats only** (not in private messages with the bot)
|
|
|
474
474
|
Examples:
|
|
475
475
|
/solve https://github.com/owner/repo/issues/123 --model sonnet
|
|
476
476
|
/solve https://github.com/owner/repo/issues/123 --model opus --think max
|
|
477
|
+
|
|
478
|
+
Free Models (with --tool agent):
|
|
479
|
+
/solve https://github.com/owner/repo/issues/123 --tool agent --model kimi-k2.5-free
|
|
480
|
+
/solve https://github.com/owner/repo/issues/123 --tool agent --model minimax-m2.1-free
|
|
481
|
+
/solve https://github.com/owner/repo/issues/123 --tool agent --model gpt-5-nano
|
|
482
|
+
/solve https://github.com/owner/repo/issues/123 --tool agent --model glm-4.7-free
|
|
483
|
+
/solve https://github.com/owner/repo/issues/123 --tool agent --model big-pickle
|
|
484
|
+
|
|
485
|
+
> **📖 Free Models Guide**: See [docs/FREE_MODELS.md](./docs/FREE_MODELS.md) for comprehensive information about all free models.
|
|
477
486
|
```
|
|
478
487
|
|
|
479
488
|
#### `/hive` - Run Hive Orchestration
|
package/package.json
CHANGED
package/src/solve.config.lib.mjs
CHANGED
|
@@ -399,7 +399,7 @@ export const createYargsConfig = yargsInstance => {
|
|
|
399
399
|
} else if (currentParsedArgs?.tool === 'codex') {
|
|
400
400
|
return 'gpt-5';
|
|
401
401
|
} else if (currentParsedArgs?.tool === 'agent') {
|
|
402
|
-
return '
|
|
402
|
+
return 'kimi-k2.5-free';
|
|
403
403
|
}
|
|
404
404
|
return 'sonnet';
|
|
405
405
|
},
|
|
@@ -528,7 +528,7 @@ export const parseArguments = async (yargs, hideBin) => {
|
|
|
528
528
|
argv.model = 'gpt-5';
|
|
529
529
|
} else if (argv.tool === 'agent' && !modelExplicitlyProvided) {
|
|
530
530
|
// User did not explicitly provide --model, so use the correct default for agent
|
|
531
|
-
argv.model = '
|
|
531
|
+
argv.model = 'kimi-k2.5-free';
|
|
532
532
|
}
|
|
533
533
|
|
|
534
534
|
// Tool-specific defaults for --claude-file and --gitkeep-file
|