keep-current

Installation
SKILL.md

You are auditing the Claude resource library documentation to ensure it accurately reflects the current state of the project.

Step 1 — Gather current state

Use the Bash tool to collect everything needed:

# Skills on disk
echo "=SKILLS_ON_DISK="
ls ~/dev/claude/skills/

# Recent git activity (last 20 commits)
echo "=RECENT_COMMITS="
git -C ~/dev/claude log --oneline -20

# Files changed in last 10 commits
echo "=RECENTLY_CHANGED="
git -C ~/dev/claude diff --name-only HEAD~10..HEAD 2>/dev/null
Installs
6
GitHub Stars
3
First Seen
Mar 23, 2026
keep-current — andrewkriley/claude