What problem does it solve? Local in-process tests cannot confirm that a FastEdge WASM app actually behaves correctly once deployed to real edge infrastructure. This Skill closes that gap by deploying the app, wiring it to a live test target, and running HTTP-level assertions against real edge traffic. ## Core Features & Use Cases - End-to-end live verification: Builds and deploys the app, enables debug mode or attaches a CDN rule, then runs each fixtures/*.test.json scenario against the deployed app with status, header, body, JSON, and log assertions. - Automatic env synchronization: Syncs .env* files from the fixtures directory (or a --from variant directory) to the deployed app so env-driven apps work on the edge without manual configuration. - Assertion inference and diagnostics: The --infer flag auto-authors .live.json assertion drafts from source code, and a Rust stderr-logging scan diagnoses empty log queries caused by eprintln!-style writes. - Use Case: After local tests pass on a proxy-wasm CDN filter, run live-test to attach the app to a preconfigured CDN resource at /livetest-<app-name>/, wait for rule propagation, and get a per-scenario pass/fail report scoped by each request's traceparent. ## Quick Start Run the live-test skill against my FastEdge project directory with --infer to generate missing assertion files and verify the deployed app on the edge.