Skip to content

Setup Guide

Coding-Autopilot-System CI edited this page May 27, 2026 · 1 revision

Setup Guide

Prerequisites

  • GitHub CLI (gh) installed and authenticated
  • Access to the Coding-Autopilot-System org
  • autopilot-core operator running with a self-hosted runner

Running the demo

Step 1: Trigger Demo CI

gh workflow run demo-ci.yml -R Coding-Autopilot-System/autopilot-demo

This triggers demo-ci.yml which runs a simulated CI step on ubuntu-latest.

Step 2: Watch for intake issue

After the workflow completes, autopilot-create-issue.yml fires on workflow_run and may create an intake issue:

gh issue list -R Coding-Autopilot-System/autopilot-demo --label autofix --label queued

Step 3: Monitor autopilot-core for the fix

Once the issue is created, autopilot-core will pick it up on its next operator cycle:

gh pr list -R Coding-Autopilot-System/autopilot-demo
gh run list -R Coding-Autopilot-System/autopilot-core --workflow autopilot-operator.yml --limit 5

Labels required in this repo

The intake workflow creates issues with these labels automatically:

  • autofix: marks the issue for automated fix
  • queued: marks the issue as ready for the operator

Create these labels if they do not exist:

gh label create autofix --color 0075ca -R Coding-Autopilot-System/autopilot-demo
gh label create queued --color e4e669 -R Coding-Autopilot-System/autopilot-demo

Clone this wiki locally