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-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.
development
TypeScript refactoring and modernization guidelines from a principal specialist perspective. This skill should be used when refactoring, reviewing, or modernizing TypeScript code to ensure type safety, compiler performance, and idiomatic patterns. Triggers on tasks involving TypeScript type architecture, narrowing, generics, error handling, or migration to modern TypeScript features.
tools
Resolves TypeScript and JavaScript problems across type-level programming, performance, monorepo management, migration, and modern tooling. Invoke when diagnosing "type instantiation excessively deep" errors, migrating JS to TS, configuring strict tsconfig, debugging module resolution, or choosing between Biome/ESLint/Turborepo/Nx.
tools
Turborepo monorepo build system guidance. Triggers on: `turbo.json`, task pipelines, `dependsOn`, caching, remote cache, the `turbo` CLI, `--filter`, `--affected`, CI optimization, environment variables, internal packages, monorepo structure, and package boundaries. Use when the user configures tasks or workflows, creates packages, sets up a monorepo, shares code between apps, runs changed packages, debugs cache behavior, or works in an `apps/` plus `packages/` workspace.
tools
Provides Tailwind CSS v4 performance optimization and best practices guidelines. Triggers when writing, reviewing, or refactoring Tailwind CSS v4 code; when working with Tailwind configuration, @theme directive, utility classes, responsive design, dark mode, container queries, or CSS generation optimization.