Install
openclaw skills install clawhub-skill-auditAudit locally installed skills against ClawHub: detect version drift, find new publish candidates, review security flags, and triage ownership conflicts. Use when: reviewing whether published skills need updates, deciding what new local skills are ready to open-source, investigating hidden/flagged skills on ClawHub, or running the weekly skill lifecycle check.
openclaw skills install clawhub-skill-auditMaintain the health of your published ClawHub skills: detect drift, find new candidates, review security flags.
clawhub CLI (npm global: ~/.npm-global/bin/clawhub)scripts/skill-lifecycle/drift-detector.py — version comparisonscripts/clawhub_audit.py — local security compliance checkscripts/skill-lifecycle/publish-skill.sh — publish gateSee playbooks/clawhub-skill-lifecycle/PLAYBOOK.md for complete step-by-step.
/Users/loki/.pyenv/versions/3.14.3/bin/python3 \
~/.openclaw/workspace/scripts/skill-lifecycle/drift-detector.py
for skill in agent-hive llm-eval-router fastapi-studio-template observability-lgtm \
insight-engine fact-checker agent-budget-governance demo-precacher \
gateway-env-injector mistral-agents-orchestrator multi-agent-pipeline \
reddi-humanizer tweet-humanizer tweet-pipeline notion-content-pipeline security-auditor; do
result=$(clawhub inspect "$skill" 2>&1 | grep -E "Owner:|Latest:|hidden|security|flag|pending")
echo "$skill: $result"
done
Look for: hidden while security scan is pending or any flag/warning text.
for d in ~/.openclaw/workspace/skills/*/; do
name=$(basename "$d")
has_version=$(grep -m1 "^version:" "$d/SKILL.md" 2>/dev/null | wc -c)
published=$(clawhub inspect "$name" 2>/dev/null | grep "Owner: nissan")
if [ "$has_version" -gt 0 ] && [ -z "$published" ]; then
ver=$(grep -m1 "^version:" "$d/SKILL.md" | awk '{print $2}' | tr -d "'\"")
echo "CANDIDATE: $name @ $ver"
fi
done
# 1. Bump version in SKILL.md frontmatter
# 2. Add CHANGELOG.md entry
# 3. Run publish gate (checks version + changelog)
bash ~/.openclaw/workspace/scripts/skill-lifecycle/publish-skill.sh <skill-name>
# 4. Publish
clawhub publish ~/.openclaw/workspace/skills/<skill-name>
/Users/loki/.pyenv/versions/3.14.3/bin/python3 \
~/.openclaw/workspace/scripts/clawhub_audit.py <skill-name>
Fix the flagged issues (typically: undeclared env vars, missing network.outbound, suspicious patterns)
Bump patch version, add CHANGELOG entry, republish.
If clawhub publish returns Error: Only the owner can publish updates:
reddi-<name>, or keep local-onlyreddi-<name> → update name: in SKILL.md → publish new slugagent-hive, llm-eval-router, fastapi-studio-template, observability-lgtm,
insight-engine, fact-checker, agent-budget-governance, demo-precacher,
gateway-env-injector, mistral-agents-orchestrator, multi-agent-pipeline,
reddi-humanizer, tweet-humanizer, tweet-pipeline, notion-content-pipeline
| Skill | Published owner | Recommended action |
|---|---|---|
reddi-humanizer | nissan | Forked from biostartechnology/humanizer — published as reddi-humanizer |
self-improving-agent | pskoett | Audit diff, then fork or local-only |
clawhub explore returns empty — use clawhub inspect <slug> per skill_meta.json in skill dir = drift tracker. Missing = drift detector can't compare. After publish, clawhub writes this file.clawhub sync --dry-run as the source of truth for full registry drift; the legacy drift-detector.py only checks local _meta.json files and misses new local skills.fastapi-studio-template, insight-engine, fact-checker, demo-precacher show higher published versions than local. Run clawhub update <slug> to pull those down and sync.