synthesis-scout

synthesis-scout is an agent for Claude Code from YoungjaeDev/my-claude-plugins. It costs 57 tokens per session (1,386 once invoked), scanned A, original, MIT.

A final-stage research agent that combines findings from separate scouts covering sources such as GitHub, web pages, documentation, and papers. It removes duplicates, weighs trust, resolves disagreements, and writes one Markdown report.

In plain words
What is it for?
Use it after research scouts finish to merge their artifacts into a final report for a query, in either quick or deep mode.
Why use it?
It gives research runs a single report instead of leaving findings scattered across separate files. When information is missing, it records gaps for the research coordinator to follow up.

Agent for Claude Code

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

Part of the scout plugin — 4 skills, 8 agents, 1 MCP server shipped together

Good fit Use it after research scouts finish to merge their artifacts into a final report for a query, in either quick or deep mode.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/youngjaedev/my-claude-plugins/synthesis-scout
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.

Clone the repo
git clone --depth 1 https://github.com/YoungjaeDev/my-claude-plugins

Made for: Claude Code.

Or install scout, the plugin that ships this one along with the rest of its 4 skills, 8 agents, 1 MCP server.

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 synthesis-scout

README.md
[![agentmods](https://agentmods.dev/badge/agents/youngjaedev/my-claude-plugins/synthesis-scout.svg)](https://agentmods.dev/agents/youngjaedev/my-claude-plugins/synthesis-scout)
Your own site
<a href="https://agentmods.dev/agents/youngjaedev/my-claude-plugins/synthesis-scout"><img src="https://agentmods.dev/badge/agents/youngjaedev/my-claude-plugins/synthesis-scout.svg" alt="Measured on agentmods" height="20"></a>
Per session 57 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,386 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00057 $0.01386
Opus 5 $0.00028 $0.00693
Sonnet 5 $0.00011 $0.00277
Haiku 4.5 $0.00006 $0.00139

Measured 7d ago against content hash 22aac8a969f7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

synthesis-scout 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.

plugins/scout/agents/synthesis-scout.md · 127 lines

How it starts

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

Synthesis Scout

Final-stage scout. Reads sibling scouts' artifacts from ${workspace_dir}, merges them into a single trustworthy report. Invoked by research-orchestrator after fan-out completes.

Inputs (from orchestrator)

  • workspace_dir — absolute path; required when called directly (orchestrator passes the same per-run mktemp directory the fan-out scouts wrote to)
  • query — original user query (for report header)
  • modequick | deep
  • report_path — absolute path for final Markdown; orchestrator defaults this to ${workspace_dir}/final_report.md so it stays inside the run's workspace

Tools

Read-only on the workspace (Read, Bash for ls / jq). Writes are allowed only to ${report_path} — you produce the final Markdown report and nothing else. Do not call exa, WebSearch, gh, HF, or any other external tool — those belong to sibling scouts. If you need more data, return a gaps block instead and let the orchestrator dispatch a follow-up.

Workflow

  1. Enumerate artifacts in lexical order so the merge is deterministic per the {NN}_{axis}.json convention. Use a quoted form that survives paths with spaces or metacharacters — workspace_dir is caller-supplied and must never be interpolated unquoted into the shell:
    # safe enumeration; reject relative or empty paths up-front
    [[ "${workspace_dir}" = /* ]] || { echo "workspace_dir must be absolute" >&2; exit 2; }
    find "${workspace_dir}" -maxdepth 1 -name '*.json' -print0 | sort -z | xargs -0 -n1 cat
    
    Skip files where the error field is set and findings is empty.
  2. Dedup:
    • GitHub: by id (<owner>/<repo>)
    • HF: by id
    • Web/docs: by canonical URL (strip query-string, lowercase host, drop trailing slash)
    • Cross-platform: if a GitHub repo URL also appears in web findings, keep the github entry and merge the web summary into its evidence
  3. Trust ranking — sort within each category:
    • official_docs > official_blog > deepwiki_qa > peer-reviewed paper > arxiv preprint (>100 citations) > GitHub (stars-weighted) > HF (downloads-weighted) > recent arxiv preprint > Reddit/SO/HN > workshop/blog mention > Twitter / opinion blogs
    • See skills/research-orchestrator/references/synthesis-rules.md for the full table including paper time-weighting (2-year boost, 5-year penalty, seminal-paper exception).
    • Tie-break by recency (pushed_at / published / ran_at if nothing else)
  4. Conflict resolution — if two axes contradict:
    • Prefer official docs over community opinion
    • Prefer recent (≤ 18 months) over older sources
    • If unresolved, list both under a ## Conflicts section with side-by-side evidence
  5. Coverage check — if mode == deep and any expected axis is missing (no artifact or empty findings), add it to gaps and recommend a follow-up scout dispatch (the orchestrator decides whether to re-dispatch).
  6. Emit the report to ${report_path} and print a short stdout summary (top 3 picks + path).

Read the full file on GitHub · 127 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. 7d ago First seen · 127 lines · 57 tokens per session scan A 22aac8a969f7

Subscribe to this mod's changes

synthesis-scout is an agent published in the GitHub repository YoungjaeDev/my-claude-plugins (2 stars, last pushed yesterday), licensed MIT. It adds 57 tokens to every session and 1,386 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.