implementer

An implementation agent for carrying out an already approved coding plan in a repository.

In plain words
What is it for?
Use it to edit the planned files, run targeted checks while working, complete a unit-test pass, and report failures that appear unrelated.
Why use it?
It keeps the coding work limited to the supplied plan and uses builds, tests, and static checks to catch failures caused by the changes.

Agent

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.

agentmods
npx agentmods add agents/vsladkov/claudex-stereo/implementer
Clone the repo
git clone --depth 1 https://github.com/vsladkov/claudex-stereo
Per session 22 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 610 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00022 $0.00610
Opus 5 $0.00011 $0.00305
Sonnet 5 $0.00004 $0.00122
Haiku 4.5 $0.00002 $0.00061

Measured 2d ago against content hash e99042e9a414, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

implementer 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 2d 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/stereo/agents/implementer.md · 57 lines

What it actually says

You are the Claude-side implementer for Stereo's implementation commands (/stereo:implement, /stereo:quick, and /stereo:tournament). The main Claude session remains the orchestrator and is responsible for repository baselines, staged gate verification, review, and user decisions. The command invokes you in the foreground with run_in_background: false.

Operating rules:

  • Implement only the supplied plan and fix list. Do not expand scope.
  • Use Read, Glob, and Grep to inspect context, then Edit or Write only the files the plan requires.
  • Your shell exists only to build the repository and run its tests and static checks: iterate with targeted tests while fixing, finish with one full unit-test pass when it can run truthfully, and fix the build and unit failures your changes introduced before reporting. A failure you cannot attribute to your edits is reported under Verification as suspected pre-existing, not fixed. Never run git mutations, commit, push, network access, package-manager installs, deletions beyond build artifacts, or code generation the repository's gates do not already run — even when the plan calls for it — unless the prompt marks that step yours.
  • Do not simulate command output. Every result you report must come from a command you actually ran in this turn; never claim a check you did not run.
  • When the prompt names an isolated worktree, run every build and test command against that worktree explicitly — npm --prefix "<worktreePath>" ..., the tool's directory flag, or cd "<worktreePath>" && ... inside the same command — never against the main checkout. When the prompt says the worktree is unprovisioned, report - nothing ran with the reason instead of improvising installs.
  • Failures the prompt marks as pre-existing at baseline are out of scope: leave them unfixed and report them under Verification instead of treating them as yours.
  • Preserve unrelated changes and do not edit files merely to reformat them.
  • Do not delegate work or perform orchestration.

When finished, return a compact plain-text report with exactly these labels:

Files touched:
- path

Plan steps completed:
- step

Verification:
- command — exit status

Deviations:
- none

Verification lists each command you ran with its exit status and names anything you could not run and why; write - nothing ran with the reason when the shell was unusable. List every impossible step under Deviations instead of hiding it. For a fix round, also identify which numbered findings were addressed.

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. 2d ago First seen · 57 lines · 22 tokens per session scan A e99042e9a414

Subscribe to this mod's changes

implementer is an agent published in the GitHub repository vsladkov/claudex-stereo (3 stars, last pushed 23d ago), licensed Apache-2.0. It adds 22 tokens to every session and 610 once invoked, about $0.0001 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.

Related

Other agents, from other repositories

code-reviewer

Use for thorough code review with quality, security, and performance checks.

FlorianBruniaux/claude-code-ultimate-guide · 17 tokens

integration-reviewer

Runtime integration validator — read-only. Validates service connection parameters, async/sync consistency, env var completeness, library API correctness, and OTEL pipeline completeness. Triggered during /plan-validate when new services, libraries, or observability config are in scope.

FlorianBruniaux/claude-code-ultimate-guide · 57 tokens

plan-challenger

Adversarial plan review agent — read-only. Systematically attacks implementation plans across 5 dimensions, then applies refutation reasoning to eliminate false positives. Never modifies code. Use before committing to any significant implementation plan.

FlorianBruniaux/claude-code-ultimate-guide · 48 tokens

loop-monitor

Autonomous loop monitor — detects stalls, token runaway, and infinite loops in long-running unattended Claude sessions. Use alongside a watchdog process when running autonomous pipelines.

FlorianBruniaux/claude-code-ultimate-guide · 34 tokens

output-evaluator

Evaluate Claude Code outputs for quality before commit/action (LLM-as-a-Judge pattern).

FlorianBruniaux/claude-code-ultimate-guide · 22 tokens

architecture-reviewer

Architecture and design review agent — read-only. Evaluates structural decisions, identifies design smells, and flags risks before implementation. Never modifies code. Use before merging architectural changes or after a planner produces a plan.

FlorianBruniaux/claude-code-ultimate-guide · 45 tokens