feat(reporting-governance): add watchdog chain adapters

This commit is contained in:
Eve
2026-05-08 08:42:52 +08:00
parent c2a775b62c
commit 145371fd23
12 changed files with 373 additions and 2 deletions

View File

@@ -5,9 +5,15 @@
"type": "module",
"description": "Reporting governance plugin package skeleton with capability descriptors and OpenClaw reference adapter boundaries.",
"exports": {
".": "./src/index.mjs"
".": "./src/index.mjs",
"./adapters": "./src/adapters/index.mjs",
"./adapters/watchdog": "./src/adapters/watchdog.mjs",
"./adapters/dispatcher": "./src/adapters/dispatcher.mjs",
"./adapters/bridge-supervisor": "./src/adapters/bridge-supervisor.mjs",
"./adapters/sender-binding": "./src/adapters/sender-binding.mjs",
"./adapters/orchestrator": "./src/adapters/orchestrator.mjs"
},
"scripts": {
"test": "node --test test/package-structure.test.mjs test/policy-evaluator.test.mjs test/decision-runner.test.mjs"
"test": "node --test test/package-structure.test.mjs test/policy-evaluator.test.mjs test/decision-runner.test.mjs test/watchdog-chain.integration.test.mjs"
}
}