Skip to content

Aphelion Wiki

Language: English | 日本語 Last updated: 2026-04-18 Audience: All users

Welcome to the Aphelion Wiki — the detailed reference for the Aphelion multi-platform AI coding agent workflow.

Not sure where to start?Getting Started


Aphelion’s README covers the quick start and an overview. This wiki provides the in-depth reference material that the README intentionally omits:

READMEWiki
Project overview and motivationArchitecture: 3-domain model and session isolation
Quick Start commandsGetting Started: per-platform setup, scenarios, troubleshooting
Triage plan table (summary)Triage System: selection logic, conditions, and agent matrices
Agent list (names only)Agents Reference: all 27 agents with inputs, outputs, and NEXT conditions
Rules Reference: 9 behavior rules with scope and customization notes
Platform comparison tablePlatform Guide: generation pipeline, constraints, and deployment
Contributing: how to add agents, rules, and platforms

PageDescriptionPrimary Audience
Getting StartedPlatform-specific setup, first run, usage scenarios, command referenceNew users
Architecture3-domain model, handoff files, session isolation, AGENT_RESULT protocolAgent developers
Triage System4-tier plan selection logic, per-domain agent matrices, mandatory agentsAll users
Agents ReferenceAll 27 agents: responsibility, inputs, outputs, NEXT conditionsAgent developers
Rules ReferenceAll 9 behavior rules: scope, auto-load, interactionsAgent developers
Platform GuideClaude Code / Copilot / Codex differences, generate.mjs pipelinePlatform porters
ContributingAdding agents, rules, platforms; bilingual sync workflowAgent developers

”I want to use Aphelion for the first time”

Section titled “”I want to use Aphelion for the first time””
  1. Read Getting Started — Quick Start for your platform
  2. Run /discovery-flow (or /pm if requirements are already clear)
  3. Read Triage System to understand which agents will be launched

”I want to understand how Aphelion works internally”

Section titled “”I want to understand how Aphelion works internally””
  1. Read Architecture — domain model and handoff mechanism
  2. Read Agents Reference — each agent’s responsibility and connections
  3. Read Rules Reference — behavioral constraints applied to all agents
  1. Read Contributing — file templates and AGENT_RESULT contract
  2. Read Architecture — understand where the new agent fits
  3. Read Rules Reference — understand which rules apply automatically

”I want to use Aphelion on GitHub Copilot or OpenAI Codex”

Section titled “”I want to use Aphelion on GitHub Copilot or OpenAI Codex””
  1. Read Platform Guide — capability differences and limitations
  2. Read Getting Started — platform-specific Quick Start

TermDefinition
DomainOne of the three top-level workflow scopes: Discovery, Delivery, Operations
Flow orchestratorAn agent that manages an entire domain (discovery-flow, delivery-flow, operations-flow)
TriageThe process of assessing project scale at flow start and selecting a plan tier
PlanOne of four execution tiers: Minimal / Light / Standard / Full
Handoff fileA .md file used to pass information between domains (DISCOVERY_RESULT.md, DELIVERY_RESULT.md)
AGENT_RESULTThe structured output block every agent emits upon completion
NEXTThe field in AGENT_RESULT that specifies which agent runs next
STATUSThe completion status field: success / error / failure / suspended / blocked
blockedSTATUS used when an agent cannot continue due to design ambiguity
Canonical source.claude/ — the authoritative definition files for Claude Code
PRODUCT_TYPEClassification of the project artifact: service / tool / library / cli
HAS_UIWhether the project includes a user interface (affects which agents run)
Auto-approve modeMode activated by .aphelion-auto-approve file; skips approval gates for automated evaluation