Docs

Plan-First Runs

Plan-first workflows create a durable run_plan.json before execution. Use this when review, approval, or reproducible handoff matters.

Plan An Audit

evidpath plan-run --workflow audit \
  --domain search \
  --target-url http://127.0.0.1:8051 \
  --scenario time-sensitive-query \
  --output-dir ./planned-search-audit

Execute The Plan

evidpath execute-plan \
  --run-plan-path ./planned-search-audit/run_plan.json

When To Use It

  • You want a stable run plan checked into a review packet.
  • You want to separate coverage planning from execution.
  • You want another person or system to execute the exact same workflow later.