Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Claude CodeDeclared
CursorNot declared
CodexNot declared
GitHub CopilotNot declared
WindsurfNot declared
Gemini CLINot declared
ClineNot declared
OpenCodeNot declared
Skill metadata
Parsed from SKILL.md frontmatter.
Version1.14.0
LicenseMIT
CompatibilityDesigned for Claude Code
Allowed toolsRead, Grep, Bash(curl:*)
Declared agentsclaude-code
Package contents
Files included with this skill beyond the listing page.
skill mdSKILL.md8,647 B
docsSUMMARY.md325 B
History
First recorded snapshot · 0 installs
SKILL.md
Replit Production Checklist
Overview
Build a release receipt before publishing and verify the stable public URL afterward. The checklist avoids assuming that Preview state, development Secrets, local files, or a saved deployment template automatically become production state.
Prerequisites
Publishing access plus an owner-approved access policy, deployment type, region, machine limits, and cost boundary.
A source revision that passes the main user journey in Preview.
Named production configuration variables, auth environment, data stores, migrations, and recovery owner.
The exact generated replit.app origin. Review custom domains separately.
A tested rollback or fix-forward plan that does not assume application recovery reverses database changes.
Instructions
Step 1 — Review the release boundary
Use Read to inspect the declared configuration and release inputs, and Grep to locate relevant auth, storage, callback, health, and Secret-name call sites without printing values.
Record source revision, build/run commands, migration version, deployment type, and release owner.
Confirm changes were tested in Preview and identify what must be retested at the published URL.
Remove private test data, local-only assumptions, and unneeded generated files from the release.
Confirm Publish/Republish is the only action that promotes the new version.
Step 2 — Confirm deployment and ports
Select Autoscale for variable request traffic, Reserved VM for continuously available compute, Static only for client-only assets, or Scheduled for timetable-driven work.
Record current region, machine power, maximum machine count where applicable, and cost owner.
Ensure a web server stays running and listens on 0.0.0.0.
If .replit declares [[ports]], map the intended localPort to externalPort = 80.
Do not copy an old deploymentTarget value into a new app without confirming the current UI/documentation.
Step 3 — Verify production Secrets and access
Review security in the Publish dialog.
Select Public, Password protected, Workspace only, or Invite only intentionally.
Do not rely on automatic Secret carry-over. In Publishing, verify every required deployment Secret and environment variable by name, and add, link, or override it as the live pane requires; never display values.
Link account-level Secrets explicitly when used.
Confirm no server credential is bundled into browser JavaScript, Static assets, logs, or health output.
Step 4 — Verify auth and tenant isolation
Confirm Replit Auth or Clerk Auth is provisioned for the intended environment.
Verify sessions server-side and enforce authorization separately.
Test with two users; each must see only records and objects they own.
Confirm production callback URLs, cookie attributes, sign-out, and unauthenticated behavior.
Step 5 — Verify durable data
Use Replit Database for structured relational data and App Storage for files/objects.
Confirm the published app does not rely on local files surviving a release.
Apply a reviewed, reversible or backward-compatible migration plan.
Confirm backups and restore evidence through the data-store-specific process.
Never disable TLS certificate verification as a connectivity shortcut.
Step 6 — Expose minimal health and errors
The public liveness response should be fast and coarse:
A release receipt should identify the source revision, deployment type, access policy, production configuration names, migration, public checks, owner, and recovery path. Store links to restricted evidence instead of raw logs.
Output
Return a pass/fail/blocked checklist plus an immutable release receipt. Every blocked item must name the missing evidence or owner decision. Do not declare production-ready while access, auth isolation, data durability, public verification, monitoring, or recovery remains unproven.
Error Handling
If Preview fails, stop before publishing and diagnose the application first.
If production Secrets or access settings are uncertain, block the release rather than printing or guessing them.
If the published health check is non-2xx or malformed, preserve the failed release evidence and use the approved recovery path.
If monitoring shows elevated errors or resource saturation, stop promotion and involve the cost/availability owner before resizing.
If a migration failure may have changed data, freeze further migrations and follow the database recovery plan.