Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add kok-o/koko-contextos-agents --skill subagent-orchestratorgit clone --depth 1 https://github.com/kok-o/koko-contextos-agentsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/kok-o/koko-contextos-agents/subagent-orchestrator)<a href="https://agentmods.dev/skills/kok-o/koko-contextos-agents/subagent-orchestrator"><img src="https://agentmods.dev/badge/skills/kok-o/koko-contextos-agents/subagent-orchestrator/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/kok-o/koko-contextos-agents/subagent-orchestrator"><img src="https://agentmods.dev/badge/skills/kok-o/koko-contextos-agents/subagent-orchestrator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00033 | $0.00845 |
| Opus 5 | $0.00016 | $0.00423 |
| Sonnet 5 | $0.00007 | $0.00169 |
| Haiku 4.5 | $0.00003 | $0.00085 |
Grade A, and why
subagent-orchestrator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 101 lines — stays where its author put it; the contents beside it link to each section on GitHub.
subagent-orchestrator
Overview
Multi-agent coordination protocol inspired by obra/superpowers. Enables a primary orchestrating agent to decompose complex workflows into isolated, parallel sub-tasks, delegate them with precise context boundaries, monitor execution, and synthesize outputs with zero merge conflicts.
When to Use
Activate whenever:
- A task can be parallelized across distinct modules, services, or test suites.
- Long-running exploratory research or multi-file refactoring exceeds single-context budget.
- Running autonomous subagent workers for specialized roles (e.g. specialized QA tester, Security auditor, Docs generator).
Rules & Patterns
1. The Blast Radius Boundary Rule
Before delegating any subagent task:
- Zero File Overlap: Each subagent MUST have a mutually exclusive list of target files. Two subagents must never be instructed to edit the same file concurrently.
- Explicit Inputs & Outputs: Provide only the minimal schema, contract, or mock that the subagent needs. Do not dump the entire workspace into subagent prompts.
2. The 4-Step Delegation Lifecycle
[ Orchestrator ]
│
├─▶ 1. DECOMPOSE: Break into orthogonal tasks with non-overlapping file sets
│
├─▶ 2. DISPATCH: Launch subagent with precise goal, constraints, and finish criteria
│
├─▶ 3. AWAIT & VERIFY: Validate subagent output against its individual quality gate
│
└─▶ 4. SYNTHESIZE: Merge subagent results into the main branch and run global regression suite
3. Context Hand-off Specification
Every subagent dispatch prompt must contain:
- Target Objective: Single, verifiable deliverable.
- Read-Only Context: Files to consult as reference without modifying.
- Write Scope: Exact file paths the subagent is permitted to create or modify.
- Completion Signal: Explicit instruction to report
DONEwith test evidence orBLOCKEDwith reason.
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 101 lines · 33 tokens per session scan A 635f9268f5fe
subagent-orchestrator is a skill published in the GitHub repository kok-o/koko-contextos-agents (2 stars, last pushed 7d ago), licensed MIT. It adds 33 tokens to every session and 845 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.
Other skills, from other repositories
karpathy-coding-principles
Use when andrej Karpathy's 4 coding principles — think before coding, simplicity first, surgical changes, goal-driven execution. Use when coding, reviewing code quality, reducing overengineering,.
universal-patterns
Use when implementing language-agnostic patterns like layered architecture, dependency injection, error handling, or code organization principles across any technology stack.
rust-best-practices
Comprehensive Rust best practices covering ownership, error handling, async patterns, testing, and project structure.
cache_patterns
Instruction set for enabling and operating the Spring Cache abstraction in Spring Boot when implementing application-level caching for performance-sensitive workloads.
event_driven
Structure systems around asynchronous, event-based communication to decouple producers and consumers for improved scalability and resilience. Use when building loosely coupled systems with asynchronous message-based communication.
clean-code
Pragmatic coding standards - concise, direct, no over-engineering, no unnecessary comments.