Skip to content
Coding-Autopilot-System CI edited this page May 27, 2026 · 2 revisions

autopilot-core

Org-level AI autopilot operator for the Coding-Autopilot-System organization. Scans GitHub issues labeled autofix + queued, runs Codex to generate targeted code fixes, and opens pull requests automatically.

Quick navigation

Page Description
Setup Guide Prerequisites, configuration, first run
Architecture System design, workflows, data flow
Configuration Reference Org variables, secrets, labels

How it works

  1. A CI failure triggers autopilot-create-issue.yml in the failing repo, creating an issue labeled autofix + queued.
  2. autopilot-operator.yml runs on schedule on a self-hosted Windows runner, scanning for labeled issues.
  3. For each eligible issue, the operator runs Codex to generate a fix.
  4. The fix is committed and a pull request is opened in the target repo.
  5. autopilot-org-installer.yml installs the intake workflow into opted-in repos org-wide.

Safety guardrails

  • Scope-limited: acts only on autofix + queued issues
  • Skips risky and needs-design labeled issues
  • Minimal diffs, no secrets, no destructive operations
  • Best-effort verification before PR creation

Resources

Clone this wiki locally