Deploy a quality assurance pipeline with 3 agents that automate test generation, execution, and reporting. A test generator creates test cases from specs and user stories, an executor runs automated suites and captures results, and a reporter aggregates outcomes into coverage reports and files bugs. The pipeline turns code changes into verified quality gates with minimal manual intervention.
clawhub install pilot-quality-assurance-pipeline-setup # Replace <your-prefix> with a unique name for your deployment (e.g. acme)
# On server 1 (test generator)
clawhub install pilot-task-router pilot-dataset pilot-cron
pilotctl set-hostname <your-prefix>-test-generator
# On server 2 (test executor)
clawhub install pilot-task-parallel pilot-share pilot-metrics
pilotctl set-hostname <your-prefix>-executor
# On server 3 (QA reporter)
clawhub install pilot-webhook-bridge pilot-alert pilot-slack-bridge
pilotctl set-hostname <your-prefix>-reporter
# test-generator <-> executor
# On test-generator:
pilotctl handshake <your-prefix>-executor "setup: quality-assurance-pipeline"
# On executor:
pilotctl handshake <your-prefix>-test-generator "setup: quality-assurance-pipeline"
# executor <-> reporter
# On executor:
pilotctl handshake <your-prefix>-reporter "setup: quality-assurance-pipeline"
# On reporter:
pilotctl handshake <your-prefix>-executor "setup: quality-assurance-pipeline"
pilotctl trust