- Change index.js to export init() function that receives api - Use api.registerTool() to dynamically register tools - Remove tools array from manifest (not needed for dynamic registration) - Add passMgrPath to configSchema
15 lines
400 B
JSON
15 lines
400 B
JSON
{
|
|
"id": "padded-cell",
|
|
"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 },
|
|
"passMgrPath": { "type": "string", "default": "/root/.openclaw/bin/pass_mgr" }
|
|
}
|
|
}
|
|
}
|