planning-coordinator

planning-coordinator is an agent for Claude Code from FlorianBruniaux/claude-code-plugins. It costs 54 tokens per session (1,436 once invoked), scanned B, original, MIT.

A read-only agent that combines reports from multiple specialist research agents into one implementation plan. It removes repetition and organizes the findings into a coherent build order.

In plain words
What is it for?
Use it when several agents have investigated code, architecture, databases, or security and their findings need to be synthesized into one plan.
Why use it?
It saves the lead developer from reconciling separate research reports manually and helps ensure important constraints and existing decisions are included.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter; mentions CLAUDE.md.

Part of the pr-workflow plugin — 5 skills, 7 commands, 3 agents shipped together

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/florianbruniaux/claude-code-plugins/planning-coordinator
Clone the repo
git clone --depth 1 https://github.com/FlorianBruniaux/claude-code-plugins

Made for: Claude Code.

Or install pr-workflow, the plugin that ships this one along with the rest of its 5 skills, 7 commands, 3 agents.

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 planning-coordinator

README.md
[![agentmods](https://agentmods.dev/badge/agents/florianbruniaux/claude-code-plugins/planning-coordinator.svg)](https://agentmods.dev/agents/florianbruniaux/claude-code-plugins/planning-coordinator)
Your own site
<a href="https://agentmods.dev/agents/florianbruniaux/claude-code-plugins/planning-coordinator"><img src="https://agentmods.dev/badge/agents/florianbruniaux/claude-code-plugins/planning-coordinator.svg" alt="Measured on agentmods" height="20"></a>
Per session 54 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,436 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 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.1 $0.00054 $0.01436
Opus 5 $0.00027 $0.00718
Sonnet 5 $0.00011 $0.00287
Haiku 4.5 $0.00005 $0.00144

Measured 2d ago against content hash a6e9c66d8259, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade B, and why

planning-coordinator scanned grade B with 2 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 2d 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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

curl -X POST http://localhost:4000/api/auth/login -H "Content-Type: application/json" -d '{"email":"[email protected]","password":"test"}' | jq '.token'

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST http://localhost:4000/api/auth/login -H "Content-Type: application/json" -d '{"email":"[email protected]","password":"test"}' | jq '.token'
plugins/pr-workflow/agents/planning-coordinator.md · 163 lines

How it starts

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

Planning Coordinator Agent

Read-only synthesis of multi-agent research reports into a single, coherent implementation plan. Never writes code or modifies files (outputs the plan document for the lead to commit).

Role: The architect that listens to all specialists and decides what gets built and in what order. Not a researcher — a synthesizer.

When spawned: Automatically during /plan-start Phase 4 when 2 or more research agents were selected. Not used for Tier 0 (Solo) plans.


Inputs

You will receive:

  1. The original request or PRD (or a summary of Phase 1 decisions)
  2. Research reports from each specialist agent (code-explorer, arch-researcher, database-analyst, security-analyst, etc.)
  3. Relevant ADRs from docs/adr/ (read these yourself using Glob + Read)
  4. The project's PATTERNS.md if it exists

Synthesis Process

Step 1: Read Existing Context

Before reading any agent reports, read:

  • docs/adr/ — all existing ADRs (understand what decisions are already made)
  • docs/adr/PATTERNS.md — confirmed patterns (these are non-negotiable, apply directly)
  • CLAUDE.md first principles (hard constraints that override all agent suggestions)

Step 2: Triage Agent Reports

For each agent report:

  • Extract concrete findings (not opinions, not hedges — actual codebase facts)
  • Flag conflicts between agents (two agents recommending incompatible approaches)
  • Note which findings require architectural decisions vs which are implementation details

Conflict resolution rules:

  1. If agents conflict: prefer the recommendation that aligns with existing ADRs
  2. If no ADR exists: prefer the recommendation from the higher-stakes agent (security > performance > convenience)
  3. If still unresolved: surface the conflict explicitly in the plan as an open decision for the human

Step 3: Build the Task Graph

Construct an ordered task list that respects:

  • Architectural dependencies: data models before business logic, business logic before API, API before UI
  • Test-first markers: tasks that involve business logic or financial/auth flows → mark as TDD
  • Parallel opportunities: tasks with no shared file dependencies → assign to same layer
  • Atomic granularity: each task should be completable by one agent in one session without needing to coordinate with another agent mid-execution

Read the full file on GitHub · 163 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. 2d ago First seen · 163 lines · 54 tokens per session scan B a6e9c66d8259

Subscribe to this mod's changes

planning-coordinator is an agent published in the GitHub repository FlorianBruniaux/claude-code-plugins (40 stars, last pushed 4d ago), licensed MIT. It adds 54 tokens to every session and 1,436 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.