A collection of AI coding agent definitions for Claude Code that automates the entire project lifecycle with 42 specialized agents.
Aphelion divides software development into three domains, each managed by an independent flow orchestrator:
flowchart LR
DR["DISCOVERY_RESULT.md"]
DLR["DELIVERY_RESULT.md"]
OPR["OPS_RESULT.md"]
Discovery["Discovery Flow\n(6 agents)"] -->|generates| DR
DR -->|input for| Delivery["Delivery Flow\n(13 agents)"]
Delivery -->|generates| DLR
DLR -->|input for| Ops["Operations Flow\n(4 agents)\nservice only"]
Ops -->|generates| OPR
User approval is required at each phase completion before proceeding. Non-service types (tool / library / cli) skip Operations.
AI coding agents are powerful, but a single agent session struggles with full project lifecycles — context windows overflow, quality gates get skipped, and there's no structured handoff between phases. Aphelion solves this by splitting the lifecycle into isolated domains with specialized agents, mandatory approval gates, and document-driven handoffs that preserve traceability across sessions.
npx github:kirin0198/aphelion-agents init
cd /path/to/your-project && claude
/aphelion-initFor --user install, cache troubleshooting, git-clone alternative, and full usage scenarios,
see Getting Started on the Wiki.
All commands: run /aphelion-help after init, or see Getting Started.
- 3-domain separation — Discovery / Delivery / Operations run in independent sessions to prevent context bloat
- Triage adaptation — Auto-selects Minimal–Full plan based on project scale; no manual configuration
- Approval gates — User approval required at each phase; the agent never runs ahead without consent
- Security mandatory —
security-auditorruns on all plans (OWASP Top 10 + dependency vulnerability scanning) - Document-driven — Domains connected via
.mdhandoff files for full traceability
- Wiki Home (日本語) — full reference, persona-based entry points
- Getting Started — first-run walkthrough, scenarios, troubleshooting
- Architecture: Domain Model — 3-domain model & handoff files
- Triage System — plan tiers & agent selection
- Agents Reference — all 42 agents
MIT