ワンクリックで
ender
Spawn recursive agent armies — swarms that spawn swarms, sandbox armadas, full lifecycle assault
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Spawn recursive agent armies — swarms that spawn swarms, sandbox armadas, full lifecycle assault
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Full rebuild — tear down broken service, scaffold fresh, migrate data, deploy, verify
Dynamic swarm orchestration — decompose any task into parallel agent waves, execute, merge results
One-command deployment — detect stack, build, ship, verify, report URL
Production incident response — triage, diagnose, fix, restore, document
Generate complete runnable projects from a description — API, CLI, MCP server, full-stack app
Connect any two services — webhooks, MCP tools, API adapters, data pipelines
SOC 職業分類に基づく
| name | ender |
| description | Spawn recursive agent armies — swarms that spawn swarms, sandbox armadas, full lifecycle assault |
| level | 5 |
| triggers | ["ender","army","swarm","send the fleet","all agents"] |
| user-invocable | true |
| pipeline | ["ender (command) → fleets × N (execute) → sandbox-armada (verify) → deployer (ship)"] |
| aliases | ["swarm"] |
Take any mission and throw an army at it. Ender decomposes the mission into fleets, fleets into squads, squads into soldiers. Swarms spawn swarms. Every agent in the harness is a weapon Ender can deploy.
executor api-builder db-engineer scaffolder designer pipeline-builder
deployer firefighter connector monitor
explore architect analyst scientist tracer integrator document-specialist
code-reviewer security-reviewer test-engineer qa-tester verifier critic
debugger code-simplifier git-master writer planner evolve
run_in_background: true)Ender reads the full mission and produces a battle plan:
## Battle Plan: [MISSION NAME]
### Objective
[What must exist when we're done]
### Fleets
1. Fleet Alpha (Build): [what it builds, which agents]
2. Fleet Beta (Test): [what it tests, which agents]
3. Fleet Gamma (Deploy): [where it ships, which agents]
4. Sandbox Armada: [how many sandboxes, which scenarios]
### Dependencies
Alpha must finish before Beta starts.
Beta and Gamma can run in parallel after Alpha.
Sandbox Armada runs after Gamma.
### Estimated Agent Count: [N]
For each fleet, Ender spawns a background agent:
# Simple fleet (single agent type, no sub-decomposition needed)
Agent(
prompt="You are Fleet Commander Alpha. Build [X]. Use executor agents.",
model=sonnet,
run_in_background=true,
isolation=worktree # if writing code
)
# Complex fleet (needs its own decomposition)
Agent(
prompt="You are Fleet Commander Beta. You are a sub-Ender. "
"Decompose this into squads and execute in parallel: [task]. "
"Available agents: [roster]. Report results.",
model=sonnet,
run_in_background=true
)
# Sandbox armada fleet
Agent(
prompt="You are the Sandbox Armada Commander. "
"Create 20 Conway sandboxes via mcp__conway__sandbox_create. "
"Deploy [artifact] to each. Run these scenarios: [list]. "
"Report pass/fail for each. Delete sandboxes when done.",
model=sonnet,
run_in_background=true
)
As fleets report back:
After build + deploy fleets complete, launch the armada:
Pass thresholds:
## Mission Report: [NAME]
### Result: [COMPLETE / PARTIAL / FAILED]
### Fleets
| Fleet | Agents | Duration | Status |
|-------|--------|----------|--------|
| Alpha Build | 8 | 2m | ✓ |
| Beta Test | 5 | 1m | ✓ |
| Sandbox Armada | 20 | 3m | 18/20 ✓ |
| Gamma Deploy | 2 | 45s | ✓ |
### Sandbox Results: 18/20 PASS
[detailed results table]
### Verdict: SHIPPED
URL: https://...
Everything in parallel, merge at the end.
Ender → 10 agents simultaneously → merge → ship
Use when: Tasks are independent. Speed matters most.
Sequential waves, each wave verified before next.
Ender → Build wave → Verify → Test wave → Verify → Deploy wave → Verify
Use when: Dependencies are tight. Correctness matters most.
Multiple approaches in parallel, pick the winner.
Ender → Approach A (3 agents) + Approach B (3 agents) → evaluate → pick winner → ship
Use when: Uncertain which approach is best. Budget for exploration.
Pure sandbox testing — 15-20 environments in parallel.
Ender → 20 sandbox agents → aggregate results → verdict
Use when: Need production confidence. Testing a new agent or service.
Swarms spawning swarms for complex multi-system work.
Ender → Fleet A (sub-ender + 5 agents) + Fleet B (sub-ender + 5 agents) → merge → armada → ship
Use when: Mission is too complex for flat parallelism. Multiple interconnected workstreams.
Fleet Alpha (Build): scaffolder + api-builder + db-engineer (parallel, worktree)
Fleet Beta (Wire): connector (hook up to existing lead pipeline)
Fleet Gamma (Quality): code-reviewer + security-reviewer + test-engineer (parallel)
Sandbox Armada: 20 sandboxes — functional, auth, load, chaos scenarios
Fleet Delta (Deploy): deployer → Conway sandbox with domain
Fleet Epsilon (Monitor): monitor → set up health checks + Telegram alerts
Sandbox Armada only:
20 sandboxes, each with a different broken scenario:
- Sandbox 1: ImportError
- Sandbox 2: TypeError
- Sandbox 3: SyntaxError
- Sandbox 4: Config corruption
- ...
- Sandbox 20: Cascading failure
Each sandbox: deploy auto-fix agent → inject error → verify it fixes it
Aggregate: 17/20 pass → FIX 3 failing scenarios before shipping
The Blitz:
5 executor agents in parallel (worktree isolation each)
Each gets one bug
5 verifier agents in parallel (verify each fix)
git-master merges all worktrees
Sandbox armada: 15 sandboxes running full regression suite