← ClaudeAtlas

smokelisted

Runs production smoke tests to verify the deployed application works correctly in the live environment. This skill should be used when the user asks to "run production smoke tests", "verify the production deployment", "smoke test the live app", "check if production is working", "run post-deployment verification", "run stage 7V", or "verify the deployed application", or when the transmute-pipeline agent reaches Stage 7V of the pipeline.
masterleopold/transmute-framework · ★ 4 · AI & Automation · score 80
Install: claude install-skill masterleopold/transmute-framework
# Production Smoke Verification — Stage 7V Read the detailed guide at `${CLAUDE_SKILL_ROOT}/references/smoke-detailed-guide.md` for the full verification checklist, report template, known failure patterns, and rollback guidance. Read `${CLAUDE_SKILL_ROOT}/references/feature-scenario-generation.md` for the scenario generation algorithm. ## Prerequisites 1. Verify the production URL is accessible and responding. Check with `curl -sI <production-url> | head -1` (expect HTTP 200 or 301/302). If unreachable, STOP and verify deployment status. 2. Check `./plancasting/_launch/readiness-report.md` exists. If it shows FAIL, stop and report the blocker. If READY or CONDITIONAL PASS with documented minor issues, proceed. If it does not exist, proceed but note in the report: "Stage 6H pre-launch verification was not completed." 3. If 6R was run, verify `./plancasting/_audits/runtime-remediation/report.md` shows PASS or CONDITIONAL PASS. If FAIL, STOP — 6R must pass before Stage 7. 4. Verify `./plancasting/_audits/visual-verification/report.md` or `./plancasting/_audits/visual-polish/report.md` exists. Warn if neither is found. 5. Verify scenario generation file exists: `./plancasting/transmute-framework/feature_scenario_generation.md`. If missing, copy from the Transmute Framework Template directory. See CLAUDE.md § "Pre-6V Setup" for copy instructions. 6. Create output directories: ```bash mkdir -p ./plancasting/_audits/production-smoke mkdir -p ./screenshots/production `