From shipshitdev-library
Audits application production readiness by inspecting code, CI, config, migrations, runtime checks, observability, and deployment paths. Use before launch or after risky merges.
How this skill is triggered — by the user, by Claude, or both
Slash command
/shipshitdev-library:production-auditThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Assess whether an application is safe to ship by inspecting the release surface and naming production risks.
Assess whether an application is safe to ship by inspecting the release surface and naming production risks.
Inputs:
Outputs:
Creates/Modifies:
External Side Effects:
Confirmation Required:
Delegates To:
security-audit for application security findingsdeploy or deployment-patterns for release mechanicsrelease-pr-gates for GitHub release promotionplaywright-e2e-init or e2e-testing for missing launch-critical browser coverageNot a compliance, legal, financial, medical, or security certification — engineering release triage only.
Start with cheap local evidence:
git status --short --branch
git log --oneline --decorate -20
git diff --stat origin/main...HEAD
Then inspect the surfaces that actually exist:
Do not call a release healthy just because CI is green.
Use scores to force prioritization:
| Score | Verdict |
|---|---|
| 0-49 | Blocked: do not ship until blockers are fixed |
| 50-69 | Risky: internal beta or small rollout only |
| 70-84 | Launchable with caveats: ship if owners accept named risks |
| 85-100 | Strong: no obvious launch blockers from available evidence |
Cap at 69 if any are true:
Cap at 84 if CI is not green or the launch-critical path was not tested end
to end.
Lead with one sentence:
Production audit: 76/100, launchable with caveats, with webhook idempotency and rollback docs as the two risks to fix before public launch.
Then list:
Blockers: must-fix items before deployHigh-value fixes: next improvements by impactEvidence checked: files, commands, CI, URLs, or PRs inspectedEvidence missing: what would change confidenceNext action: one concrete fix or verification stepIf no blockers are found, still state the evidence boundary.
npx claudepluginhub shipshitdev/skills --plugin worktreeAudits production readiness from local evidence: reviews code, config, CI, migrations, auth, and deployment for pre-launch, post-merge, or ship-risk questions.
Audits production readiness using local evidence: runtime, auth, data, payments, background tasks, AI, and deployment boundaries. For pre-release, post-merge, or 'what will break in production?' questions.
Audits a shipped repo for production-readiness gaps: RLS, webhooks, secrets, grants, Stripe idempotency, mobile UX, deployment health. Run post-merge / pre-ship for deployed apps.