Use cases
For QA & testers

Generate a test plan, execute it on the real app, and gate every PR.

Turn a feature into a test plan you review, run it against a live sandbox with video proof, and wire it up so every pull request runs the same checks — failing tests are fed back and fixed automatically.

A test plan generated from the real feature — you review it, then run it.
Execution on a live sandbox with screenshots and video as evidence.
A PR test gate that runs the plan and feeds failures back to be fixed.

One real thread, start to finish

Test plan for checkout with coupon codes
northwind / web
Sandbox live
S
SamPlan

Generate a test plan for checkout with coupon codes — happy path plus the edge cases that bite us.

Checkout · coupon codes
Generated · awaiting review
  • Valid coupon applies the discount to the total
  • Expired coupon is rejected with a clear error
  • Stacking two coupons is prevented
  • Coupon + tax rounds correctly
Ask, plan, or build anything…Auto
On every pull request

Once the plan is wired as a gate, it runs on each PR. A failing case is sent back to be fixed and re-run — no manual smoke test required.

Fix coupon + tax rounding#309
14/14 passed
  1. Test gate ran the coupon plan — 1 case failed

  2. Gently moved rounding after the discount and pushed the fix

  3. Test gate re-ran — 14/14 passed

Today this plays out as separate follow-up runs in the thread.

Setting up an environment on the right branch to repro is slow and flaky.

Test plans live in a doc; nobody executes them consistently.

Manual smoke tests don’t run on every PR, so regressions slip through.

What you can do

Generate test plans

A plan built from the real feature — happy path plus the edge cases.

Execute on the real app

Run the plan on a live sandbox and capture screenshots + video of failures.

Bug or expected?

Settle it from the real code instead of escalating to engineering.

PR test gate

Every PR runs the plan; failing tests are fed back and fixed automatically.

Test plans Live sandbox Browser capture Test gate Auto-fix CI
Gently for every team

Start with questions. Grow into plans, previews, tests, and pull requests when your team is ready.

Request access