Files
PaddedCell/plugin/openclaw.plugin.json
hzhang cd6b5d3d48 refactor(dynamic-tools): rename to dynamic-tools-{list,search,cache,evict}
Mirror of the Plexum-side rename so cross-runtime tool names + ClawSkills
workflow text stay consistent.

Old → new:
  dynamic-list-tools   → dynamic-tools-list
  dynamic-search-tools → dynamic-tools-search
  dynamic-cache-tools  → dynamic-tools-cache
  dynamic-evict-tools  → dynamic-tools-evict

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-06-05 16:33:52 +01:00

34 lines
830 B
JSON

{
"id": "padded-cell",
"name": "PaddedCell",
"description": "Secure secret management, agent identity management, safe execution, and coordinated agent restart",
"activation": {
"onStartup": true
},
"contracts": {
"tools": [
"pcexec",
"proxy-pcexec",
"safe_restart",
"dynamic-trim",
"dynamic-tools-list",
"dynamic-tools-search",
"dynamic-tools-cache",
"dynamic-tools-evict"
]
},
"configSchema": {
"type": "object",
"properties": {
"enabled": { "type": "boolean", "default": true },
"secretMgrPath": { "type": "string", "default": "" },
"openclawProfilePath": { "type": "string", "default": "" },
"proxyAllowlist": {
"type": "array",
"items": { "type": "string" },
"default": []
}
}
}
}