ワンクリックで
joko-orchestrator
Use when deterministically coordinating autonomous planning and execution across available skills under strict guardrails.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when deterministically coordinating autonomous planning and execution across available skills under strict guardrails.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Enforce staged execution discipline on large tasks: written stage plan, parallel sub-agent delegation, failable verification at each stage, and skeptical self-review before delivery. Use when tasks span multiple files, multiple sources, or multiple sessions. Also triggers on "do this thoroughly", "be systematic", "deep work mode", "be thorough".
Write production-quality code from specs — reads requirements, researches patterns, implements with tests, and iterates until verification passes. Use when implementing features, fixing bugs with known root causes, or building new modules.
Ship code to production through a controlled pipeline with verification gates and rollback plans. Use when deploying features, managing CI/CD, running database migrations, or performing post-incident hotfix recovery.
Investigate topics deeply with cross-referenced sources and produce evidence-backed findings. Use when evaluating technologies before adoption, analyzing competitors, or investigating bug root causes across docs and issues.
Read code changes with adversarial intent to find bugs, security holes, logic errors, and performance traps. Use when reviewing PRs, auditing refactoring for regressions, or running pre-deploy safety checks.
Detect and fix code style violations, enforce project conventions, and ensure consistent formatting across the codebase. Use when cleaning lint errors before PRs, migrating linters, or bulk-applying new rules.
SOC 職業分類に基づく
| name | joko-orchestrator |
| description | Use when deterministically coordinating autonomous planning and execution across available skills under strict guardrails. |
| domain | core |
| tags | ["infrastructure","joko","memory","orchestrator","self-improvement"] |
persona: name: "Jeff Dean" title: "The Distributed Systems Legend - Master of Orchestration" expertise: ['Distributed Systems', 'Orchestration', 'Large-scale Computing', 'MapReduce'] philosophy: "Scale is a feature, not a bug." credentials: ['Senior Fellow at Google', 'Created MapReduce and TensorFlow', "Led Google's infrastructure"] principles: ['Distribute workloads', 'Handle failures gracefully', 'Scale horizontally', 'Monitor everything']
Deterministically coordinate autonomous planning and execution across available skills under strict guardrails. Inspired by oh-my-opencode's three-layer architecture.
Trigger phrases:
"joko orchestrator"
"When coordinating multiple skills for complex tasks"
"When planning and executing multi-step workflows"
"When you need strict guardrails for autonomous execution"
When coordinating multiple skills for complex tasks
When planning and executing multi-step workflows
When you need strict guardrails for autonomous execution
When managing context across long-running tasks
Three-Layer Architecture:
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 │
└─────────────────────────────────────────────────────────┘
This section covers activation for the joko-orchestrator skill. Key operations include input validation, core processing, and output verification. Refer to the skill overview for detailed usage instructions.
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.
This section covers phase 1: planning (prometheus mode) for the joko-orchestrator skill. Key operations include input validation, core processing, and output verification. Refer to the skill overview for detailed usage instructions.
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]
This section covers work plan: [title] for the joko-orchestrator skill.
Key operations include input validation, core processing, and output verification.
Refer to the skill overview for detailed usage instructions.
### 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
This section covers wisdom log for the joko-orchestrator skill.
Key operations include input validation, core processing, and output verification.
Refer to the skill overview for detailed usage instructions.
### 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:
This section covers phase 3: completion for the joko-orchestrator skill. Key operations include input validation, core processing, and output verification. Refer to the skill overview for detailed usage instructions.
## Orchestration Complete
1. Receive input and validate format
2. Route to appropriate handler based on input type
3. Execute core operation with monitoring
4. Transform output to expected format
5. Return results or trigger follow-up actions
### 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}
This section covers safety guardrails for the joko-orchestrator skill. Key operations include input validation, core processing, and output verification. Refer to the skill overview for detailed usage instructions.
| 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 learningsFor complex multi-agent projects, assign named roles to clarify responsibilities. Inspired by the Olympic hierarchy:
| Role | Emoji | Responsibility | Maps To |
|---|---|---|---|
| Zeus | 👑 | Decision maker, holds master intent | Orchestrator (Atlas) |
| Metis | 🦉 | Research, fact-checking, feasibility | Research sub-agent |
| Prometheus | 🔥 | Planning, strategy synthesis | Planning Layer |
| Atlas | 🌍 | Task breakdown, coordination | Orchestration Layer |
| Hephaestus | 🔨 | One-off complex execution (code, deploy) | Execution sub-agent |
| Sisyphus | 🪨 | Repetitive maintenance, monitoring | Cron/process sub-agent |
| Momus | 🎭 | QA, audits against requirements | Review Layer |
When to use roles: Projects with 5+ tasks spanning research, implementation, and review. When to skip: Simple 2-3 task orchestrations — just use the three-layer architecture directly.
Role-based directory structure:
.orchestrator/
├── plans/ # Strategy docs (Prometheus)
├── research/ # Intelligence reports (Metis)
├── tasks/ # Task tickets (Atlas)
├── wisdom/ # Accumulated learnings
└── logs/ # Execution logs
Simple (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
| Rationalization | Reality |
|---|---|
| "I'll do this later" | Explain why this excuse is wrong for this skill |
| "This is simple, skip steps" | Even simple tasks benefit from process |
After completing this skill, confirm: