ワンクリックで
sync-stars
Find GitHub starred repos not in CATALOG.md and generate catalog entries for them
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Find GitHub starred repos not in CATALOG.md and generate catalog entries for them
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Find tools that probably belong in CATALOG.md but aren't there, via referenced-but-not-catalogued detection + a foundational-tools checklist. Use to audit the catalog for missing heavyweight tools. Triggers - "find catalog gaps", "what's missing from the catalog", "audit catalog completeness".
Add a tool to CATALOG.md + COMPARISON.md and propagate all counts, then sync and audit. Use when adding a single catalogued tool by its GitHub slug. Triggers - "add X to the catalog", "catalog this repo", "/add-catalog-entry owner/repo".
Bootstrap the recommended AI workflow in any repo — checks what's installed, creates CLAUDE.md with quality rules, and identifies gaps
Bootstrap the recommended AI workflow in any repo — checks what's installed, creates CLAUDE.md with quality rules, and identifies gaps
Audit your current AI tool setup against the recommended dev loop workflow and identify gaps
Evaluate an AI tool, skill, or plugin against the catalog and dev loop quality signals before adopting it
| name | sync-stars |
| description | Find GitHub starred repos not in CATALOG.md and generate catalog entries for them |
Find starred repos missing from the catalog, classify them, and generate ready-to-paste catalog entries.
/sync-stars
# Get all starred repos
gh api user/starred --paginate --jq '.[].full_name' | sort > /tmp/starred.txt
# Extract all GitHub links from catalog
grep -oP 'github\.com/[^)]+' CATALOG.md | sed 's|github.com/||' | sort -u > /tmp/cataloged.txt
# Find gaps
comm -23 /tmp/starred.txt /tmp/cataloged.txt > /tmp/gaps.txt
For each repo in the gaps list:
# Fetch description and stars
gh api "repos/OWNER/REPO" --jq '{name: .full_name, stars: .stargazers_count, description: .description}'
Classify into one of these buckets:
For each AI-tooling repo, determine:
Output a table of entries grouped by category, ready to paste into CATALOG.md.
Output:
Do NOT modify any files automatically. Present the entries for review.