@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @link-assistant/hive-mind
2
2
 
3
+ ## 1.20.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 98a7582: Set kimi-k2.5-free as default model for --tool agent and enhance documentation with free model examples.
8
+
3
9
  ## 1.19.0
4
10
 
5
11
  ### Minor Changes
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@link-assistant/hive-mind",
3
- "version": "1.19.0",
3
+ "version": "1.20.0",
4
4
  "description": "AI-powered issue solver and hive mind for collaborative problem solving",
5
5
  "main": "src/hive.mjs",
6
6
  "type": "module",
@@ -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 'grok-code';
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 = 'grok-code';
531
+ argv.model = 'kimi-k2.5-free';
532
532
  }
533
533
 
534
534
  // Tool-specific defaults for --claude-file and --gitkeep-file