From ai-tooling
Sync the AI tooling catalog with current GitHub stars and locally installed tools
How this skill is triggered — by the user, by Claude, or both
Slash command
/ai-tooling:update-catalogThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Refresh the catalog by checking for new GitHub stars, newly installed local tools, and stale entries.
Refresh the catalog by checking for new GitHub stars, newly installed local tools, and stale entries.
/update-catalog
# Current GitHub stars
gh api user/starred --paginate --jq '.[].full_name'
# Current local plugins
ls ~/.claude/plugins/cache/ 2>/dev/null
# Current local skills
ls ~/.claude/skills/ 2>/dev/null
# Current MCP servers
cat ~/.claude/settings.json 2>/dev/null
Read ${CLAUDE_PLUGIN_ROOT}/docs/CATALOG.md. Compare:
For each new AI_DEV_TOOL:
gh api repos/{owner}/{repo} --jq '.description'
Determine: name, type, category, one-liner, problem it solves, overlaps with.
${CLAUDE_PLUGIN_ROOT}/docs/CATALOG.md${CLAUDE_PLUGIN_ROOT}/docs/WORKFLOW.md, flag it for review## Catalog Update Report
**New entries added:** {count}
**Entries flagged as stale:** {count}
**Workflow impacts:** {any new tools that overlap with recommended stack}
### Added
{list of new entries with categories}
### Flagged
{list of entries that may be stale}
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub mattbutlerengineering/ai-tooling --plugin ai-tooling