| name | apeiron |
| description | The ONE-COMMAND orchestrator that wires the full delegate-team arsenal for any task in any
project. Use when the user says "use everything you got", "use full engineering
arsenal", "go all-in", "/Apeiron <task>", "/ship <task>", "use all capabilities",
"full stack", "end to end", "everything intelligently". Composes 38 curated
integrations (superpowers, Waza, unslop, autoresearch, agent-kernel, ...) and routes
tasks through 7-stage autopilot chain (PREWARM → BRAINSTORM → PLAN → EXECUTE →
REVIEW → QUALITY-GUARD → REPORT). Auto-discovers 1890+ skills across 3 sources
(apeiron, agents, claude) with intelligent dedupe. Includes apeiron-uni — the
smart universal wrapper that detects the calling runtime (Apeiron / codex / claude /
gemini / opencode / mmx / shell) and dispatches the right flow. Skip this skill
only when the user wants a SPECIFIC tool (e.g. "run /autoresearch with metric X"
or "delegate to aonios-agent").
|
| allowed-tools | ["Bash","Read","Write","Edit","Grep","Glob","TodoWrite","Task","Skill","WebFetch","WebSearch"] |
/Apeiron — the orchestrator
The single switch that exposes the full delegate-team arsenal under one natural-language
command. Type /Apeiron "<task>" and the orchestrator does the rest.
What this skill IS
A bundle that exposes the full Apeiron arsenal under one natural-language command.
Bundles:
orchestrate.py — 47-case routing selftest; routes by task signature to the
right chain (FEATURE / BUG / UI / PERFORMANCE / RESEARCH / TRIVIAL / MULTI-AGENT).
catalog.py — 38 curated integrations + 1890 unique skills auto-discovered
from ~/.apeiron/skills/, ~/.agents/skills/, ~/.claude/skills/ (with dedupe).
autopilot.sh — the GOD command: 7-stage chain (PREWARM → BRAINSTORM with
superpowers + codex gpt-5.5-high → PLAN → EXECUTE → REVIEW → QUALITY-GUARD →
REPORT). Runs in foreground or --background.
apeiron-uni — smart universal wrapper: detects calling runtime and
dispatches the right flow (Apeiron → prewarm; agents → autopilot --background;
shell → autopilot foreground).
Outcome contract
- Outcome: A task entered as natural language → routed through the right stack →
shipped (or audit-blocked if quality gates fail).
- Done when: every stage green OR explicit user override, with evidence at each step.
- Evidence: skill outputs, unslop audit score, autoresearch deltas, code review
findings, quality-guard pass.
- Output: shipped code (or blocked-task report with reasons).
When to use this skill (the DEFAULT)
| User said | Orchestrator does |
|---|
<any task> and they want full leverage | full chain, route by signature |
| "use everything", "all-in", "go crazy" | full chain |
| "I have a feature / bug / perf task" | abbreviated chain based on signature |
<UI task> | unslop audit is BLOCKING (score ≥70) |
<trivial edit> | skip chain, handle locally |
When NOT to use this skill
| User said | Use instead |
|---|
| "run /autoresearch with metric X" | /autoresearch directly |
| "delegate to aonios-agent" | /delegate-team aonios-agent directly |
| "spawn atlas + forge" | /apeiron-team atlas forge directly |
| "explain X to me" | direct answer, no orchestration |
| "research X" | /read + /learn only |
Usage
From any Apeiron session (canonical):
Apeiron "<task>"
From any agent (codex, claude, gemini, opencode, mmx):
apeiron-uni "<task>"
From plain shell:
apeiron-uni "<task>"
Direct (bypass the smart wrapper):
orchestrate.py --prewarm "<task>"
autopilot.sh "<task>"
autopilot.sh "<task>" --background
autopilot.sh --dry-run "<task>"
The 7-layer chain (autopilot.sh)
[Apeiron "<task>"]
│
▼ 1. PREWARM (orchestrate.py + catalog.py)
Detect task signature → load relevant skills → emit manifest JSON
Backend selection: codex (PERFORMANCE), claude (UI), minimax (BUILD/BUG/FEATURE)
│
▼ 2. BRAINSTORM (superpowers:brainstorming + codex gpt-5.5-high)
The mix: superpowers enforces 'no diving into code without a design'.
Codex gpt-5.5-high provides the highest-quality ideation.
│
▼ 3. PLAN (superpowers:writing-plans)
Convert brainstorm into checkpoint-style plan with evidence gates.
│
▼ 4. EXECUTE (delegate-team → backend agent)
Hand off to dt with the brief. Backend writes the code.
│
▼ 5. REVIEW (waza:check)
Project-aware review with evidence. Surface constraints.
│
▼ 6. QUALITY-GUARD (5-layer pre-delivery check)
Layer 1: mechanical (lint/typecheck/test/build)
Layer 2: definition-of-done
Layer 3: security
Layer 4: AI-smells
Layer 5: project-specific
│
▼ 7. REPORT
Markdown report with all evidence + next steps for the user.
Routing intelligence (47 cases, 100% selftest passing)
signature = detect(task)
if is_research:
return ["read", "learn"]
if is_trivial:
return ["local"]
if is_bug:
return ["think", "systematic-debugging", "hunt", "delegate-team", "check"]
if has_metric:
return ["think", "autoresearch:plan", "autoresearch:fix", "autoresearch:regression"]
if is_ui:
return ["think", "unslop", "writing-plans", "delegate-team", "check", "quality-guard"]
return ["think", "writing-plans", "delegate-team", "check", "quality-guard"]
Worked examples
Apeiron "Make API p95 < 200ms"
Apeiron "Build a beautiful settings page with dark mode"
Apeiron "Mobile header wrong on Safari iOS 17"
Apeiron "Build a TypeScript CLI that converts CSV to JSON"
Apeiron "rename getCurrentUser to getActiveUser across src/"
Files in this skill
SKILL.md — this file (skill manifest)
scripts/orchestrate.py — router (47-case selftest, v4.1.0)
scripts/orchestrate.sh — bash wrapper that delegates to orchestrate.py
scripts/catalog.py — 38 integrations + 1890 skills indexer
scripts/.DS_Store, scripts/__pycache__/ — local artifacts (gitignored)
Helper scripts
The apeiron-uni + autopilot.sh scripts are also part of this arsenal but live in
~/delegate-team/bin/ (the central symlink bin). They are installed alongside this
skill by install.sh (the delegate-team installer).
Companion frameworks (lazy-loaded on demand)
| Framework | What it adds | Install via |
|---|
| superpowers | Methodology — brainstorm-first hard gate, TDD, review | bundled |
| Waza | Entry-point skills — /think /check /hunt /ui | bundled |
| unslop-preflight | UI quality gate — 23 gates block generic slop | bundled |
| autoresearch | Metric-driven iteration loop | bundled |
| agent-kernel | Local-first memory + governance layer | bundled |
| delegate-team | The CLI gateway + multi-model router | bundled |
Compatibility
| Agent | Install | Status |
|---|
| Apeiron session | install.sh --all | ✅ canonical |
| Claude Code | npx skills add imMamdouhaboammar/delegate-team | ✅ via ~/.claude/skills/apeiron/ |
| Codex | npx skills add ... | ✅ via ~/.codex/skills/ |
| Cursor | npx skills add ... | ✅ via ~/.agents/skills/ |
| Copilot, Windsurf, OpenCode, 60+ more | npx skills add ... | ✅ via ~/.{tool}/skills/ |
License
MIT — see https://github.com/imMamdouhaboammar/delegate-team
Repository
https://github.com/imMamdouhaboammar/delegate-team/tree/master/apeiron