feat: add OpenClaw plugin manifest

- Add openclaw.plugin.json with plugin metadata
- Define tools: pcexec and safe_restart
This commit is contained in:
zhi
2026-03-05 12:08:23 +00:00
parent 7e0c4cd5e6
commit 08e74e3806

19
openclaw.plugin.json Normal file
View File

@@ -0,0 +1,19 @@
{
"id": "padded-cell",
"name": "PaddedCell",
"version": "0.1.0",
"description": "Secure password management, safe execution, and coordinated restart",
"entry": "./safe-restart/dist/index.js",
"tools": [
{
"name": "pcexec",
"entry": "./pcexec/dist/index.js",
"description": "Safe exec with password sanitization"
},
{
"name": "safe_restart",
"entry": "./safe-restart/dist/index.js",
"description": "Safe coordinated restart"
}
]
}