← 返回
未分类 中文

Skill Inventory Expert

AI Agent skill inventory & capability assessment guide. Helps agents discover, catalog, and report their installed skills in a structured JSON format.
AI智能体技能清单和能力评估指南,帮助智能体以结构化JSON格式发现、整理并报告已安装技能。
saqierma-cyber saqierma-cyber 来源
未分类 clawhub v1.0.0 1 版本 99883.7 Key: 无需
★ 0
Stars
📥 859
下载
💾 1
安装
1
版本
#latest

概述

📋 技能盘点专家 / 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

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-30 18:58 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,402 📥 323,492
ai-agent

Agent Browser

rez0
用于 AI 代理的浏览器自动化 CLI。当用户需要与网站交互(包括浏览页面、填写表单、点击按钮、截图等)时使用。
★ 840 📥 317,393
ai-agent

Find Skills

guipi888
场景驱动+关键词双模式技能发现工具。当用户用自然语言描述场景/需求(如"我想做一个海报""帮我分析股票"),或明确说"安装技能/find skills/找个skill"时,自动从官方内置、本地已安装、SkillHub、虾评、GitHub、C
★ 1,480 📥 542,921