Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Deterministically coordinates autonomous planning and execution across available skills under strict guardrails. Use only when the user explicitly activates this skill by name to run autonomously until a stop command is issued. Trigger keywords include: "use autonomous-skill-orchestrator", "activate autonomous-skill-orchestrator", "start autonomous orchestration".
Deterministically coordinates autonomous planning and execution across available skills under strict guardrails. Use only when the user explicitly activates this skill by name to run autonomously until a stop command is issued. Trigger keywords include: "use autonomous-skill-orchestrator", "activate autonomous-skill-orchestrator", "start autonomous orchestration".
This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.
Use the source page and any available docs to guide the install because the item currently does not return a direct package file.
I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.
I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.
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: Context overload: Large tasks exceed context windows Cognitive drift: AI loses track mid-task Verification gaps: No systematic completeness check Human bottleneck: Requires constant intervention 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 β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
"use autonomous-skill-orchestrator" "activate autonomous-skill-orchestrator" "start autonomous orchestration" "ulw" or "ultrawork" (magic keyword mode)
Include 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: What's the core objective? What are the boundaries (what's NOT in scope)? Any constraints or preferences? How do we know when it's done? Interview Style by Intent: IntentFocusExample QuestionsRefactoringSafety"What tests verify current behavior?"Build NewPatterns"Follow existing conventions or deviate?"Debug/FixReproduction"Steps to reproduce? Error messages?"ResearchScope"Depth vs breadth? Time constraints?"
Before execution, validate: Each task has clear acceptance criteria References are concrete (not vague) No scope creep beyond objective Dependencies between tasks are explicit Guardrails are actionable If any check fails, refine plan before proceeding.
The orchestrator: β CAN read files to understand context β CAN run commands to verify results β CAN search patterns with grep/glob β CAN spawn sub-agents for work The orchestrator: β MUST NOT write/edit code directly β MUST NOT trust sub-agent claims blindly β MUST NOT skip verification
Use sessions_spawn with category-appropriate configuration: CategoryUse ForModel HintTimeoutquickTrivial tasks, single file changesfast model2-5 mingeneralStandard implementationdefault5-10 mindeepComplex logic, architecturethinking model10-20 mincreativeUI/UX, content generationcreative model5-10 minresearchDocs, codebase explorationfast + broad5 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
NEVER trust sub-agent claims. After each task: Read actual changed files Run tests/linting if applicable Verify acceptance criteria independently Cross-reference with plan requirements If verification fails: Log the failure in wisdom Re-delegate with failure context Max 2 retries per task, then escalate to user
All tasks marked complete All acceptance criteria verified No unresolved issues in wisdom log
User issues explicit stop command Irreversible destructive action detected Scope expansion beyond frozen intent 3+ consecutive task failures Sub-agent attempts to spawn further sub-agents (no recursion)
ClassDescriptionActionAIrreversible, destructive, or unboundedHALT immediatelyBBounded, resolvable with clarificationPause, ask userCCosmetic, non-operativeProceed with note
Creating new autonomous orchestrators Modifying this skill file Accessing credentials without explicit need External API calls not in original scope Recursive spawning (sub-agents spawning sub-agents)
User can stop at any time with: "stop" "halt" "cancel orchestration" "abort" On stop: immediately terminate all spawned sessions, output summary of completed work, await new instructions.
Append to memory/orchestrator-wisdom.md for learnings Reference existing memory files for context
Update daily memory with orchestration summary Persist significant learnings to MEMORY.md if valuable
Agent frameworks, memory systems, reasoning layers, and model-native orchestration.
Largest current source with strong distribution and engagement signals.