From 08e74e38063c48206bfea5dcf899e749ff911f8a Mon Sep 17 00:00:00 2001 From: zhi Date: Thu, 5 Mar 2026 12:08:23 +0000 Subject: [PATCH] feat: add OpenClaw plugin manifest - Add openclaw.plugin.json with plugin metadata - Define tools: pcexec and safe_restart --- openclaw.plugin.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 openclaw.plugin.json diff --git a/openclaw.plugin.json b/openclaw.plugin.json new file mode 100644 index 0000000..162f222 --- /dev/null +++ b/openclaw.plugin.json @@ -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" + } + ] +}