What problem does it solve? A Salesforce deploy reporting "Succeeded" only proves metadata compiled, not that the feature works. This Skill closes that gap by running a structured post-deploy verification sequence against the real org: deploy result inspection, org Apex tests, anonymous-Apex smoke probes, data and configuration queries, limits checks, and a rollback-versus-forward-fix decision when verification fails. ## Core Features & Use Cases - Deploy and test verification: Reads sf project deploy report/resume results, runs org Apex tests with coverage gates, and interprets component and test failure fields. - Smoke probes and org health: Executes anonymous-Apex probes (schema, permissions, integration, config, write-rollback) with VF_PROBE markers, plus SOQL/Tooling API queries for flows, scheduled jobs, permission sets, custom metadata, limits, and AsyncApexJob failures. - Failure triage and reporting: Provides a rollback vs forward-fix decision tree and writes a machine-readable report at .vibeforce/reports/smoke-<ISO>.json. - Use Case: After a quick deploy of an Order management feature to a sandbox, run the wave-4 sequence to confirm the deploy succeeded, tests pass coverage gates, the smoke probes return VF_PROBE_OK, permission set assignments landed, and no new async job failures exist before marking the story done. ## Quick Start Ask the assistant to verify the last deployment to the vf-int org by running the post-deploy verification sequence and producing the smoke report.