Automatically generates and maintains a visual dependency graph of all OpenClaw agent skills, showing which skills trigger others and their executi
# Full dependency graph as DOT
node scripts/main.js show-all --skills-dir ~/.openclaw/skills
# Text tree view
node scripts/main.js text-tree --skills-dir ~/.openclaw/skills --depth 3
# Detect circular dependencies
node scripts/main.js find-circular --skills-dir ~/.openclaw/skills
# Export as JSON
node scripts/main.js export --format json --skills-dir ~/.openclaw/skills
# Query a specific skill
node scripts/main.js query skill-github --skills-dir ~/.openclaw/skillsCopy the skill into your OpenClaw skills directory:
git clone https://github.com/NeoSkillFactory/skill-dependency-graph.git
cp -r skill-dependency-graph ~/.openclaw/skills/skill-dependency-graphgit clone https://github.com/NeoSkillFactory/skill-dependency-graph.git
cd skill-dependency-graph
npm installMIT © NeoSkillFactory