🦀 ClawHub
skill审查
by @hwl1413520
审查 Agent Skills 的规范性、完整性和代码质量。在安装或发布 skills 时使用,验证 SKILL.md 格式、目录结构、脚本代码和文件引用是否符合 Agent Skills 规范。
📋 Tips & Best Practices
SKILL.md 问题
问题: name 字段包含大写字母
# ❌ 错误
name: PDF-Processing✅ 正确
name: pdf-processing
问题: description 过短
# ❌ 错误
description: Helps with PDFs.✅ 正确
description: Extracts text and tables from PDF files, fills PDF forms, and merges multiple PDFs. Use when working with PDF documents.
目录结构问题
问题: 目录名与 name 字段不匹配
# ❌ 错误
my-skill/
SKILL.md (name: different-name)✅ 正确
my-skill/
SKILL.md (name: my-skill)
脚本问题
问题: 缺少错误处理
# ❌ 错误
rm -rf $TARGET_DIR✅ 正确
if [ -d "$TARGET_DIR" ]; then
rm -rf "$TARGET_DIR" || { echo "无法删除目录"; exit 1; }
fi
文件引用问题
问题: 引用的文件不存在
# ❌ 错误
See reference✅ 正确
See reference
TERMINAL
clawhub install skill-review-ai