smoke

Runs production smoke tests verifying deployed applications against P0 and P1 feature scenarios.

4|Updated Mar 14, 2026
One-click install
npx skills add https://github.com/VoxTechnologies/transmute-framework --skill smoke-voxtechnologies
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: smoke
Source: https://github.com/VoxTechnologies/transmute-framework/tree/main/skills/smoke
Command: npx skills add https://github.com/VoxTechnologies/transmute-framework --skill smoke-voxtechnologies

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Deployments can introduce failures invisible in development, such as misconfigured environment variables, purged CSS classes, wrong backend targets, and stale middleware caches. This Skill verifies the live production application actually works after deployment. ## Core Features & Use Cases - Smoke Scenario Generation: Builds a targeted matrix of up to 15 P0/P1 feature and auth-context scenarios from PRD files or an existing 6V verification matrix. - Infrastructure and Integration Checks: Validates DNS, SSL certificates, security headers, environment variables, AI model IDs, and third-party API health on the live URL. - Gate Decision with Rollback Guidance: Produces a PASS, CONDITIONAL PASS, or FAIL report with a failure escalation protocol and rollback decision tree. - Use Case: After deploying a Next.js app to production, run this Skill to confirm login, dashboard, navigation, and payment integrations work on the live domain before announcing launch. ## Quick Start Ask the agent to run production smoke tests against your deployed URL to verify the live application works correctly.

Frequently Asked Questions about smoke

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run production smoke tests after deployment?

Provide the production URL and ask to run smoke verification. The Skill generates a scenario matrix from your PRD or existing 6V matrix, then executes infrastructure, page load, navigation, and integration checks, producing a gate decision report.

What is the difference between smoke testing and full visual verification?

Smoke testing (Stage 7V) covers only P0/P1 features with a hard cap of 15 scenarios and runs in 25-45 minutes against production. Full verification (Stage 6V) tests all priorities and scenario types against the dev server with up to 150 scenarios.

Does this work with frameworks other than Next.js?

Yes, the verification is stack-agnostic and uses browser and HTTP tools like curl, openssl, and Playwright. It reads plancasting/tech-stack.md to adapt paths and commands to your actual framework and hosting platform.

Why do production deployments fail when dev tests pass?

Common causes include environment variable naming mismatches, backend URLs pointing to dev, Tailwind CSS purging dynamic classes, OAuth redirect URI mismatches, and edge middleware behavior differences. The Skill checks each of these known failure patterns.

What happens when a smoke test fails in production?

Any critical flow failure triggers a FAIL gate decision. Localized issues get a hotfix and redeploy; widespread issues trigger a rollback via git revert. Flaky tests that pass on retry are treated as FAIL because production must be deterministic.