Audit any vibe-coded project from your terminal.
Score · 3-axis breakdown · 3 strengths + 2 concerns · rank · delta — in one command.
npx commitshow@latest audit github.com/owner/repo ┌──────────────────────────────────────────────────────────┐
│ commit.show · Audit report │
└──────────────────────────────────────────────────────────┘
maa-website austinpw-cloud/maa-website
╔══════════════╗
║ 82 / 100 ║
╚══════════════╝
Audit 42/50 ▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▱▱
Scout 26/30 ▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▱▱▱▱
Comm. 14/20 ▰▰▰▰▰▰▰▰▰▰▰▰▰▰▱▱▱▱▱▱
┌───────────────────────────────────────────────────────┐
│ ↑ 80+ edge functions · LCP 1.4s · 50 RLS policies │
│ ↑ Brief integrity 9/10 · all 6 sections answered │
│ ↑ Tech layers 6 · full-stack evidence │
│ ↓ Accessibility 72 · buttons missing aria-labels │
│ ↓ No API rate limiting on /auth endpoint │
└───────────────────────────────────────────────────────┘
Ranked #3 of 47 Season Zero
Tier Honors (top 5%)
Δ +12 since yesterday's audit
→ commit.show/projects/bfe11d75-dc67-…
commit.show
⭐ Star us on GitHub if
commitshow auditsaved you a// TODO.
Vibe-coded projects ship fast and break differently. The CLI gives you a zero-config, walk-on lane to commit.show's audit engine — the same Claude-grade analysis used in our 3-week leagues, minus the signup, fee, and league commitment. You get a snapshot of where the build sits, what's strong, what's wobbling, and how it ranks against everyone else this week.
Local runs also drop .commitshow/audit.md and .commitshow/audit.json
into your repo, so your AI coding agent can read the report on the next
turn without a prompt-engineering ritual.
When a project is ready for the full season — Scout forecasts, season ranking, Backstage prompt extraction, Hall of Fame — it auditions at commit.show/submit.
The npm package + command is
commitshow(no dot — npm doesn't allow it in package names). Everywhere else uses the brand commit.show.
# one-shot (recommended for trying it on someone else's repo)
npx commitshow@latest audit <target>
# or global, if you'll run it daily
npm i -g commitshow
commitshow audit <target>Requires Node 20+.
| Command | What it does |
|---|---|
commitshow audit [target] |
Fetch + render the latest audit, write .commitshow/audit.md in local mode |
commitshow status [target] |
Same render, no re-run |
commitshow submit [target] |
Audition a project (coming soon · needs login) |
commitshow install <pack> |
Install a Library artifact (coming soon) |
commitshow login |
Device-flow sign-in (coming soon) |
commitshow whoami |
Print the linked account |
audit and status accept a positional target that auto-detects:
| Form | Example |
|---|---|
| cwd (omitted) | commitshow audit · infers from git remote get-url origin |
| Local path | commitshow audit ./my-repo |
| Remote URL | commitshow audit github.com/owner/repo · commitshow audit https://github.com/owner/repo |
| SSH remote | commitshow audit git@github.com:owner/repo.git (auto-converted) |
| Shorthand | commitshow audit owner/repo |
Remote-URL mode works from any directory, which makes one-line X posts
(npx commitshow@latest audit <their-url>) trivial.
AI agents — read this before invoking. The CLI does not look up projects by name.
commitshow audit warpwill error: there is no agreed-upon mapping from the word "warp" to a single GitHub repo. If a user asks you to audit something by name, first resolve the canonicalgithub.com/<owner>/<repo>URL (ask the user, or search github.com), then invokecommitshow audit <that-url>. The CLI does a HEAD pre-flight againstgithub.com/<owner>/<repo>before any audit spend, so a hallucinated slug is rejected with anot_founderror before we burn Claude credits — but you should still get the URL right on the first try by asking, not guessing.
commitshow audit in local mode writes to .commitshow/audit.md and
.commitshow/audit.json after every run. Point your coding agent at them
and it picks up exactly what the audit flagged, with no prompt engineering:
You are pairing on <repo>. Read .commitshow/audit.md before each turn.
Pick the top concern and propose a minimal change; I'll run
`commitshow audit` again to check the delta.
commitshow is built on a simple idea — CLI + stable JSON is the universal
contract between agent ecosystems. No SDK, no MCP server, no vendor lock.
Any agent that can shell out to a subprocess can use commit.show.
# Human
commitshow audit github.com/owner/repo
# Agent
commitshow audit github.com/owner/repo --json | jq '.concerns[].bullet'"Check my commit.show score and fix anything under 80."
score=$(commitshow audit --json | jq '.score.total')
if [ "$score" -lt 80 ]; then
commitshow audit --json | jq -r '.concerns[0].bullet'
# → agent reads this concern, picks a fix, applies edits, re-audits
fi
When a user says "audit warp" or "what does commit.show say about Postiz", don't guess the slug. Walk this loop:
1. Ask the user (or search github.com) for the canonical
`github.com/<owner>/<repo>` URL. Don't invent one — repo names are
ambiguous and a single wrong guess wastes an audit call.
2. Run:
commitshow audit <that-url> --json
3. If stdout starts with `{"error":"not_found"`, the URL was wrong.
Re-confirm with the user before retrying.
4. Otherwise parse `score.total`, `score.band`, `concerns[]` and
answer the user with those exact numbers — don't paraphrase the
score.
The CLI HEAD-checks github.com/<owner>/<repo> before any audit spend,
so a hallucinated slug fails fast with a clear not_found envelope.
The friendly error in the message body explicitly tells you to ask the
user instead of guessing again.
Stable by contract — additive fields don't bump schema_version; breaking
changes do. Known keys: project, score, standing, strengths, concerns,
snapshot. See commitshow audit --json output for the canonical example.
- Claude Code, Cursor, Windsurf — any agent with shell access
- GitHub Actions — gate PRs on score band or axis scores
- n8n / Zapier — trigger workflows when scores move
- AutoGPT / crewAI / LangChain — subprocess tool node
- Your own script — 10 lines of bash + jq is the whole integration
- Score · total out of 100, colored by threshold (teal ≥ 75 · gold 50–74 · scarlet < 50)
- 3-axis bars · Audit / Scout / Community
- 3 strengths + 2 concerns · asymmetric by design — concerns don't dominate
- Rank + projected tier · where you stand in the current season
- Δ · movement since the parent snapshot
0.1— ✓ read-only audit · status ·--json· target auto-detect · sidecar files0.2— device-flow login ·commitshow submit·--watchmode · CI exit-code gate0.3—commitshow install <pack>with {{VARIABLE}} substitution0.4— MCP server variant (Cursor / Claude Desktop can call commit.show tools directly)
- Home — https://commit.show
- Source — https://github.com/commitshow/cli
- Issues — https://github.com/commitshow/cli/issues
- The platform repo — https://github.com/commitshow/commitshow
Built one repo at a time. commit.show
MIT © 2026 commit.show