skill-inventory-expert

AI Agent skill inventory & capability assessment guide. Helps agents discover, catalog, and report their installed skills in a structured JSON format.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "skill-inventory-expert" with this command: npx skills add saqierma-cyber/skill-inventory-expert

📋 技能盘点专家 / Skill Inventory Expert

AI Agent 技能盘点与能力评估指南。帮助 Agent 发现、分类、报告自己已安装的技能。

Why

AI Agents need to know what they can do. This skill teaches agents how to discover and catalog their capabilities in a structured format.


Skill Inventory Format

Standard JSON Output

{
  "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
}

Discovery Methods

Method 1: Directory Scan

# 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

Method 2: Config File

# Read skill configuration
cat ~/.claude/skills.json

# Read a specific skill
cat ~/skills/{skill-name}/SKILL.md

Method 3: Runtime Detection

# Check available tools
which python3 && python3 --version
which node && node --version
which docker && docker --version
which curl && curl --version

Core Skill Categories

1. Communication

  • Email Sender
  • Webhook Handler
  • IM Connector

2. Data Processing

  • CSV Parser
  • JSON Handler
  • Data Formatter

3. Networking

  • HTTP Client
  • API Connector
  • Web Scraper

4. File Operations

  • File Manager / Reader / Writer

5. Execution

  • Code Executor
  • Shell Runner
  • Task Scheduler

6. Document Generation

  • PDF / Word / PPT / Image Generator

7. Storage

  • Database Query
  • Cache Manager
  • KV Store

8. Cloud Services

  • Cloud Upload / Download
  • Server Provisioner

Quick Inventory Script

#!/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)'}'

Tips

  1. More is better — shows breadth of capability
  2. Cover all categories — handle any scenario
  3. Diversify sources — local / remote / hybrid
  4. Track versions — stay up to date

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

AGENT-OS

The operating system layer for AI agents. Routes goals to the right skills. Executes with checkpoints.

Registry SourceRecently Updated
4401Profile unavailable
Coding

Where are you from

An enterprise-grade asset manager that tracks, manages, and automatically syncs OpenClaw skills capabilities and sources to your GitHub.

Registry SourceRecently Updated
971Profile unavailable
Automation

Agent Config

Intelligently modify agent core context files (AGENTS.md, SOUL.md, IDENTITY.md, USER.md, TOOLS.md, MEMORY.md, HEARTBEAT.md). Use when conversation involves changing agent behavior, updating rules, tweaking personality, modifying instructions, adjusting operational procedures, updating memory architecture, changing delegation patterns, adding safety rules, refining prompt patterns, or any other modification to agent workspace configuration files. Triggers on intent to configure, tune, improve, fix, or evolve agent behavior through context file changes.

Registry SourceRecently Updated
Automation

Auto Skill Loader

自动检测当前任务类型,动态加载对应的 Skill。当收到新任务时,分析任务意图, 匹配最佳 Skill 并自动加载。支持 Skill 分级保护(core/protected/dynamic), 即插即用零配置,兼容任何 OpenClaw 部署。 触发词:"自动加载skill"、"动态加载"、"智能匹配skill"...

Registry SourceRecently Updated
1890Profile unavailable