@zhixuan92/multi-model-agent 3.5.1 → 3.5.2

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
@@ -60,7 +60,7 @@ Config file: `~/.multi-model/config.json`. Lookup order: `--config <path>` → `
60
60
  }
61
61
  ```
62
62
 
63
- Agent types: `claude`, `codex`, `openai-compatible`. Any OpenAI-compatible endpoint works (MiniMax, DeepSeek, Groq, Together, local vLLM) — set `baseUrl` and either `apiKey` or `apiKeyEnv`.
63
+ Agent types: `claude`, `codex`, `openai-compatible`, `claude-compatible`. Any OpenAI-compatible endpoint works (MiniMax, DeepSeek, Groq, Together, local vLLM) — set `baseUrl` and either `apiKey` or `apiKeyEnv`. Use `claude-compatible` (same shape) for vendors exposing an Anthropic-format endpoint such as DeepSeek's `/anthropic` — preserves thinking content blocks across multi-turn tool use, required for DeepSeek V4's hybrid reasoning models. See the main README for examples and the trade-off vs. `openai-compatible`.
64
64
 
65
65
  The auth token is generated on first `mmagent serve`. Retrieve it with `mmagent print-token`, or set `MMAGENT_AUTH_TOKEN` to override the file.
66
66
 
@@ -10,7 +10,7 @@ when_to_use: >-
10
10
  mmagent is running. Delegate so each file audits on its own worker; the main
11
11
  agent only synthesizes findings. Audit on PROSE/SPEC docs — use mma-review for
12
12
  source code.
13
- version: 3.5.1
13
+ version: 3.5.2
14
14
  ---
15
15
 
16
16
  # mma-audit
@@ -9,7 +9,7 @@ when_to_use: >-
9
9
  mma-debug / mma-investigate terminal envelope has `proposedInterpretation` as
10
10
  a string. Read the proposal, decide whether to accept or correct it, then call
11
11
  this skill. The batch resumes immediately after the POST returns.
12
- version: 3.5.1
12
+ version: 3.5.2
13
13
  ---
14
14
 
15
15
  # mma-clarifications
@@ -10,7 +10,7 @@ when_to_use: >-
10
10
  Register once here, then pass the ID via `contextBlockIds` on mma-delegate /
11
11
  mma-execute-plan / mma-audit / mma-review / mma-verify / mma-debug /
12
12
  mma-investigate. Cheaper and faster than inlining the same content N times.
13
- version: 3.5.1
13
+ version: 3.5.2
14
14
  ---
15
15
 
16
16
  # mma-context-blocks
@@ -10,7 +10,7 @@ when_to_use: >-
10
10
  read files, reproduce, trace — OR a methodology skill
11
11
  (superpowers:systematic-debugging) points at the investigation step. Delegate
12
12
  the read/reproduce/trace; the main agent stays on the hypothesis and the fix.
13
- version: 3.5.1
13
+ version: 3.5.2
14
14
  ---
15
15
 
16
16
  # mma-debug
@@ -11,7 +11,7 @@ when_to_use: >-
11
11
  and keep main context free. If a plan file exists → use mma-execute-plan. If
12
12
  the task is audit / review / verify / debug / investigate → use the matching
13
13
  specialized skill.
14
- version: 3.5.1
14
+ version: 3.5.2
15
15
  ---
16
16
 
17
17
  # mma-delegate
@@ -10,7 +10,7 @@ when_to_use: >-
10
10
  superpowers:subagent-driven-development / superpowers:executing-plans —
11
11
  workers are cheaper and don't pollute main context. Task descriptors must
12
12
  match plan headings verbatim.
13
- version: 3.5.1
13
+ version: 3.5.2
14
14
  ---
15
15
 
16
16
  # mma-execute-plan
@@ -10,7 +10,7 @@ when_to_use: >-
10
10
  running. Delegate the read/grep/synthesis to a worker so the main context
11
11
  stays on judgment. Codebase only — does not perform web research or
12
12
  git-history queries.
13
- version: 3.5.1
13
+ version: 3.5.2
14
14
  ---
15
15
 
16
16
  # mma-investigate
@@ -10,7 +10,7 @@ when_to_use: >-
10
10
  you want to re-try the failed indices only. Prefer this over re-dispatching
11
11
  the whole batch or inline-retrying — it's idempotent and preserves the
12
12
  original batch's diagnostics.
13
- version: 3.5.1
13
+ version: 3.5.2
14
14
  ---
15
15
 
16
16
  # mma-retry
@@ -10,7 +10,7 @@ when_to_use: >-
10
10
  AND mmagent is running. Delegate so each file reviews on its own worker; the
11
11
  main agent only decides what to merge. Review on SOURCE CODE — use mma-audit
12
12
  for prose specs / configs.
13
- version: 3.5.1
13
+ version: 3.5.2
14
14
  ---
15
15
 
16
16
  # mma-review
@@ -10,7 +10,7 @@ when_to_use: >-
10
10
  against implemented work BEFORE claiming success. Delegate so each checklist
11
11
  item gets independent evidence-gathering on a worker. Use this BEFORE saying
12
12
  "done" — never after.
13
- version: 3.5.1
13
+ version: 3.5.2
14
14
  ---
15
15
 
16
16
  # mma-verify
@@ -11,7 +11,7 @@ when_to_use: >-
11
11
  tasks — AND mmagent is running. Read this once, pick the matching mma-* skill,
12
12
  and delegate there. Applies equally whether the user invoked a superpowers
13
13
  methodology skill or asked directly.
14
- version: 3.5.1
14
+ version: 3.5.2
15
15
  ---
16
16
 
17
17
  # multi-model-agent (router)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zhixuan92/multi-model-agent",
3
- "version": "3.5.1",
3
+ "version": "3.5.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Standalone HTTP server for multi-model-agent. Routes tool-invocation work to Claude, Codex, or OpenAI-compatible sub-agents with async-polling REST dispatch and installable skills for Claude Code, Gemini CLI, Codex CLI, and Cursor.",
@@ -52,7 +52,7 @@
52
52
  },
53
53
  "dependencies": {
54
54
  "@asteasolutions/zod-to-openapi": "^8.5.0",
55
- "@zhixuan92/multi-model-agent-core": "^3.5.1",
55
+ "@zhixuan92/multi-model-agent-core": "^3.5.2",
56
56
  "gray-matter": "^4.0.3",
57
57
  "minimist": "^1.2.8",
58
58
  "zod": "^4.0.0"