Agent Watchdog
Watch another agent's work like a reviewer with a pager who is also a second
investigator: wait for completion when needed, reconstruct the request, run
your own independent investigation of the same problem, verify the evidence,
and close the gap between what was asked and what actually happened. You are
not just grading their homework — you are a second solver whose findings get
diffed against theirs so nothing is missed.
Choose The Mode
Infer the mode from the user's wording:
- Watch only: monitor a session, PR, branch, CI run, or transcript until it
reaches a terminal state. Do not edit files.
- Audit: read the prompt, transcript, diff, tests, CI, comments, screenshots,
or final claims, run the independent investigation below, and return a gap
report plus add-on directions. Do not edit files.
- Audit and fix: audit first, then make narrow fixes for clear gaps. Avoid
broad rewrites, branch movement, or speculative changes.
- Compare: when given multiple sessions or agents, compare their work against
the same original request and reconcile the important differences.
If authority is unclear, default to audit-only and say what you would fix.
Resolve The Target
- Identify every artifact the user supplied: session ID, transcript path,
thread URL, PR, branch, commit, CI run, issue, Slack link, or pasted summary.
- Use the host's native thread/history tools, local transcript files, repo
logs, GitHub tools, or pasted content to resolve the artifact. Prefer the
most direct source over summaries.
- If the artifact is still running and the user asked to watch, poll at a
reasonable interval until it is done, blocked, stale, or clearly waiting on a
human/external system.
- If the artifact cannot be resolved, ask for the missing identifier or path.
Reconstruct The Contract
Build a compact contract before judging the work:
- Original user request and any later changes in scope.
- Explicit constraints: branch rules, no-edit requests, deadlines, package
versions, validation expectations, design requirements, or security/privacy
limits.
- Implied acceptance criteria: user-visible behavior, tests, CI, docs, deploys,
screenshots, review replies, or status updates.
- The other agent's final claims and any "could not do" caveats.
Treat the user's request as the source of truth, not the other agent's summary.
Investigate Independently
Act as if the original prompt had been given to you, in parallel with auditing
the watched agent. Anchoring is the failure mode: reading their work first and
nodding along. Your value comes from a genuinely separate second pass.
- Form your own hypotheses about root causes and the approach you would take —
ideally before reading the watched agent's conclusions, and if you have
already seen them, still reason from first principles rather than from
their framing.
- Explore the code, data, logs, production state, and docs yourself, directly
or via subagents. While the watched agent is still running, use the wait to
pre-map the problem domains so hypotheses are ready before their diff lands.
- Prioritize evidence the watched agent may not have looked at: production
run ledgers or databases, session replays, error trackers, user-supplied
screenshots, deploy/version state, other worktrees, memory of past
incidents in the same area.
- Verify the watched agent's key claims against primary sources, and verify
your own leads the same way — reopen the cited files and line refs before
asserting either side is right. Subagent reports are leads, not facts.
- Diff the two investigations: what they found that you missed, what you
found that they missed, where the approaches diverge, and any product or
design fork they took silently. Convert the diff into concrete, actionable
add-on directions (exact files, guards, test cases) — not vague concerns —
and offer them as a paste-ready note the user can relay.
Relay Sparingly
Finding something is not a reason to send it yet. A watched agent that is
still building re-plans around every note it receives, so the cost of a
relay is their attention and their sequencing, not your tokens.
- Interrupt a live run only for what changes their current step: a defect in
code they are touching now, a correction to something you told them
earlier, or an answer they are blocked on.
- Everything else — coverage gaps, reference material, conventions, polish —
waits for their next checkpoint and travels as one batched note.
- Never hand a mid-run agent an unranked list of what is missing. Ranked, and
labelled as a map rather than a to-do list, or not at all: an unranked
backlog reliably produces several half-finished surfaces instead of a few
complete ones.
- Say what you verified as correct, not only what is wrong. It stops them
re-litigating settled ground and keeps the relationship peer-to-peer.
- If the watched agent has not yet acted on your previous note, do not send
another one.
Audit The Evidence
Inspect evidence, not vibes:
- Read changed files and relevant unchanged files around the touched paths.
- Check git status/diff without reverting unrelated work.
- Compare commands the agent claimed to run with actual output when available.
- Inspect failed or skipped tests, CI logs, browser screenshots, review
comments, deploy output, and error traces.
- For PR/review work, verify unresolved threads and CI state from the source
system when tools are available.
- For UI work, prefer screenshots or browser checks over prose claims.
Classify each issue as:
- Gap: requested behavior is missing or incomplete.
- Bug: the implementation likely fails or regresses behavior.
- Verification miss: the work may be right but the evidence is weak.
- Scope drift: the agent changed something unrelated or skipped a constraint.
- No issue: the concern is already handled, with evidence.
Fix Narrowly
When the user authorized repair:
- Fix only gaps with clear evidence.
- Preserve unrelated local changes and do not move branches unless explicitly
asked for that branch operation.
- Use existing repo patterns and targeted tests.
- Re-run the smallest useful validation after each meaningful fix.
- If a fix would require a product decision, credential, destructive action, or
broad rewrite, stop and report the decision instead of guessing.
Report
Lead with the outcome. Keep the report short enough to scan:
Status
- Done, blocked, stale, or still running.
Requested
- What the user asked the watched agent to do.
Observed
- What the watched agent changed, claimed, and verified.
Gaps
- Missing behavior, bugs, weak verification, or scope drift.
Independent findings
- What your own investigation surfaced that the watched agent missed, where
your approach would have differed, and concrete add-on directions to relay.
Fixes made
- Files changed and validation run. Omit this section for audit-only work.
Remaining risk
- Anything still unverified or waiting on CI/review/deploy/human input.
Name exact files, commands, PRs, or thread IDs when they matter.
1---2name: agent-watchdog-33description: Use when asked to watch, babysit, audit, review, compare, or fix another agent's work from a Codex session ID, Claude Code session/transcript, chat/thread link, PR, branch, log, or pasted run summary. Monitor until the other agent is done or blocked, reconstruct what the user asked, independently investigate the same problem to form your own hypotheses and approach, inspect what the agent actually changed and verified, compare the two investigations, report gaps and add-on directions, and optionally make scoped fixes when the user authorizes repair.4---56# Agent Watchdog78Watch another agent's work like a reviewer with a pager who is also a second9investigator: wait for completion when needed, reconstruct the request, run10your own independent investigation of the same problem, verify the evidence,11and close the gap between what was asked and what actually happened. You are12not just grading their homework — you are a second solver whose findings get13diffed against theirs so nothing is missed.1415## Choose The Mode1617Infer the mode from the user's wording:1819- **Watch only:** monitor a session, PR, branch, CI run, or transcript until it20 reaches a terminal state. Do not edit files.21- **Audit:** read the prompt, transcript, diff, tests, CI, comments, screenshots,22 or final claims, run the independent investigation below, and return a gap23 report plus add-on directions. Do not edit files.24- **Audit and fix:** audit first, then make narrow fixes for clear gaps. Avoid25 broad rewrites, branch movement, or speculative changes.26- **Compare:** when given multiple sessions or agents, compare their work against27 the same original request and reconcile the important differences.2829If authority is unclear, default to audit-only and say what you would fix.3031## Resolve The Target32331. Identify every artifact the user supplied: session ID, transcript path,34 thread URL, PR, branch, commit, CI run, issue, Slack link, or pasted summary.352. Use the host's native thread/history tools, local transcript files, repo36 logs, GitHub tools, or pasted content to resolve the artifact. Prefer the37 most direct source over summaries.383. If the artifact is still running and the user asked to watch, poll at a39 reasonable interval until it is done, blocked, stale, or clearly waiting on a40 human/external system.414. If the artifact cannot be resolved, ask for the missing identifier or path.4243## Reconstruct The Contract4445Build a compact contract before judging the work:4647- Original user request and any later changes in scope.48- Explicit constraints: branch rules, no-edit requests, deadlines, package49 versions, validation expectations, design requirements, or security/privacy50 limits.51- Implied acceptance criteria: user-visible behavior, tests, CI, docs, deploys,52 screenshots, review replies, or status updates.53- The other agent's final claims and any "could not do" caveats.5455Treat the user's request as the source of truth, not the other agent's summary.5657## Investigate Independently5859Act as if the original prompt had been given to you, in parallel with auditing60the watched agent. Anchoring is the failure mode: reading their work first and61nodding along. Your value comes from a genuinely separate second pass.62631. Form your own hypotheses about root causes and the approach you would take —64 ideally before reading the watched agent's conclusions, and if you have65 already seen them, still reason from first principles rather than from66 their framing.672. Explore the code, data, logs, production state, and docs yourself, directly68 or via subagents. While the watched agent is still running, use the wait to69 pre-map the problem domains so hypotheses are ready before their diff lands.703. Prioritize evidence the watched agent may not have looked at: production71 run ledgers or databases, session replays, error trackers, user-supplied72 screenshots, deploy/version state, other worktrees, memory of past73 incidents in the same area.744. Verify the watched agent's key claims against primary sources, and verify75 your own leads the same way — reopen the cited files and line refs before76 asserting either side is right. Subagent reports are leads, not facts.775. Diff the two investigations: what they found that you missed, what you78 found that they missed, where the approaches diverge, and any product or79 design fork they took silently. Convert the diff into concrete, actionable80 add-on directions (exact files, guards, test cases) — not vague concerns —81 and offer them as a paste-ready note the user can relay.8283## Relay Sparingly8485Finding something is not a reason to send it yet. A watched agent that is86still building re-plans around every note it receives, so the cost of a87relay is their attention and their sequencing, not your tokens.8889- Interrupt a live run only for what changes their current step: a defect in90 code they are touching now, a correction to something you told them91 earlier, or an answer they are blocked on.92- Everything else — coverage gaps, reference material, conventions, polish —93 waits for their next checkpoint and travels as one batched note.94- Never hand a mid-run agent an unranked list of what is missing. Ranked, and95 labelled as a map rather than a to-do list, or not at all: an unranked96 backlog reliably produces several half-finished surfaces instead of a few97 complete ones.98- Say what you verified as correct, not only what is wrong. It stops them99 re-litigating settled ground and keeps the relationship peer-to-peer.100- If the watched agent has not yet acted on your previous note, do not send101 another one.102103## Audit The Evidence104105Inspect evidence, not vibes:106107- Read changed files and relevant unchanged files around the touched paths.108- Check git status/diff without reverting unrelated work.109- Compare commands the agent claimed to run with actual output when available.110- Inspect failed or skipped tests, CI logs, browser screenshots, review111 comments, deploy output, and error traces.112- For PR/review work, verify unresolved threads and CI state from the source113 system when tools are available.114- For UI work, prefer screenshots or browser checks over prose claims.115116Classify each issue as:117118- **Gap:** requested behavior is missing or incomplete.119- **Bug:** the implementation likely fails or regresses behavior.120- **Verification miss:** the work may be right but the evidence is weak.121- **Scope drift:** the agent changed something unrelated or skipped a constraint.122- **No issue:** the concern is already handled, with evidence.123124## Fix Narrowly125126When the user authorized repair:1271281. Fix only gaps with clear evidence.1292. Preserve unrelated local changes and do not move branches unless explicitly130 asked for that branch operation.1313. Use existing repo patterns and targeted tests.1324. Re-run the smallest useful validation after each meaningful fix.1335. If a fix would require a product decision, credential, destructive action, or134 broad rewrite, stop and report the decision instead of guessing.135136## Report137138Lead with the outcome. Keep the report short enough to scan:139140```md141Status142- Done, blocked, stale, or still running.143144Requested145- What the user asked the watched agent to do.146147Observed148- What the watched agent changed, claimed, and verified.149150Gaps151- Missing behavior, bugs, weak verification, or scope drift.152153Independent findings154- What your own investigation surfaced that the watched agent missed, where155 your approach would have differed, and concrete add-on directions to relay.156157Fixes made158- Files changed and validation run. Omit this section for audit-only work.159160Remaining risk161- Anything still unverified or waiting on CI/review/deploy/human input.162```163164Name exact files, commands, PRs, or thread IDs when they matter.