@zhixuan92/multi-model-agent-core 2.1.0 → 2.1.1

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 +6 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -50,6 +50,12 @@ for (const r of results) {
50
50
  | `./provider` | `createProvider` factory |
51
51
  | `./run-tasks` | `runTasks` parallel dispatcher |
52
52
  | `./types` | All shared types |
53
+ | `./intake/pipeline` | `runIntakePipeline` — compile → infer → classify → resolve |
54
+ | `./intake/types` | `DraftTask`, `Source`, `IntakeResult`, `ClarificationEntry` |
55
+ | `./intake/classify` | `classifyDraft` — deterministic classification heuristic |
56
+ | `./intake/confirm` | `processConfirmations` — clarification resume processing |
57
+ | `./intake/clarification-store` | `ClarificationStore` — TTL/LRU state for clarification sets |
58
+ | `./intake/compilers/*` | Route compilers: `delegate`, `review`, `debug`, `verify`, `audit` |
53
59
 
54
60
  ## Full documentation
55
61
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zhixuan92/multi-model-agent-core",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
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.",