agent-output-reconciler

agent-output-reconciler is a skill for Claude Code from WenyuChiou/agent-collab-skills. It costs 31 tokens per session (710 once invoked), scanned A, original, MIT.

A skill for bringing together results from several coding agents after they finish a round of work. It compares their changes and conclusions, then reports agreement, conflicts, and suggested next steps.

In plain words
What is it for?
Use it to review multi-agent task results, compare changes from different agents, and identify conflicting recommendations or unfinished tasks.
Why use it?
It removes the need to inspect each agent’s output separately when deciding whether to merge, retry, or escalate work.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the agent-collab-workspace plugin — 7 skills shipped together

Good fit Use it to review multi-agent task results, compare changes from different agents, and identify conflicting recommendations or unfinished tasks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wenyuchiou/agent-collab-skills/agent-output-reconciler
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.

Any agent
npx skills add WenyuChiou/agent-collab-skills --skill agent-output-reconciler
Clone the repo
git clone --depth 1 https://github.com/WenyuChiou/agent-collab-skills

Made for: Claude Code.

Or install agent-collab-workspace, the plugin that ships this one along with the rest of its 7 skills.

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 agent-output-reconciler

README.md
[![agentmods](https://agentmods.dev/badge/skills/wenyuchiou/agent-collab-skills/agent-output-reconciler/github.svg)](https://agentmods.dev/skills/wenyuchiou/agent-collab-skills/agent-output-reconciler)
Your own site
<a href="https://agentmods.dev/skills/wenyuchiou/agent-collab-skills/agent-output-reconciler"><img src="https://agentmods.dev/badge/skills/wenyuchiou/agent-collab-skills/agent-output-reconciler/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for agent-output-reconciler

Your own site · 80×15
<a href="https://agentmods.dev/skills/wenyuchiou/agent-collab-skills/agent-output-reconciler"><img src="https://agentmods.dev/badge/skills/wenyuchiou/agent-collab-skills/agent-output-reconciler.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 710 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00031 $0.00710
Opus 5 $0.00015 $0.00355
Sonnet 5 $0.00006 $0.00142
Haiku 4.5 $0.00003 $0.00071

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

Security

Grade A, and why

agent-output-reconciler 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.

skills/agent-output-reconciler/SKILL.md · 78 lines

How it starts

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

agent-output-reconciler

Reconcile completed task results into one evidence-based report. This skill describes what happened and what conflicts remain. It does not accept work, merge changes, retry tasks, or write canonical memory.

Inputs

  • the current plan and its task IDs, roles, scopes, dependencies, and success criteria;
  • each task packet, result summary, structured result, and raw-log path;
  • the relevant TaskCheckpoint and latest PolicyDecision;
  • repository diff and test evidence.

Current plans use provider-neutral roles: primary-agent, delegated-executor, reviewer, and synthesizer. Historical provider fields may be parsed for migration only and must not influence current routing.

Workflow

  1. Validate the plan and checkpoint. If either is unreadable, stop and report a blocker. Do not infer missing policy values.
  2. Inventory every planned task. Preserve null, missing, cancelled, declined, degraded, and failed results as distinct states.
  3. Filter unusable payloads before synthesis, while retaining a record of what was filtered and why. Never turn a completed prose result into null merely because an optional structured-output step failed.
  4. Compare actual changed files with each task's declared scope. Record justified transitive changes separately from unexplained drift.
  5. Verify claimed tests and artifacts from their evidence references. A result without evidence remains unverified even if its prose says "success".
  6. Identify file collisions, incompatible assumptions, contradictory findings, dependency-order violations, and unresolved risks.
  7. Compose a reconciliation report using references/reconciliation_template.md.
  8. Hand the report to agent-acceptance-gate. Do not convert a reconciliation recommendation into an acceptance decision.

Output contract

The report must contain:

  • plan and policy references;
  • per-task role, status, evidence references, files changed, tests, and risks;
  • filtered or missing result records;
  • agreement that is supported by shared evidence;
  • contradictions and file conflicts;
  • recommended next action with explicit blockers.

Read the full file on GitHub · 78 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 Changed · +2 lines 86c47ee4a369
  2. 9d ago Changed · -326 lines · -13 tokens per session 74d16eca9e27
  3. 12d ago First seen · 402 lines · 44 tokens per session scan A 7783ab5fa557

Subscribe to this mod's changes

agent-output-reconciler is a skill published in the GitHub repository WenyuChiou/agent-collab-skills (26 stars, last pushed 7d ago), licensed MIT. It adds 31 tokens to every session and 710 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

review-work

Post-implementation gate review: run manual QA on the real surface yourself, then launch ONE gate reviewer (never a panel) to audit goal, constraints, code quality, security, missed context, and QA evidence. Use before a PR handoff or when the user explicitly asks to review completed work.

code-yeongyu/oh-my-openagent · 63 tokens

critical-code-reviewer

Rigorously review code or pull requests for correctness, security, accessibility, maintainability, tests, and edge cases. Use when users request a critical code review, want a guided walkthrough of findings, need implementer-facing feedback, or want to prepare, create, or submit a GitHub pull request review.

posit-dev/skills · 67 tokens

one-way-door

Flags irreversible decisions before commit. Use for data models, infra, auth boundaries, API contracts, event schemas, CI/CD.

jamditis/claude-skills-journalism · 29 tokens

map-codebase

Deep architecture report that fans out parallel inspections across different aspects of the codebase (structure, tech stack, APIs, patterns, data flow, dependencies, testing) and synthesizes findings into a comprehensive document at .turbo/codebase-map.md and .turbo/codebase-map.html. Use when the user asks to "map…

tobihagemann/turbo · 106 tokens

reply-to-pr-threads

Draft, confirm, and post replies to GitHub PR review threads. Handles per-category reply formatting, re-fetches thread resolution state so auto-resolved threads are skipped, and posts via GraphQL. Use when the user asks to "reply to PR threads", "post PR thread replies", or "draft PR reply messages".

tobihagemann/turbo · 71 tokens

code-review-web

Review web application code for bugs, security issues, performance problems, and stack-specific anti-patterns. Use this skill whenever the user wants to review code, debug a production issue, investigate a build failure, audit security, or check a PR before merging. Triggers on code review, review my code, debug…

rampstackco/claude-skills · 121 tokens