From github-manager
Claude Code skill that produces a read-only GitHub account health report — missing profile fields, repo descriptions, topics and READMEs across a chosen scope (public/private/all) or a single repo. Writes nothing.
How this skill is triggered — by the user, by Claude, or both
Slash command
/github-manager:gh-auditThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Read-only sağlık raporu. **Hiçbir şey yazmaz.** Hesap (profil) + repo (metadata/README)
Read-only sağlık raporu. Hiçbir şey yazmaz. Hesap (profil) + repo (metadata/README) katmanlarını STANDARDS checklist'lerine göre denetler, önceliklendirilmiş sapma raporu verir.
command -v gh >/dev/null || { echo "→ brew install gh"; exit 1; }
gh auth status >/dev/null 2>&1 || echo "→ login gerek: ! gh auth login --web -s repo,read:org,user"
Öncelik: --repo owner/name > cwd git repo + remote > --scope public|private|all > SOR.
# hesap modu:
gh repo list "$(gh api user --jq .login)" --visibility <scope> --limit 200 \
--json name,description,repositoryTopics,visibility,primaryLanguage
# tek repo modu: --repo verildi ya da: git remote get-url origin
account-analyzer agent'ını çalıştır → eksik profil alanları + profil README durumu.
Önce repo listesini tek çağrıda çek (yukarıda). Sonra her repo için sırayla:
description-analyzer → desc verdict + öneritag-analyzer → topics add/removereadme-analyzer → README durumuSıralı: paralel/workflow yok. Veri tek seferde çekildiği için her analyzer ön-çekilmiş veriyle çalışır (tekrar gh çağrısı minimum).
Sıra: profil kimliği → public repo desc/topics → public README → private.
GITHUB AUDIT (<login>, scope=<scope>)
PROFİL
- company: EMPTY (opsiyonel) · profile-readme: PRESENT · ...
REPOLAR (n)
repo desc topics readme
---- ---- ------ ------
awesome-agent-skills PASS FAIL (boş!) PRESENT
prompt-architect PASS WARN (anthropic) PRESENT
...
ÖZET
X repo desc, Y topics, Z readme sapması · profil: N eksik
gh repo edit / PATCH / push YOK.gh-normalize (desc/topics) / profile-bio / readme-standard'a yönlendir.npx claudepluginhub sametbrr/github-managerCreates, edits, and verifies skills using a test-driven development approach with pressure scenarios and subagents.