agentsclimarketplace

Gh audit

Skill sametbrr/github-manager/skills/gh-audit

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.From its SKILL.md

Install
npx -y skills add sametbrr/github-manager --skill gh-audit

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.4 KB, 711 tokens by cl100k_base, as published. Nobody here has run it

gh-audit

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.

0. Auth preflight

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"

1. Hedef çöz

Ö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

2. Hesap denetimi (yalnız hesap modunda, 1 kez)

account-analyzer agent'ını çalıştır → eksik profil alanları + profil README durumu.

3. Repo denetimi (SIRALI — repo başına)

Önce repo listesini tek çağrıda çek (yukarıda). Sonra her repo için sırayla:

  • description-analyzer → desc verdict + öneri
  • tag-analyzer → topics add/remove
  • readme-analyzer → README durumu

Sıralı: paralel/workflow yok. Veri tek seferde çekildiği için her analyzer ön-çekilmiş veriyle çalışır (tekrar gh çağrısı minimum).

4. Önceliklendirilmiş rapor

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

Kurallar

  • Read-only: hiçbir gh repo edit / PATCH / push YOK.
  • Sapma = checklist ihlali; rapor neyin neden sapma olduğunu söyler.
  • Düzeltme istenirse → gh-normalize (desc/topics) / profile-bio / readme-standard'a yönlendir.
  • Sessiz varsayım yok; tüm sapmalar tek raporda (CLAUDE.md #1/#7).

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.