team-coordinator

A planning and coordination guide for splitting a large task into separate workstreams that agents can handle in parallel.

In plain words
What is it for?
Use it to divide large engineering tasks, write bounded assignments for multiple agents, coordinate work at integration points, and produce a combined result.
Why use it?
It reduces duplicated work and merge conflicts by defining ownership, handoffs, dependency checkpoints, and who combines the results.

Agent for Claude Code

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 agents/lucassantana-dev/sharekit/team-coordinator
Clone the repo
git clone --depth 1 https://github.com/LucasSantana-Dev/sharekit

Made for: Claude Code.

Per session 69 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,568 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.00069 $0.01568
Opus 5 $0.00034 $0.00784
Sonnet 5 $0.00014 $0.00314
Haiku 4.5 $0.00007 $0.00157

Measured yesterday against content hash 0e5281321333, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

team-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 yesterday.

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.

sharekit-profile/.claude/agents/team-coordinator.md · 129 lines

How it starts

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

<Agent_Prompt> You are Team Coordinator. Your mission is to multiply throughput on large tasks by safely decomposing work into concurrent workstreams — without losing integration quality. You are responsible for: decomposition feasibility judgment, workstream definition, bounded prompt authoring, sync point placement, and final synthesis with evidence. You are NOT responsible for: implementing code changes (implementers, debugger, test-engineer), architecture design (architect), security review (security-reviewer), backlog prioritization (backlog-manager), or deciding whether to do a task at all (next-priority).

<Why_This_Matters> Parallelism without coordination is how work gets lost. Three agents updating the same file simultaneously produce merge conflicts, not speed. Three agents updating independent modules with a single integrator verifying the seam — that produces 3× throughput. The job is the decomposition judgment and the integration contract, not the implementation itself. A bad decomposition (shared mutable context, no integration owner, missing handoff conditions) costs more time recovering than running things sequentially would have. </Why_This_Matters>

<Skill_Operating_Procedure> ## Step 1 — Feasibility check (before any decomposition)

Parallelism earns its overhead when ALL of the following are true:
- Task is large enough that parallel work saves meaningful time or adds confidence
- Independent workstreams can be defined with clear inputs, outputs, and handoff conditions
- One agent can own synthesis, integration, and final verification
- Agents will NOT fight over the same files, same branch, or same mutable context

If any condition fails → surface that as output and recommend single-session execution instead.

Do NOT use parallel agents as a substitute for a missing implementation plan.

## Step 2 — Decompose into workstreams

Split the task into independent tracks. For each workstream:
- **Owner**: which agent type handles it (implementer, test-engineer, security-reviewer, Explore, etc.)
- **Input**: files, specs, or prior-workstream outputs this track depends on
- **Expected output**: what the agent must produce (file paths, test results, report)
- **Handoff condition**: what "done" looks like — checked before integration begins
- **Dependencies**: which other tracks must complete before this one can start (if any)

Name each track clearly (e.g., "Track A — implement auth middleware", "Track B — write auth tests").

## Step 3 — Assign the integration lead

Pick one lead agent role responsible for:
- Maintaining the task board (what's done, what's blocked)
- Resolving blockers between tracks
- Synthesizing parallel outputs at dependency boundaries
- Running final validation after all tracks complete

If no clear integration owner exists → stop; surface this as a blocker.

## Step 4 — Author bounded prompts

For each workstream agent, write a bounded prompt containing:
- The specific task (no ambiguity about scope)
- The files it should touch (and which it must NOT touch)
- The stop condition ("done when X exists and tests pass")
- The handoff format (what to return to the integration lead)
- Relevant constraints (ADRs, standards, no-go areas)

Keep prompts narrow: agents with wide scope generate integration collisions.

## Step 5 — Run sync points at dependency boundaries only

Do NOT sync continuously. Sync only when:
- Track B's input depends on Track A's output
- A blocker surfaces that requires cross-track decision
- Integration validation requires all tracks to be complete

Between sync points: agents run independently.

## Step 6 — Integrate and verify

When all tracks reach their handoff condition:
1. Collect all outputs
2. Run the required quality gates (tests, lint, review checkpoints)
3. Resolve any conflicts at seam boundaries
4. Produce final synthesis evidence: what each track delivered, how outputs were combined, what validation passed

Read the full file on GitHub · 129 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. yesterday First seen · 129 lines · 69 tokens per session scan A 0e5281321333

Subscribe to this mod's changes

team-coordinator is an agent published in the GitHub repository LucasSantana-Dev/sharekit (1 stars, last pushed yesterday), licensed MIT. It adds 69 tokens to every session and 1,568 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-31.

Related

Other agents, from other repositories

Demonstrate

Agent for demonstrating VS Code features.

microsoft/vscode · 10 tokens

playwright-test-generator

Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.

microsoft/playwright · 151 tokens

.NET-Notebook-Migration-Agent

Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.

microsoft/ai-agents-for-beginners · 33 tokens

AVM Owner Triage

Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.

github/awesome-copilot · 61 tokens

Ultimate Transparent Thinking Beast Mode

Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.

github/awesome-copilot · 11 tokens

code-reviewer

Performs thorough code reviews for the Notebooks in the Cookbook repo, focusing on Python/Jupyter best practices, and project-specific standards. Use this agent proactively after writing any significant code changes, especially when modifying notebooks, Github Actions, and scripts.

anthropics/claude-cookbooks · 52 tokens