@zhixuan92/multi-model-agent-core 3.10.5 → 3.10.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -104,7 +104,7 @@ As of 3.4.0 every task-execution event the worker emits to the verbose stderr st
104
104
 
105
105
  ## What's new
106
106
 
107
- Latest: **3.10.4** — `endReviewStage` was always called with `implementerAgentInfo`, so `spec_review.model` / `quality_review.model` / `diff_review.model` recorded the implementer's model V3 R3 (review.model implementerModel) then fired by construction regardless of config. Fixed: build `reviewerAgentInfoFor(tier)` from the resolved provider per tier; pass the last-used reviewer tier from `specReviewerHistory` / `qualityReviewerHistory` (reflecting any escalation). 24 contract goldens regenerated. Full history: [CHANGELOG](https://github.com/zhixuan312/multi-model-agent/blob/master/CHANGELOG.md).
107
+ Latest: **3.10.6** — Skill content packaged in `@zhixuan92/multi-model-agent-core/skills` was corrected: the router skill (`multi-model-agent/SKILL.md`) and `mma-execute-plan/SKILL.md` had drifted from the executor code. Only `delegate.ts` schema accepts `agentType`; every other tool-schema is `.strict()` and rejects it with HTTP 400. Per-route hardcoded tiers (`executors/*.ts:agentType`) are now accurately documented. Full history: [CHANGELOG](https://github.com/zhixuan312/multi-model-agent/blob/master/CHANGELOG.md).
108
108
 
109
109
  ## Full documentation
110
110
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zhixuan92/multi-model-agent-core",
3
- "version": "3.10.5",
3
+ "version": "3.10.6",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Core library for multi-model-agent: provider runners (Claude, Codex, OpenAI-compatible), routing logic, config schema, and tool/sandbox primitives.",