Files
PaddedCell/openclaw.plugin.json
zhi c366958a37 fix: use PaddedCell as plugin id to match directory name
- Change plugin id from 'padded-cell' to 'PaddedCell'
- Update manifest and install script
- OpenClaw infers plugin id from directory name
2026-03-05 12:09:42 +00:00

26 lines
606 B
JSON

{
"id": "PaddedCell",
"name": "PaddedCell",
"version": "0.1.0",
"description": "Secure password management, safe execution, and coordinated restart",
"entry": "./index.js",
"configSchema": {
"type": "object",
"properties": {
"enabled": { "type": "boolean", "default": true }
}
},
"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"
}
]
}