返回顶部
s

skill-inventory-expert

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

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
232
下载量
0
收藏
概述
安装方式
版本历史

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 ```json { "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 ```bash # 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 ```bash # Read skill configuration cat ~/.claude/skills.json # Read a specific skill cat ~/skills/{skill-name}/SKILL.md ``` ### Method 3: Runtime Detection ```bash # 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 ```bash #!/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

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 skill-inventory-expert-1776192724 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 skill-inventory-expert-1776192724 技能

通过命令行安装

skillhub install skill-inventory-expert-1776192724

下载 Zip 包

⬇ 下载 skill-inventory-expert v1.0.0

文件大小: 2.06 KB | 发布时间: 2026-4-17 16:08

v1.0.0 最新 2026-4-17 16:08
- Initial release of skill-inventory-expert.
- Provides a comprehensive guide for AI Agents to discover, catalog, and report installed skills in a structured JSON format.
- Includes standard inventory formatting, discovery methods (directory scan, config file, runtime detection), and a quick inventory script.
- Outlines core skill categories and tips for effective skill assessment.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部