chore: add continuity plugin package skeleton

This commit is contained in:
Eve
2026-04-24 16:45:06 +08:00
parent 82d0d94b5f
commit b3483098c1
13 changed files with 297 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{
"name": "@openclaw/plugin-continuity",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Continuity plugin MVP skeleton for approved-plan dispatch gating.",
"exports": {
".": "./src/index.mjs"
},
"scripts": {
"test": "node test/continuity.config.test.mjs && node test/continuity.receipt-validator.test.mjs && node test/continuity.receipt-store.test.mjs && node test/continuity.evaluator.test.mjs && node test/continuity.plugin.test.mjs && node test/continuity.smoke.test.mjs"
}
}