Audit full
Production-grade Claude Code skills for shipping quality code. One command takes your branch from "done coding" to PR-ready via audit → review → docs → push.
npx -y skills add cloverink/shipwright --skill audit-fullAssembled 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.
What its author says it does
Copied from the file, not written here
Branch-aware audit orchestrator. On main — scans whole project, opens tracker issue. On feature branch — scopes to diff, auto-fixes, stages changes.
SKILL.md
2.2 KB, as published. Nobody here has run it
/audit-full
Smart audit that changes behavior based on where you are.
Branch-Aware Modes
| Branch | Mode | Behavior |
|---|---|---|
main | Standalone | Scan whole project → open ONE consolidated GitHub issue |
feat/*, fix/* | In-ticket | Scope to diff vs main → auto-fix → stage changes (no commit) |
The skill detects your branch automatically. No flags needed.
What it audits
Orchestrates three audit passes in sequence:
- Config audit — project configuration health (only runs if config files changed)
- Code audit — code smells, dead code, magic values, complexity, Big-O
- Test audit — slow tests, inline mocks, missing edge cases, optimization opportunities
Priority System
Issues found are classified:
| Priority | Meaning | Auto-fixed? |
|---|---|---|
| P0 (Critical) | Security, data loss | Yes |
| P1 (Major) | Bugs, perf regression | Yes |
| P2 (Warning) | Convention violations | Yes |
| P3 (Suggestion) | Style, naming nits | No — user decides |
In-ticket mode auto-fixes P0-P2. Standalone mode reports all issues in the tracker issue for human triage.
Standalone Mode (on main)
1. Scan full project
2. Group findings by module/area
3. Open ONE GitHub issue with all findings
4. Title: "Audit: <date> — <N> findings across <M> areas"
Why one issue? Avoid GitHub spam. One consolidated tracker is easier to triage than 20 tiny issues.
In-Ticket Mode (on feature branch)
1. git diff origin/main...HEAD → changed files only
2. Run audit passes on changed files
3. Auto-fix P0-P2
4. Stage fixes (git add) — do NOT commit
5. Report what was fixed and what needs manual attention
No commit because /ship handles commits per-phase. The staged changes become part of Phase A's commit.
Usage
/audit-full # Auto-detect mode from current branch