Production Audit
Use this skill when the user asks whether an application is ready to ship, what
could break in production, or what must be fixed before a launch. This is a
maintainer-safe rewrite of the stale community production-audit idea: it keeps
the useful production-readiness lens and removes unpinned external execution and
third-party data sharing.
When to Use
- The user asks "is this production-ready", "what would break in prod", "what
did we miss", "audit this repo", or "ready to ship?"
- A feature was merged and needs a pre-deploy or post-merge risk pass.
- A public launch, demo, customer rollout, or investor walkthrough is close.
- CI is green but the user wants production risk, not only test status.
- A deployed URL, release branch, PR, or current checkout is available for
evidence gathering.
When Not to Use
- During active implementation when the right lens is line-level secure coding;
use
security-review first.
- For pure libraries, templates, docs-only repos, or scaffolds unless the user
wants packaging/release readiness rather than application readiness.
- When the user asks for a formal compliance audit. This skill is engineering
triage, not legal, financial, medical, or regulatory certification.
- When the only available evidence is a product idea with no repo, deployment,
CI, or runtime surface.
How It Works
Build the audit from local and user-authorized evidence. Do not run unpinned
remote code, upload repository contents to third-party services, or call
external scanners unless the user explicitly approves that specific tool and
data flow.
Use this order:
- Establish the release surface.
- Read recent changes and current branch state.
- Inspect runtime, auth, data, payment, background-job, AI, and deployment
boundaries that actually exist in the repo.
- Check CI, tests, migrations, enprojectnment documentation, and rollback path.
- Produce a short ship/block recommendation with specific fixes.
Evidence Checklist
Start with cheap, local signals:
git status --short --branch
git log --oneline --decorate -20
git diff --stat origin/main...HEAD
Then inspect the project-specific surface:
- Package scripts, CI workflows, release scripts, Docker files, and deployment
manifests.
- API routes, webhooks, auth middleware, background workers, cron jobs, and
database migrations.
- Enprojectnment variable documentation and startup checks.
- Observability hooks, error reporting, logs, health checks, and dashboards.
- Rollback, seed, migration, and backfill instructions.
- E2E coverage for the user paths that matter most.
If a deployed URL is in scope, use browser or HTTP checks only against that URL
and avoid credentialed actions unless the user supplies a safe test account.
Risk Lenses
Security And Auth
- Are public routes, API routes, and admin routes clearly separated?
- Are auth and authorization enforced server-side?
- Are secrets kept out of client bundles, logs, example output, and checked-in
files?
- Are rate limits, CSRF protections, CORS policy, and upload validation present
where the app needs them?
- Does the AI or agent surface defend against prompt injection, tool abuse, and
untrusted content crossing into privileged actions?
Data Integrity
- Do migrations run forward cleanly and have a rollback or recovery plan?
- Are destructive migrations, backfills, and data imports staged safely?
- Do database policies, grants, and service-role boundaries match the app's
tenancy model?
- Are retries idempotent for writes, jobs, and webhook handlers?
Payments And Webhooks
- Are webhook signatures verified before parsing trusted payload fields?
- Is each payment, subscription, or fulfillment webhook idempotent?
- Are replay, duplicate delivery, and out-of-order delivery handled?
- Are test-mode and live-mode credentials separated?
Operations
- Can the app start from a clean checkout using documented commands?
- Are required enprojectnment variables named, validated, and fail-fast?
- Is there a health check that proves dependencies are reachable?
- Are deploy, rollback, and incident-owner paths documented?
- Are logs useful without leaking secrets or personal data?
User Experience
- Are the launch-critical paths covered on desktop and mobile?
- Are forms usable on mobile without input zoom, layout overlap, or blocked
submission states?
- Do loading, empty, error, and permission-denied states tell the user what
happened?
- Is there a support or recovery path when a critical operation fails?
Scoring
Use scores to force prioritization, not to imply mathematical certainty.
| Band |
Score |
Meaning |
| Blocked |
0-49 |
Do not ship until the top risks are fixed |
| Risky |
50-69 |
Ship only behind a small rollout or internal beta |
| Launchable With Caveats |
70-84 |
Ship if owners accept the listed risks |
| Strong |
85-100 |
No obvious launch blockers from available evidence |
Cap the score at 69 if any of these are true:
- Authentication or authorization is missing on sensitive data.
- Payment or fulfillment webhooks are not idempotent.
- Required migrations cannot be run safely.
- Secrets are exposed in client bundles, logs, or committed files.
- There is no rollback path for a high-impact release.
Cap the score at 84 if CI is not green or the launch-critical path was not
tested end to end.
Output Format
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 deploy.
High-value fixes: next fixes if the user wants to improve the score.
Evidence checked: files, commands, CI, deployed URL, or PRs inspected.
Evidence missing: what would change confidence if provided.
Next action: one concrete fix or verification step.
Keep strengths short. The user asked for readiness, so the useful answer is the
remaining risk and the next action.
Example
User:
is this ready to ship?
Response:
Production audit: 68/100, risky, because Stripe webhooks are verified but not idempotent and there is no rollback note for the pending migration.
Blockers:
- Add idempotency for `checkout.session.completed` before fulfilling orders.
- Write and test the rollback path for `20260511_add_billing_state.sql`.
High-value fixes:
- Add a health check that verifies database and payment-provider reachability.
- Add one E2E path for upgrade, webhook fulfillment, and billing-page refresh.
Evidence checked:
- `api/stripe/webhook.ts`
- `db/migrations/20260511_add_billing_state.sql`
- GitHub Actions run for the release branch
Next action: Want me to patch webhook idempotency first?
Anti-Patterns
- Running
npx <package>@latest or a remote scanner as the default audit path.
- Uploading source, secrets, customer data, or private topology to an external
audit service without explicit approval.
- Producing a score without naming the evidence checked.
- Treating green CI as production readiness.
- Ending with a generic "let me know what you want to do."
See Also
- Skill:
security-review
- Skill:
deployment-patterns
- Skill:
e2e-testing
- Skill:
tdd-workflow
- Skill:
verification-loop
1---2name: production-audit-23description: Local-evidence production readiness audit for shipped apps, pre-launch reviews, post-merge checks, and "what breaks in prod?" questions without sending repo data to an external audit service.4---5
6# Production Audit
7
8Use this skill when the user asks whether an application is ready to ship, what
9could break in production, or what must be fixed before a launch. This is a
10maintainer-safe rewrite of the stale community production-audit idea: it keeps
11the useful production-readiness lens and removes unpinned external execution and
12third-party data sharing.
13
14## When to Use
15
16- The user asks "is this production-ready", "what would break in prod", "what
17 did we miss", "audit this repo", or "ready to ship?"
18- A feature was merged and needs a pre-deploy or post-merge risk pass.
19- A public launch, demo, customer rollout, or investor walkthrough is close.
20- CI is green but the user wants production risk, not only test status.
21- A deployed URL, release branch, PR, or current checkout is available for
22 evidence gathering.
23
24## When Not to Use
25
26- During active implementation when the right lens is line-level secure coding;
27 use `security-review` first.
28- For pure libraries, templates, docs-only repos, or scaffolds unless the user
29 wants packaging/release readiness rather than application readiness.
30- When the user asks for a formal compliance audit. This skill is engineering
31 triage, not legal, financial, medical, or regulatory certification.
32- When the only available evidence is a product idea with no repo, deployment,
33 CI, or runtime surface.
34
35## How It Works
36
37Build the audit from local and user-authorized evidence. Do not run unpinned
38remote code, upload repository contents to third-party services, or call
39external scanners unless the user explicitly approves that specific tool and
40data flow.
41
42Use this order:
43
441. Establish the release surface.
452. Read recent changes and current branch state.
463. Inspect runtime, auth, data, payment, background-job, AI, and deployment
47 boundaries that actually exist in the repo.
484. Check CI, tests, migrations, enprojectnment documentation, and rollback path.
495. Produce a short ship/block recommendation with specific fixes.
50
51## Evidence Checklist
52
53Start with cheap, local signals:
54
55```text
56git status --short --branch
57git log --oneline --decorate -20
58git diff --stat origin/main...HEAD
59```
60
61Then inspect the project-specific surface:
62
63- Package scripts, CI workflows, release scripts, Docker files, and deployment
64 manifests.
65- API routes, webhooks, auth middleware, background workers, cron jobs, and
66 database migrations.
67- Enprojectnment variable documentation and startup checks.
68- Observability hooks, error reporting, logs, health checks, and dashboards.
69- Rollback, seed, migration, and backfill instructions.
70- E2E coverage for the user paths that matter most.
71
72If a deployed URL is in scope, use browser or HTTP checks only against that URL
73and avoid credentialed actions unless the user supplies a safe test account.
74
75## Risk Lenses
76
77### Security And Auth
78
79- Are public routes, API routes, and admin routes clearly separated?
80- Are auth and authorization enforced server-side?
81- Are secrets kept out of client bundles, logs, example output, and checked-in
82 files?
83- Are rate limits, CSRF protections, CORS policy, and upload validation present
84 where the app needs them?
85- Does the AI or agent surface defend against prompt injection, tool abuse, and
86 untrusted content crossing into privileged actions?
87
88### Data Integrity
89
90- Do migrations run forward cleanly and have a rollback or recovery plan?
91- Are destructive migrations, backfills, and data imports staged safely?
92- Do database policies, grants, and service-role boundaries match the app's
93 tenancy model?
94- Are retries idempotent for writes, jobs, and webhook handlers?
95
96### Payments And Webhooks
97
98- Are webhook signatures verified before parsing trusted payload fields?
99- Is each payment, subscription, or fulfillment webhook idempotent?
100- Are replay, duplicate delivery, and out-of-order delivery handled?
101- Are test-mode and live-mode credentials separated?
102
103### Operations
104
105- Can the app start from a clean checkout using documented commands?
106- Are required enprojectnment variables named, validated, and fail-fast?
107- Is there a health check that proves dependencies are reachable?
108- Are deploy, rollback, and incident-owner paths documented?
109- Are logs useful without leaking secrets or personal data?
110
111### User Experience
112
113- Are the launch-critical paths covered on desktop and mobile?
114- Are forms usable on mobile without input zoom, layout overlap, or blocked
115 submission states?
116- Do loading, empty, error, and permission-denied states tell the user what
117 happened?
118- Is there a support or recovery path when a critical operation fails?
119
120## Scoring
121
122Use scores to force prioritization, not to imply mathematical certainty.
123
124| Band | Score | Meaning |
125| --- | --- | --- |
126| Blocked | 0-49 | Do not ship until the top risks are fixed |
127| Risky | 50-69 | Ship only behind a small rollout or internal beta |
128| Launchable With Caveats | 70-84 | Ship if owners accept the listed risks |
129| Strong | 85-100 | No obvious launch blockers from available evidence |
130
131Cap the score at `69` if any of these are true:
132
133- Authentication or authorization is missing on sensitive data.
134- Payment or fulfillment webhooks are not idempotent.
135- Required migrations cannot be run safely.
136- Secrets are exposed in client bundles, logs, or committed files.
137- There is no rollback path for a high-impact release.
138
139Cap the score at `84` if CI is not green or the launch-critical path was not
140tested end to end.
141
142## Output Format
143
144Lead with one sentence:
145
146```text
147Production audit: 76/100, launchable with caveats, with webhook idempotency and rollback docs as the two risks to fix before public launch.
148```
149
150Then list:
151
152- `Blockers`: must-fix items before deploy.
153- `High-value fixes`: next fixes if the user wants to improve the score.
154- `Evidence checked`: files, commands, CI, deployed URL, or PRs inspected.
155- `Evidence missing`: what would change confidence if provided.
156- `Next action`: one concrete fix or verification step.
157
158Keep strengths short. The user asked for readiness, so the useful answer is the
159remaining risk and the next action.
160
161## Example
162
163User:
164
165```text
166is this ready to ship?
167```
168
169Response:
170
171```text
172Production audit: 68/100, risky, because Stripe webhooks are verified but not idempotent and there is no rollback note for the pending migration.
173
174Blockers:
175- Add idempotency for `checkout.session.completed` before fulfilling orders.
176- Write and test the rollback path for `20260511_add_billing_state.sql`.
177
178High-value fixes:
179- Add a health check that verifies database and payment-provider reachability.
180- Add one E2E path for upgrade, webhook fulfillment, and billing-page refresh.
181
182Evidence checked:
183- `api/stripe/webhook.ts`
184- `db/migrations/20260511_add_billing_state.sql`
185- GitHub Actions run for the release branch
186
187Next action: Want me to patch webhook idempotency first?
188```
189
190## Anti-Patterns
191
192- Running `npx <package>@latest` or a remote scanner as the default audit path.
193- Uploading source, secrets, customer data, or private topology to an external
194 audit service without explicit approval.
195- Producing a score without naming the evidence checked.
196- Treating green CI as production readiness.
197- Ending with a generic "let me know what you want to do."
198
199## See Also
200
201- Skill: `security-review`
202- Skill: `deployment-patterns`
203- Skill: `e2e-testing`
204- Skill: `tdd-workflow`
205- Skill: `verification-loop`