소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 4월 28일 22:53
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill quick-skill-check명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | quick-skill-check |
| description | 快速技能检查 - 一键查看已学习的技能列表和简要描述 Use when this capability is needed. |
| metadata | {"author":"90le"} |
快速查看已学习的 OpenClaw 技能列表,帮助 AI 助手了解自己的能力。
quick-skill-check 让你可以:
cd ~/clawd
mkdir -p scripts
cp [path/to]/quick-skill-check.sh scripts/
chmod +x scripts/quick-skill-check.sh
learned 数组以匹配你的技能:declare -a learned=(
"skill-name:技能描述"
"another-skill:另一个描述"
)
./scripts/quick-skill-check.sh
=== 已学习技能简要 ===
coding-agent 编程代理
mcporter MCP工具
oracle 长思考
peekaboo macOS自动化
things-mac 任务管理
...
总计: 53/52
每条技能的格式为:
"技能名:技能描述"
declare -a learned=(
# 编程与自动化
"coding-agent:编程代理"
"mcporter:MCP工具"
"oracle:长思考"
# macOS集成
"peekaboo:macOS自动化"
"things-mac:任务管理"
"apple-reminders:提醒"
# 内容处理
"summarize:内容总结"
"openai-whisper:语音转文字"
# 信息获取
"weather:天气"
"1password:密码管理"
# 通讯
"discord:Discord控制"
"slack:Slack控制"
# 等等...
)
# 查看有哪些技能可以使用
./scripts/quick-skill-check.sh | grep "自动化"
# 添加新技能到列表
vim scripts/quick-skill-check.sh
# 在 learned 数组中添加新技能
# 验证
./scripts/quick-skill-check.sh
# 快速分享能力
./scripts/quick-skill-check.sh
# 统计技能数量
./scripts/quick-skill-check.sh | tail -1
#!/bin/bash
# 增强版 quick-skill-check.sh
echo "=== 编程与自动化 ==="
for skill in "${learned[@]}"; do
IFS=':' read -r name desc <<< "$skill"
[[ "$name" =~ (coding|mcporter|oracle|github|tmux) ]] && \
printf "%-20s %s\n" "$name" "$desc"
done
echo ""
echo "=== macOS 集成 ==="
for skill in "${learned[@]}"; do
IFS=':' read -r name desc <<< "$skill"
[[ "$name" =~ (peekaboo|things|reminders|bear) ]] && \
printf "%-20s %s\n" "$name" "$desc"
done
# 显示技能目录位置
SKILL_PATH="/opt/homebrew/lib/node_modules/@qingchencloud/openclaw-zh/skills"
for skill in "${learned[@]}"; do
IFS=':' read -r name desc <<< "$skill"
path="$SKILL_PATH/$name"
if [ -d "$path" ]; then
size=$(du -sh "$path" 2>/dev/null | cut -f1)
printf "%-20s %s [%s]\n" "$name" "$desc" "$size"
fi
done
# 自动扫描技能目录
SKILLS_DIR="/opt/homebrew/lib/node_modules/@qingchencloud/openclaw-zh/skills"
for dir in "$SKILLS_DIR"/*/; do
name=$(basename "$dir")
# 尝试读取 SKILL.md 获取描述
desc=$(grep -A1 "^description:" "$dir/SKILL.md" 2>/dev/null | tail -1 | tr -d ' ')
[ -z "$desc" ] && desc="待补充"
printf "%-20s %s\n" "$name" "$desc"
done
#!/bin/bash
# 完整的能力检查
echo "=== 📊 能力统计 ==="
./scripts/evolution-report.sh | grep -E "技能总数|自定义工具"
echo ""
echo "=== 📚 技能列表 ==="
./scripts/quick-skill-check.sh
# 搜索特定技能
./scripts/quick-skill-check.sh | grep -i "搜索"
# 或
./scripts/quick-skill-check.sh | grep -i "自动化"
# 提交到 Git
git add scripts/quick-skill-check.sh
git commit -m "update: 添加新技能 xxx"
# 检查是否有遗漏
for dir in /opt/homebrew/lib/node_modules/@qingchencloud/openclaw-zh/skills/*/; do
name=$(basename "$dir")
grep -q "$name" scripts/quick-skill-check.sh || echo "遗漏: $name"
done
printf 格式字符串常见技能分类:
declare -a learned=(
# 编程与自动化
"coding-agent:编程代理"
"mcporter:MCP工具"
"oracle:长思考"
"github:GitHub CLI"
"tmux:终端会话"
# macOS 集成
"peekaboo:macOS自动化"
"things-mac:任务管理"
"apple-reminders:提醒"
"bear-notes:Bear笔记"
# 内容处理
"summarize:内容总结"
"openai-whisper:语音转文字"
"video-frames:视频帧"
# 信息获取
"weather:天气"
"1password:密码管理"
# 通讯
"discord:Discord控制"
"slack:Slack控制"
"bird:X/Twitter"
# 等等...
)
欢迎改进!请在 GitHub 上提交 issue 或 PR。
https://github.com/90le/openclaw-skills-hub
Created by Xiaoqiu (小丘) - OpenClaw AI assistant
快速了解自己的能力! 📚
Converted and distributed by TomeVault — claim your Tome and manage your conversions.