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 subhansh-dev/agent-maxxing --skill batch-orchestrationgit clone --depth 1 https://github.com/subhansh-dev/agent-maxxingWrote 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/subhansh-dev/agent-maxxing/batch-orchestration)<a href="https://agentmods.dev/skills/subhansh-dev/agent-maxxing/batch-orchestration"><img src="https://agentmods.dev/badge/skills/subhansh-dev/agent-maxxing/batch-orchestration/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/subhansh-dev/agent-maxxing/batch-orchestration"><img src="https://agentmods.dev/badge/skills/subhansh-dev/agent-maxxing/batch-orchestration.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.00028 | $0.00490 |
| Opus 5 | $0.00014 | $0.00245 |
| Sonnet 5 | $0.00006 | $0.00098 |
| Haiku 4.5 | $0.00003 | $0.00049 |
Grade A, and why
batch-orchestration scanned grade A with 1 finding 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 5d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- Dev-server + curl for API changes What it actually says
Batch Orchestration — Parallel Work
Extracted from Claude Code's bundled batch skill.
Phase 1: Research and Plan
-
Understand the scope. Launch subagents to deeply research what the task touches. Find all files, patterns, and call sites that need to change.
-
Decompose into independent units. Break the work into 5-30 self-contained units. Each unit must:
- Be independently implementable in an isolated git worktree
- Be mergeable on its own without depending on another unit's PR
- Be roughly uniform in size
Scale the count to the actual work: few files → closer to 5; hundreds → closer to 30. Prefer per-directory or per-module slicing.
-
Determine the e2e test recipe. Figure out how a worker can verify its change actually works end-to-end:
- Browser automation for UI changes
- CLI verifier for terminal changes
- Dev-server + curl for API changes
- Existing e2e/integration test suite
-
Write the plan with:
- Summary of research findings
- Numbered work units (title, files, description)
- E2e test recipe
- Worker instructions template
Phase 2: Spawn Workers
Spawn one background agent per work unit. All agents use isolation: "worktree" and run_in_background: true. Launch them all in a single message block.
Each agent's prompt must be self-contained:
- Overall goal
- Specific work unit description
- Files/directories to modify
- E2e test recipe
- The exact changes to make
Phase 3: Collect and Merge
After all workers complete:
- Review each worktree's changes
- Verify e2e tests pass for each
- Merge worktrees back into the main branch
- Resolve any conflicts
- Run a final integration test
Rules
- Workers must not modify files outside their assigned scope
- If a worker fails, diagnose and retry with more context
- Never skip e2e verification — unit tests aren't enough
- Keep worker prompts concise but complete
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.
- 5d ago First seen · 59 lines · 28 tokens per session scan A 2c1376cb0953
batch-orchestration is a skill published in the GitHub repository subhansh-dev/agent-maxxing (2 stars, last pushed 1mo ago), licensed MIT. It adds 28 tokens to every session and 490 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
create-issue
Draft and submit a GitHub issue from a user idea or bug description, with bilingual body and correct labels.
gh-file-issue
Use when filing a new Codewhale GitHub issue: turn a bug or idea into a well-formed, actionable issue with repro, acceptance criteria, labels, and milestone.
gh-treasure-hunt
Hunt the issue/PR queue for highest value-over-risk wins: clean focused community PRs, already-implemented issues to close, safe quick-fixes.
gh-assign-issues
Use to assign GitHub issues to a milestone and/or owners in bulk, verifying each.
to-issues
A workflow that turns a product requirements document (PRD) or technical specification (SPEC) into small, actionable work tickets.
file-a-task
File work into nohuman (taskadd) and check on it (taskstatus) via the nohuman MCP bridge, instead of doing the work inline.