Demo target for the Coding-Autopilot-System AI repair pipeline — triggers intake workflows when CI fails, demonstrating end-to-end agentic fix from failure detection to pull request.
Part of the Coding-Autopilot-System autonomous CI repair platform. The control plane lives in autopilot-core.
flowchart LR
A[Trigger Demo CI\nworkflow_dispatch] --> B[demo-ci.yml runs\nubuntu-latest]
B --> C{CI result}
C -->|failure| D[autopilot-create-issue.yml\ncreates intake issue]
D --> E[Issue: autofix + queued]
E --> F[autopilot-core operator\npicks up issue]
F --> G[Codex generates fix]
G --> H[Pull Request opened]
- Trigger
Demo CIviaworkflow_dispatchto simulate a CI failure. autopilot-create-issue.ymldetects the failure and creates an issue labeledautofix + queued.- The autopilot-core operator scans for the issue and invokes Codex.
- Codex generates a targeted fix and opens a pull request in this repo.
# Trigger the Demo CI workflow (simulates a failure)
gh workflow run demo-ci.yml -R Coding-Autopilot-System/autopilot-demo
# Watch for the intake issue to be created
gh issue list -R Coding-Autopilot-System/autopilot-demo --label autofix --label queued
# Monitor autopilot-core for the fix PR
gh pr list -R Coding-Autopilot-System/autopilot-demo| Workflow | Purpose |
|---|---|
ci.yml |
Portfolio CI — YAML validation (always passes) |
demo-ci.yml |
Demo trigger — simulates CI activity to test intake flow |
autopilot-create-issue.yml |
Intake — creates autofix+queued issue on workflow failure |
- Wiki — setup guide, architecture, configuration reference
- autopilot-core — operator control plane
- Coding-Autopilot-System org