Skip to content

Crew Workflows

The Crew system orchestrates 10 specialized AI agents for deep test analysis. Three preset workflows control how many agents run and what artifacts they produce.

Workflows at a Glance

WorkflowAgentsCostTimeOutput
quick-check4 (understand + strategize)~$0.10~1 minStrategy recommendations
design-only6 (+ design phase)$0.50-2.005-40 minStructured test designs
full-qa10 (+ generate, execute, heal)$2-510-60 minGenerated and healed specs

quick-check

Best for PR triage. Runs impact analysis, cross-impact detection, regression risk scoring, and strategy recommendations. No test code is generated.

Terminal window
npx impact-gate crew --workflow quick-check \
--path . --tests-root ./e2e-tests --since origin/main

design-only

Adds structured test case design on top of quick-check. Produces TestCase[] objects with preconditions, steps, expected outcomes, and rationale. Useful for handing off to human test authors or reviewing AI-suggested coverage.

Terminal window
npx impact-gate crew --workflow design-only \
--path . --tests-root ./e2e-tests --since origin/main

full-qa

End-to-end: designs tests, generates Playwright specs, executes them, and heals any failures. Use this when you want the tool to produce runnable test code.

Terminal window
npx impact-gate crew --workflow full-qa \
--path . --tests-root ./e2e-tests --since origin/main

Common Options

Terminal window
# Cap spending
--budget-usd 2.00
# JSON output for CI parsing
--json
# Preview without LLM calls
--dry-run
# View cost breakdown after a run
npx impact-gate cost-report --path .

When to Use Each

  • PR review gate: quick-check — fast, cheap, gives strategy guidance
  • Sprint planning: design-only — structured test cases for the team to review
  • Automated test creation: full-qa — generates and validates runnable specs