bundles/dev-workflow/skills/production-audit/SKILL.md
Audit an application for production readiness using local evidence from code, CI, config, migrations, runtime checks, observability, and deployment paths. Use before launch, after risky merges, or when asked whether an app is ready to ship.
npx skillsauth add shipshitdev/library production-auditInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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-composer for release mechanicsrelease-pr-gates for GitHub release promotionplaywright-e2e-init for missing launch-critical browser coverage; test-runner for existing testsNot 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.
development
Coordinates a weekly engineering review of board accuracy, recent code changes, operational health, and scoped cleanup. Use for a recurring repository health review or a review of the last several days.
testing
Audits project board configuration and prepares explicitly requested setup, copy, or normalization changes while preserving the existing workflow and provider boundaries. Use when inspecting a board's fields, columns, scope, or configuration.
testing
Reconciles a project board with current work and delivery evidence, reports incomplete coverage and metadata gaps, and applies only approved provider-supported field changes. Use when auditing board drift, reviewing blocked work, or assessing upcoming delivery.
development
Walk through how a subsystem works. Use for "how does X work", code walkthroughs before changing something, and placement or ownership questions. Explains architecture, runtime flow, and onboarding mental models. Can critique architecture. Use why for motivation.