metheus-governance-mcp-cli 0.2.265 → 0.2.266
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 +2 -0
- package/cli.mjs +499 -763
- package/lib/provider-local-transport-chat-action-handoff.mjs +54 -0
- package/lib/provider-local-transport-message-handoff.mjs +97 -0
- package/lib/provider-local-transport.mjs +42 -94
- package/lib/runner-delivery-archive-handoff.mjs +146 -0
- package/lib/runner-delivery-context.mjs +138 -0
- package/lib/runner-delivery-dispatch.mjs +161 -0
- package/lib/runner-delivery-result-handoff.mjs +13 -0
- package/lib/runner-delivery.mjs +66 -248
- package/lib/runner-orchestration-adjudication.mjs +423 -0
- package/lib/runner-orchestration-entrypoints.mjs +871 -0
- package/lib/runner-orchestration-execution-plan.mjs +125 -0
- package/lib/runner-orchestration-failure.mjs +328 -0
- package/lib/runner-orchestration-intent-contracts.mjs +980 -0
- package/lib/runner-orchestration-selected-record-context.mjs +459 -0
- package/lib/runner-orchestration-selected-record-contract-context.mjs +181 -0
- package/lib/runner-orchestration-selected-record-delivery-context.mjs +150 -0
- package/lib/runner-orchestration-selected-record-delivery-handoff.mjs +62 -0
- package/lib/runner-orchestration-selected-record-outcome.mjs +180 -0
- package/lib/runner-orchestration-selected-record-preparation.mjs +173 -0
- package/lib/runner-orchestration-selected-record-reply-outcome.mjs +450 -0
- package/lib/runner-orchestration-selected-record-terminal-outcome.mjs +132 -0
- package/lib/runner-orchestration-step-inputs.mjs +211 -0
- package/lib/runner-orchestration-step-order.mjs +47 -0
- package/lib/runner-orchestration-step-requirements.mjs +428 -0
- package/lib/runner-orchestration-step-summary.mjs +154 -0
- package/lib/runner-orchestration-step-worker.mjs +165 -0
- package/lib/runner-orchestration-visibility.mjs +763 -0
- package/lib/runner-orchestration.mjs +1369 -5578
- package/lib/runner-recorder-active-execution-handoff.mjs +24 -0
- package/lib/runner-recorder-failure-delivery-handoff.mjs +98 -0
- package/lib/runner-recorder-failure-delivery-outcome-handoff.mjs +96 -0
- package/lib/runner-recorder-lifecycle-handoff.mjs +136 -0
- package/lib/runner-recorder-request-claim-failure-handoff.mjs +38 -0
- package/lib/runner-recorder-request-root-reference-finalization-handoff.mjs +81 -0
- package/lib/runner-recorder-request-root-reference-handoff.mjs +49 -0
- package/lib/runner-recorder-root-reference-prerequisite-handoff.mjs +45 -0
- package/lib/runner-recorder-root-reference-result-handoff.mjs +98 -0
- package/lib/runner-recorder-root-work-item-failure-handoff.mjs +45 -0
- package/lib/runner-recorder-root-work-item-lifecycle-handoff.mjs +84 -0
- package/lib/runner-recorder-root-work-item-sync.mjs +58 -0
- package/lib/runner-recorder-route-state-handoff.mjs +34 -0
- package/lib/runner-trigger.mjs +14 -0
- package/lib/selftest-runner-scenarios.mjs +2547 -208
- package/lib/selftest-telegram-e2e.mjs +60 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -272,8 +272,10 @@ Current fixed module order:
|
|
|
272
272
|
- [cli.mjs](/C:/Metheus/METHEUS_V1/tools/governance-mcp-cli/cli.mjs)
|
|
273
273
|
6. delivery orchestration
|
|
274
274
|
- [runner-delivery.mjs](/C:/Metheus/METHEUS_V1/tools/governance-mcp-cli/lib/runner-delivery.mjs)
|
|
275
|
+
- owns delivery context, provider dispatch orchestration, outbound archive mirroring, and final delivery result shaping
|
|
275
276
|
7. provider transport
|
|
276
277
|
- [provider-local-transport.mjs](/C:/Metheus/METHEUS_V1/tools/governance-mcp-cli/lib/provider-local-transport.mjs)
|
|
278
|
+
- owns raw provider message transport and raw chat-action transport only
|
|
277
279
|
|
|
278
280
|
Execution order depends on message type, but module numbering does not:
|
|
279
281
|
|