Agent Watchdog
85TrustedInstructions onlyVerification of AI agent sessions, PRs, and logs to identify execution gaps and errors.
What it does
Agent Watchdog acts as a formal reviewer for other autonomous agents. By ingesting session IDs, transcripts, or repository links, it reconstructs the original user intent and compares that contract against the actual artifacts produced by the target agent. It highlights discrepancies between requested tasks and documented outcomes.
Beyond basic oversight, the skill can provide an audit report or attempt narrow, surgical corrections when issues are identified. This is designed for teams managing complex agent workflows who need a secondary layer of validation before merging code or finalizing work.
When it earns its place
Reach for it when…
Apply this when you need an objective assessment of an agent's recent activity, such as checking a failing CI run, reviewing a pull request generated by another bot, or verifying that a long-running session actually completed every requirement.
Look elsewhere when…
Do not use this for initial task execution or primary generation, as it is strictly a diagnostic tool. It is not designed for interpreting human-written code or manual commits, nor is it a replacement for comprehensive manual regression testing on complex, multi-system migrations.
What to say to use it
You never invoke a skill directly — the assistant picks it up when your request matches what it covers. These are the kinds of things that do that.
- Check the work completed in this PR
- Did the agent follow all instructions in this session
- Compare the results of these two agent runs
- Audit this transcript for missed requirements
Install it
Install for all your projects
Copy the skill directory into your personal skills folder. Claude picks it up on its own the next time your request matches what it does — there is nothing to enable.
git clone --depth 1 --branch main https://github.com/BuilderIO/skills.git /tmp/skills
mkdir -p ~/.claude/skills
cp -r /tmp/skills/skills/agent-watchdog ~/.claude/skills/agent-watchdogInstall for one project only
Put it in the project's own skills folder instead, so it can be committed and shared with everyone working on that repository.
cp -r /tmp/skills/skills/agent-watchdog .claude/skills/agent-watchdogIf a skill of the same name exists in both places, the personal one wins.
Installing on Claude.ai or through the API instead? The full guide covers every surface.