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 varun29ankuS/shodh-memory --skill orchestrategit clone --depth 1 https://github.com/varun29ankuS/shodh-memoryWrote 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/varun29ankus/shodh-memory/orchestrate)<a href="https://agentmods.dev/skills/varun29ankus/shodh-memory/orchestrate"><img src="https://agentmods.dev/badge/skills/varun29ankus/shodh-memory/orchestrate.svg" alt="Measured on agentmods" 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.00067 | $0.01700 |
| Opus 5 | $0.00034 | $0.00850 |
| Sonnet 5 | $0.00013 | $0.00340 |
| Haiku 4.5 | $0.00007 | $0.00170 |
Grade A, and why
orchestrate 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 7d 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 — 229 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Orchestration — Todo-Driven Parallel Execution
You are orchestrating a complex task by decomposing it into tracked subtasks, dispatching parallel agents, and coordinating dependencies until completion. Shodh-memory todos are your task graph. Claude Code's Task tool is your agent spawner. Hooks handle the automation.
Phase 1: Decompose
Break the user's request into 3-10 concrete, independently executable subtasks.
Create the project
add_project(name="orch-{kebab-case-summary}")
The project auto-generates a prefix (e.g., ORCH). All todos in this project use that prefix for short IDs like ORCH-1, ORCH-2.
Create todos with dependencies
For each subtask, create a todo in the project:
Independent tasks (can run immediately):
add_todo(
content="Clear, specific description of what this subtask produces",
project="orch-{name}",
priority="high",
tags=["orchestration", "batch:1"]
)
Dependent tasks (must wait for others):
add_todo(
content="Description of dependent work",
project="orch-{name}",
status="blocked",
blocked_on="ORCH-1,ORCH-3",
tags=["orchestration", "batch:2"]
)
The blocked_on field is comma-separated short IDs. The batch:N tag groups tasks by execution wave.
Dependency rules
- A task blocked on
"ORCH-1,ORCH-3"cannot start until BOTH are done - Keep dependency chains shallow (max 3-4 levels deep)
- Maximize parallelism — identify tasks that are truly independent
- Never create circular dependencies
Present the plan
Show the user the task graph before executing:
Project: orch-refactor-auth (ORCH)
Batch 1 (parallel):
ORCH-1: [todo] Extract JWT utilities into auth/tokens.ts
ORCH-2: [todo] Create password hashing module
Batch 2 (after batch 1):
ORCH-3: [blocked on ORCH-1] Update login endpoint
ORCH-4: [blocked on ORCH-1] Update token refresh endpoint
ORCH-5: [blocked on ORCH-2] Update registration endpoint
Batch 3 (after batch 2):
ORCH-6: [blocked on ORCH-3,ORCH-4,ORCH-5] Integration tests
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.
- 7d ago First seen · 229 lines · 67 tokens per session scan A 898bf19ceac9
orchestrate is a skill published in the GitHub repository varun29ankuS/shodh-memory (277 stars, last pushed today), licensed Apache-2.0. It adds 67 tokens to every session and 1,700 once invoked, about $0.0003 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-08-30.
Other skills, from other repositories
swarm-advanced
Advanced swarm orchestration patterns for research, development, testing, and complex distributed workflows.
dispatch
Use when a task file exists in .hyperflow/tasks/ and workers need dispatching. Fans out parallel workers under per-batch Reviewers, runs a final integration review, and commits per sub-task. Endpoint of the auto-chain — no auto-deploy. Trigger with /hyperflow:dispatch, "run the plan", "execute the task", "build it"…
agent-orchestration
Agent orchestration patterns for agentic loops, multi-agent coordination, alternative frameworks, and multi-scenario workflows. Use when building autonomous agent loops, coordinating multiple agents, evaluating CrewAI/AutoGen/Swarm, or orchestrating complex multi-step scenarios.
swarm-advanced
Advanced swarm orchestration patterns for research, development, testing, and complex distributed workflows.
cross-agent-handoff
Transfer context between AI agent sessions with structured handoff protocols, state serialization, and decision log preservation. Covers multi-agent coordination, context compression, and continuity patterns. Triggers on agent handoff, session transfer, or multi-agent continuity requests.
Agent Orchestrator
Coordinate multiple AI agents and skills for complex workflows.