> Use when this capability is needed.
Inspired by oh-my-opencode's three-layer architecture, adapted for OpenClaw's ecosystem.
Traditional AI follows: user asks → AI responds. This fails for complex work because:
This skill solves these through specialization and delegation.
┌─────────────────────────────────────────────────────────┐
│ PLANNING LAYER (Interview + Plan Generation) │
│ • Clarify intent through interview │
│ • Generate structured work plan │
│ • Review plan for gaps │
└─────────────────────────────────────────────────────────┘
↓
┌─────────────────────────────────────────────────────────┐
│ ORCHESTRATION LAYER (Atlas - The Conductor) │
│ • Read plan, delegate tasks │
│ • Accumulate wisdom across tasks │
│ • Verify results independently │
│ • NEVER write code directly — only delegate │
└─────────────────────────────────────────────────────────┘
↓
┌─────────────────────────────────────────────────────────┐
│ EXECUTION LAYER (Sub-agents via sessions_spawn) │
│ • Focused task execution │
│ • Return results + learnings │
│ • Isolated context per task │
└─────────────────────────────────────────────────────────┘
<!-- tomevault:4.0:skill_md:2026-04-08 -->ultrawork / ulwInclude ultrawork or ulw in any prompt to activate full orchestration mode automatically.
The agent figures out the rest — parallel agents, background tasks, deep exploration, and relentless execution until completion.
Before planning, gather clarity through brief interview:
Ask only what's needed:
Interview Style by Intent:
| Intent | Focus | Example Questions |
|---|---|---|
| Refactoring | Safety | "What tests verify current behavior?" |
| Build New | Patterns | "Follow existing conventions or deviate?" |
| Debug/Fix | Reproduction | "Steps to reproduce? Error messages?" |
| Research | Scope | "Depth vs breadth? Time constraints?" |
After interview, generate structured plan:
## Work Plan: [Title]
### Objective
[One sentence, frozen intent]
### Tasks
- [ ] Task 1: [Description]
- Acceptance: [How to verify completion]
- References: [Files, docs, skills needed]
- Category: [quick|general|deep|creative]
- [ ] Task 2: ...
### Guardrails
- MUST: [Required constraints]
- MUST NOT: [Forbidden actions]
### Verification
[How to verify overall completion]
Before execution, validate:
If any check fails, refine plan before proceeding.
The orchestrator:
The orchestrator:
Use sessions_spawn with category-appropriate configuration:
| Category | Use For | Model Hint | Timeout |
|---|---|---|---|
quick | Trivial tasks, single file changes | fast model | 2-5 min |
general | Standard implementation | default | 5-10 min |
deep | Complex logic, architecture | thinking model | 10-20 min |
creative | UI/UX, content generation | creative model | 5-10 min |
research | Docs, codebase exploration | fast + broad | 5 min |
Delegation Template:
sessions_spawn(
label: "task-{n}-{short-desc}",
task: """
## Task
{exact task from plan}
## Expected Outcome
{acceptance criteria}
## Context
{accumulated wisdom from previous tasks}
## Constraints
- MUST: {guardrails}
- MUST NOT: {forbidden actions}
## References
{relevant files, docs}
""",
runTimeoutSeconds: {based on category}
)
Identify independent tasks (no file conflicts, no dependencies) and spawn them simultaneously:
# Tasks 2, 3, 4 have no dependencies
sessions_spawn(label="task-2", task="...")
sessions_spawn(label="task-3", task="...")
sessions_spawn(label="task-4", task="...")
# All run in parallel
After each task completion, extract and record:
## Wisdom Log
### Conventions Discovered
- [Pattern found in codebase]
### Successful Approaches
- [What worked]
### Gotchas
- [Pitfalls to avoid]
### Commands Used
- [Useful commands for similar tasks]
Store in: memory/orchestrator-wisdom.md (append-only during session)
Pass accumulated wisdom to ALL subsequent sub-agents.
NEVER trust sub-agent claims. After each task:
If verification fails:
## Orchestration Complete
### Completed Tasks
- [x] Task 1: {summary}
- [x] Task 2: {summary}
### Learnings
{key wisdom accumulated}
### Files Changed
{list of modified files}
### Next Steps (if any)
{recommendations}
| Class | Description | Action |
|---|---|---|
| A | Irreversible, destructive, or unbounded | HALT immediately |
| B | Bounded, resolvable with clarification | Pause, ask user |
| C | Cosmetic, non-operative | Proceed with note |
User can stop at any time with:
On stop: immediately terminate all spawned sessions, output summary of completed work, await new instructions.
memory/orchestrator-wisdom.md for learningsSimple (magic word):
ulw refactor the authentication module to use JWT
Explicit activation:
activate autonomous-skill-orchestrator
Build a REST API with user registration, login, and profile endpoints
With constraints:
use autonomous-skill-orchestrator
- Build payment integration with Stripe
- MUST: Use existing database patterns
- MUST NOT: Store card numbers locally
- Deadline: Complete core flow only
Converted and distributed by TomeVault Context snippets also available to append to your CLAUDE.md, GEMINI.md, and copilot-instructions.md — download at TomeVault