@link-assistant/agent 0.16.2 → 0.16.3

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 CHANGED
@@ -194,9 +194,8 @@ echo '{"message":"run command","tools":[{"name":"bash","params":{"command":"ls -
194
194
  echo "hi" | agent
195
195
 
196
196
  # Other free models (in order of recommendation)
197
- echo "hi" | agent --model opencode/minimax-m2.1-free
197
+ echo "hi" | agent --model opencode/minimax-m2.5-free
198
198
  echo "hi" | agent --model opencode/gpt-5-nano
199
- echo "hi" | agent --model opencode/glm-4.7-free
200
199
  echo "hi" | agent --model opencode/big-pickle
201
200
 
202
201
  # Premium models (OpenCode Zen subscription)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@link-assistant/agent",
3
- "version": "0.16.2",
3
+ "version": "0.16.3",
4
4
  "description": "A minimal, public domain AI CLI agent compatible with OpenCode's JSON interface. Bun-only runtime.",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -1397,9 +1397,8 @@ export namespace Provider {
1397
1397
  if (providerID === 'opencode' || providerID === 'local') {
1398
1398
  priority = [
1399
1399
  'kimi-k2.5-free',
1400
- 'minimax-m2.1-free',
1400
+ 'minimax-m2.5-free',
1401
1401
  'gpt-5-nano',
1402
- 'glm-4.7-free',
1403
1402
  'big-pickle',
1404
1403
  ];
1405
1404
  }
@@ -1430,9 +1429,8 @@ export namespace Provider {
1430
1429
  const priority = [
1431
1430
  'glm-5-free',
1432
1431
  'kimi-k2.5-free',
1433
- 'minimax-m2.1-free',
1432
+ 'minimax-m2.5-free',
1434
1433
  'gpt-5-nano',
1435
- 'glm-4.7-free',
1436
1434
  'big-pickle',
1437
1435
  'gpt-5',
1438
1436
  'claude-sonnet-4',