Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM mcr.microsoft.com/azure-functions/python:4-python3.12

ENV AzureWebJobsScriptRoot=/home/site/wwwroot \
AzureFunctionsJobHost__Logging__Console__IsEnabled=true

COPY requirements.txt /
RUN pip install -r /requirements.txt

COPY . /home/site/wwwroot
18 changes: 18 additions & 0 deletions WIKI/Architecture.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Architecture

Autopilot Core operates as a stateless polling engine managing organizational webhooks.

## Org-Level Invocation Flow

\\\mermaid
graph TD;
GitHub[GitHub Org Webhooks] --> Poller[Issue Poller]
Poller --> Queue[Autofix Task Queue]
Queue --> Dispatcher[Codex Dispatcher]
Dispatcher -->|Delegates to AI| Codex[Codex Agent]
Codex --> GitOps[GitOps Committer]
GitOps -->|Creates PR| GitHub
\\\

## Auto-Scaling
Because it's a stateless control plane, multiple instances of Autopilot-Core can run simultaneously, picking tasks off the queue to achieve massive parallel issue resolution across hundreds of repositories.
6 changes: 6 additions & 0 deletions WIKI/Home.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Autopilot Core Wiki

Welcome to the internal documentation for Autopilot Core.

## Table of Contents
1. [Architecture & Flow](Architecture.md)