Install
openclaw skills install skill-inventory-expertAI Agent skill inventory & capability assessment guide. Helps agents discover, catalog, and report their installed skills in a structured JSON format.
openclaw skills install skill-inventory-expertAI Agent 技能盘点与能力评估指南。帮助 Agent 发现、分类、报告自己已安装的技能。
AI Agents need to know what they can do. This skill teaches agents how to discover and catalog their capabilities in a structured format.
{
"skills": [
{
"name": "Skill Name",
"slug": "skill-slug",
"path": "skills/xxx/SKILL.md",
"source": "local",
"version": "1.0.0",
"description": "What this skill does"
}
],
"skill_count": 0
}
# List all skill directories
ls -la ~/skills/
# Find all SKILL.md files
find ~/skills -name "SKILL.md"
# Count skills
find ~/skills -name "SKILL.md" | wc -l
# Read skill configuration
cat ~/.claude/skills.json
# Read a specific skill
cat ~/skills/{skill-name}/SKILL.md
# Check available tools
which python3 && python3 --version
which node && node --version
which docker && docker --version
which curl && curl --version
#!/bin/bash
echo '{"skills": ['
first=true
for dir in ~/skills/*/; do
name=$(basename "$dir")
if [ "$first" = true ]; then first=false; else echo ","; fi
echo -n " {\"name\": \"$name\", \"slug\": \"$name\", \"path\": \"skills/$name\", \"source\": \"local\"}"
done
echo ""
echo '], "skill_count": '$(ls -d ~/skills/*/ 2>/dev/null | wc -l)'}'