@osanoai/multicli 1.5.5 → 1.5.6

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
@@ -43,7 +43,9 @@ Multi-CLI sits between your AI clients and bridges them via the [Model Context P
43
43
 
44
44
  This tool was built by the very AIs it connects.
45
45
 
46
- Claude, Gemini, and Codex wrote the code. Claude, Gemini, and Codex maintain it. Every week, all three AIs run a scheduled job that queries each CLI for its current model list, diffs the results against what's in the repo, and opens a PR if anything changed. New model releases get picked up automatically. Deprecated models get cleaned out. The repo stays current without anyone touching it.
46
+ Claude, Gemini, and Codex wrote the code. Claude, Gemini, and Codex maintain it. Every night, a CI job queries the latest stable release of each CLI for its current model list, diffs the results against what's in the repo, and automatically publishes a new version if anything changed. New model releases get picked up within 24 hours. Deprecated models get cleaned out. The repo stays current without anyone touching it.
47
+
48
+ Because all install commands use `@latest`, your MCP client pulls the newest version every time it starts — no manual updates, no stale model lists, no maintenance.
47
49
 
48
50
  Most MCP tools go stale within weeks. This one is self-maintaining by design.
49
51
 
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-03-03T23:41:02.949Z",
2
+ "generatedAt": "2026-03-03T23:54:04.100Z",
3
3
  "catalogs": {
4
4
  "claude": {
5
5
  "cli": "claude",
@@ -31,28 +31,20 @@
31
31
  "tier": "fast",
32
32
  "models": [
33
33
  "gemini-2.5-flash",
34
- "gemini-2.5-flash-lite",
35
- "gpt-5.1-codex-mini",
36
- "claude-haiku-4-5-20251001"
34
+ "gemini-2.5-flash-lite"
37
35
  ]
38
36
  },
39
37
  {
40
38
  "tier": "balanced",
41
39
  "models": [
42
- "gemini-3-flash-preview",
43
- "gpt-5.2-codex",
44
- "claude-sonnet-4-6"
40
+ "gemini-3-flash-preview"
45
41
  ]
46
42
  },
47
43
  {
48
44
  "tier": "powerful",
49
45
  "models": [
50
46
  "gemini-3.1-pro-preview",
51
- "gemini-2.5-pro",
52
- "gpt-5.3-codex",
53
- "gpt-5.1-codex-max",
54
- "gpt-5.2",
55
- "claude-opus-4-6"
47
+ "gemini-2.5-pro"
56
48
  ]
57
49
  }
58
50
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osanoai/multicli",
3
- "version": "1.5.5",
3
+ "version": "1.5.6",
4
4
  "description": "MCP server for Multiple CLI coding agent integration (Claude + Gemini + Codex)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",