subagent-coordinator

subagent-coordinator is a skill for Claude Code, Codex from AlekseiUL/sprut-agent-kit. It costs 78 tokens per session (1,541 once invoked), scanned A, original, MIT.

A coordinator for running several independent AI-agent tasks at the same time and combining their results into one report. It is designed for work that can be split into separate research or review tasks.

In plain words
What is it for?
Use it to research markets, compare competitors, or review code through multiple separate analyses whose results are collected into a single report.
Why use it?
It reduces the effort of starting, tracking, and assembling parallel investigations by hand. Each task can focus on a different part of a larger question.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/alekseiul/sprut-agent-kit/subagent-coordinator
Any agent
npx skills add AlekseiUL/sprut-agent-kit --skill subagent-coordinator
Clone the repo
git clone --depth 1 https://github.com/AlekseiUL/sprut-agent-kit

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for subagent-coordinator

README.md
[![agentmods](https://agentmods.dev/badge/skills/alekseiul/sprut-agent-kit/subagent-coordinator.svg)](https://agentmods.dev/skills/alekseiul/sprut-agent-kit/subagent-coordinator)
Your own site
<a href="https://agentmods.dev/skills/alekseiul/sprut-agent-kit/subagent-coordinator"><img src="https://agentmods.dev/badge/skills/alekseiul/sprut-agent-kit/subagent-coordinator.svg" alt="Measured on agentmods" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,541 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00078 $0.01541
Opus 5 $0.00039 $0.00771
Sonnet 5 $0.00016 $0.00308
Haiku 4.5 $0.00008 $0.00154

Measured 5d ago against content hash 72dd189e997f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

subagent-coordinator 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 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.

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.

skills/subagent-coordinator/SKILL.md · 184 lines

How it starts

The opening of the file, as written. The whole thing — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Subagent Coordinator — Параллельные задачи с автосборкой

Активация

Используй когда нужно:

  • Запустить несколько субагентов параллельно
  • Дождаться завершения всех
  • Собрать результаты в единый отчёт

Примеры запросов:

  • "Проанализируй конкурентов (3 направления)"
  • "Исследуй рынок (опроси 5 источников)"
  • "Проверь код (анализ + тесты + документация)"

Workflow

1. Анализ задачи

Разбей задачу на независимые подзадачи (2-5 субагентов).

Критерии для разделения:

  • Подзадачи независимы (можно выполнять параллельно)
  • Каждая подзадача возвращает осмысленный результат
  • Результаты можно объединить в единый отчёт

Пример:

Задача: "Проанализируй конкурентов в AI-агентах"

Подзадачи:
1. competitor-research → найти 5 конкурентов
2. differentiation-analysis → выявить отличия
3. positioning-strategy → предложить стратегию

2. Запуск субагентов

Используй Bash с фоновыми задачами:

cd ~/.claude/plugins/cache/claudeclaw/claudeclaw/1.0.0 && \
bun src/index.ts subagent run "task-1" "промпт задачи 1" 2>&1 | tee /tmp/task-1.log &
bun src/index.ts subagent run "task-2" "промпт задачи 2" 2>&1 | tee /tmp/task-2.log &
bun src/index.ts subagent run "task-3" "промпт задачи 3" 2>&1 | tee /tmp/task-3.log &

Отправь progress:

claudeclaw progress "🤖" "Запущено 3 субагента параллельно"

3. Ожидание завершения

Способ 1: Таймер (быстрый)

sleep 90 && ls -lt ~/.claude/plugins/cache/claudeclaw/claudeclaw/1.0.0/.claude/claudeclaw/logs/subagent-* | head -10

Способ 2: Проверка логов (точный)

# Жди пока все 3 лог-файла появятся
while [ $(ls ~/.claude/plugins/cache/claudeclaw/claudeclaw/1.0.0/.claude/claudeclaw/logs/subagent-task-*.log 2>/dev/null | wc -l) -lt 3 ]; do
  sleep 10
done

4. Сбор результатов

Прочитай логи всех субагентов:

ls -lt ~/.claude/plugins/cache/claudeclaw/claudeclaw/1.0.0/.claude/claudeclaw/logs/subagent-task-*.log

Используй Read tool для каждого лог-файла.

Read the full file on GitHub · 184 lines

Changes

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.

  1. 5d ago First seen · 184 lines · 78 tokens per session scan A 72dd189e997f

Subscribe to this mod's changes

subagent-coordinator is a skill published in the GitHub repository AlekseiUL/sprut-agent-kit (63 stars, last pushed 3mo ago), licensed MIT. It adds 78 tokens to every session and 1,541 once invoked, about $0.0004 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.