All skills
Skillintermediate
full maintenance
Run the complete index maintenance pipeline: update charts, review README, sync data, review frontend, then push.
Claude Code Knowledge Pack7/10/2026
Overview
Run the complete index maintenance pipeline: update charts, review README, sync data, review frontend, then push.
Phase 1: Update Charts
- Run tracking script to update repo count history and regenerate the chart:
cd /home/daniel/repos/github/Claude-Code-Repos-Index && python3 scripts/update_repo_tracking.py - Verify chart was updated and count is accurate.
Phase 2: Review README Organization
- Check alphabetical ordering within each category file in
categories/. Fix any out-of-order entries. - Check for duplicate repos across all category files. Remove duplicates.
- Review descriptions for consistency (1-2 sentences, clear, professional).
- Verify every entry has the correct format:
### Name, badge, description,---. - Flag overstuffed (>15) or underpopulated (<2) categories.
Phase 3: Rebuild and Sync Data
- Run the full build pipeline:
python3 scripts/build_site.py - Cross-check that repo counts match across: category files,
data/repos.json,docs/tagged_repos.json, anddata/site_state.json. - Verify every repo appears in
docs/tagged_repos.jsonwith valid tags and categories. - Verify
docs/repos/has detail pages for all repos.
Phase 4: Review Frontend Quality
- Check
docs/tagged_repos.jsonfor:- Repos with missing/generic descriptions
- Repos with only fallback tags
- Correct category assignments
- Review
data/tag_rules.json— suggest new rules if repos are poorly tagged. - Check
data/site_state.jsonhistory for recent changes.
Phase 5: Commit and Push
- Stage all changed files:
git add categories/ data/ docs/ charts/ README.md - Commit with a descriptive message summarizing what was fixed/updated.
- Push to remote:
git push
Report a summary of everything that was checked and any issues found/fixed.