Install
openclaw skills install clawnedhubSecurity agent that inventories installed OpenClaw skills, analyzes them for threats, and syncs results to your Clawned dashboard.
openclaw skills install clawnedhubAutomatically discovers all installed skills, analyzes them for security threats, and syncs results to your Clawned dashboard.
Configure your API key in openclaw.json:
{
"skills": {
"entries": {
"clawned": {
"enabled": true,
"env": {
"CLAWNED_API_KEY": "cg_your_api_key_here",
"CLAWNED_SERVER": "https://api.clawned.io"
}
}
}
}
}
python3 {baseDir}/scripts/agent.py sync
python3 {baseDir}/scripts/agent.py scan --path <skill-directory>
python3 {baseDir}/scripts/agent.py inventory
python3 {baseDir}/scripts/agent.py status
During sync (default operation):
.env files or secrets are ever readDuring scan --path (explicit user action only):
.md, .py, .js, etc.) from the specified skill directory for analysis.env files are excluded from scanningLocal config access:
~/.openclaw/openclaw.json only to locate skill directories (extraDirs paths)Schedule every 6 hours via OpenClaw cron:
{
"jobs": [
{
"schedule": "0 */6 * * *",
"command": "Run clawned sync to check all installed skills",
"description": "Security scan every 6 hours"
}
]
}