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.
git clone --depth 1 https://github.com/YoungjaeDev/my-claude-pluginsWrote 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/agents/youngjaedev/my-claude-plugins/synthesis-scout)<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>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.00057 | $0.01386 |
| Opus 5 | $0.00028 | $0.00693 |
| Sonnet 5 | $0.00011 | $0.00277 |
| Haiku 4.5 | $0.00006 | $0.00139 |
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.
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-runmktempdirectory the fan-out scouts wrote to)query— original user query (for report header)mode—quick|deepreport_path— absolute path for final Markdown; orchestrator defaults this to${workspace_dir}/final_report.mdso 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
- Enumerate artifacts in lexical order so the merge is deterministic per the
{NN}_{axis}.jsonconvention. Use a quoted form that survives paths with spaces or metacharacters —workspace_diris caller-supplied and must never be interpolated unquoted into the shell:
Skip files where the# 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 caterrorfield is set andfindingsis empty. - 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
summaryinto itsevidence
- GitHub: by
- 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.mdfor the full table including paper time-weighting (2-year boost, 5-year penalty, seminal-paper exception). - Tie-break by recency (
pushed_at/published/ran_atif nothing else)
- 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
## Conflictssection with side-by-side evidence
- Coverage check — if
mode == deepand any expected axis is missing (no artifact or empty findings), add it togapsand recommend a follow-up scout dispatch (the orchestrator decides whether to re-dispatch). - Emit the report to
${report_path}and print a short stdout summary (top 3 picks + path).
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.
- 7d ago First seen · 127 lines · 57 tokens per session scan A 22aac8a969f7
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.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
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.
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.
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.
WinForms Expert
Support development of .NET (OOP) WinForms Designer compatible Apps.
Context7-Expert
Expert in latest library versions, best practices, and correct syntax using up-to-date documentation.