Docs

Common Workflows

Pick the smallest workflow that answers the release question: check, audit, compare, plan, or generated coverage where supported.

Check A Native HTTP Target

evidpath check-target --domain recommender \
  --target-url http://127.0.0.1:8051

evidpath check-target --domain search \
  --target-url http://127.0.0.1:8051

Inspect One Concrete Run

evidpath audit --domain search \
  --target-url http://127.0.0.1:8051 \
  --scenario ambiguous-query \
  --output-dir ./search-audit

Decide Whether A Candidate Is Safer

evidpath compare --domain agents \
  --baseline-driver-config-path ./baseline.json \
  --candidate-driver-config-path ./candidate.json \
  --scenario current-info-tool-use \
  --rerun-count 2 \
  --output-dir ./agent-compare

Generate A Recommender Swarm

Use run-swarm after the basic workflow is clear. This generated-coverage path is currently strongest for recommender testing.

evidpath run-swarm --domain recommender \
  --target-url http://127.0.0.1:8051 \
  --brief "test trust collapse and weak first-slate behavior"