← スキル一覧に戻る

update-skills
by GedeonIsezerano
A repository for managing cloud config across platforms.
⭐ 0🍴 0📅 2026年1月20日
SKILL.md
name: update-skills description: Update Skills allowed-tools: Bash, Read
Update Skills
This skill updates Claude Code skills from multiple sources:
- Symlinked skills - Git repositories in
~/open-source/ - Custom skills - The Claude-Config repository
Skill Sources
| Source | Location | Method |
|---|---|---|
| Dimillian/Skills | ~/open-source/Skills | Symlink (macOS only) |
| vercel-labs/agent-skills | ~/open-source/agent-skills | Symlink |
| delorenj/skills | ~/open-source/delorenj-skills | Symlink |
| Claude-Config | ~/Claude-Config | Copy via setup script |
Workflow
- Detect platform (macOS, Linux, WSL, Windows)
- Pull latest changes from symlinked repositories
- Report what was updated
Execution
1. Detect Platform
case "$(uname -s)" in
Darwin) echo "Platform: macOS" ;;
Linux)
if grep -qi microsoft /proc/version 2>/dev/null; then
echo "Platform: WSL"
else
echo "Platform: Linux"
fi
;;
MINGW*|MSYS*|CYGWIN*) echo "Platform: Windows" ;;
*) echo "Platform: unknown" ;;
esac
2. Update Cross-Platform Skills (All Platforms)
cd ~/open-source/agent-skills && git fetch && git log HEAD..origin/main --oneline && git pull origin main
cd ~/open-source/delorenj-skills && git fetch && git log HEAD..origin/main --oneline && git pull origin main
3. Update macOS-Only Skills (macOS Only)
Only run on macOS:
cd ~/open-source/Skills && git fetch && git log HEAD..origin/main --oneline && git pull origin main
4. Check Claude-Config for Updates
cd ~/Claude-Config && git fetch && git log HEAD..origin/main --oneline
If there are updates, inform the user to run:
- macOS/Linux/WSL:
cd ~/Claude-Config && git pull && ./setup.sh - Windows:
cd $env:USERPROFILE\Claude-Config; git pull; .\setup.ps1
Report whether new commits were fetched or if already up to date for each repository.
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です