Back to list
willsigmon

codebase-health-reporter

by willsigmon

Website for sigstack.dev - Claude Code stack showcase

0🍴 0📅 Jan 23, 2026

SKILL.md


name: Codebase Health Reporter description: Generate comprehensive health report for Leavn codebase - metrics, technical debt, bugs found/fixed, recommendations for next session allowed-tools: Read, Write, Grep, Glob, Bash

Codebase Health Reporter

Generate health metrics and recommendations:

  1. Collect metrics:

    • Lines of code: find LeavnApp -name "*.swift" | xargs wc -l
    • File count: find LeavnApp -name "*.swift" | wc -l
    • Git stats: git log --oneline -20
    • Code deleted: git diff --shortstat main
  2. Audit key areas:

    • @Published usage: grep -r "@Published" | wc -l
    • try! force unwraps: grep -r "try!" | wc -l
    • Empty catches: grep -r "} catch {}" | wc -l
    • UserDefaults: grep -r "UserDefaults.standard" | wc -l
  3. Create report sections:

    • Session summary (bugs fixed, lines changed)
    • Technical debt (remaining issues)
    • Recommendations (prioritized by impact)
    • Ship readiness checklist
  4. Output: CODEBASE_HEALTH_REPORT.md

Use when: Session complete, need status report, planning next work, ship decision

Score

Total Score

50/100

Based on repository quality metrics

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

Reviews

💬

Reviews coming soon