implementer

implementer is an agent for Claude Code from navraj007in/architecture-cowork-plugin. It costs 39 tokens per session (3,021 once invoked), scanned A, original, Apache-2.0.

A code-writing agent that implements one feature component at a time for the /architect:implement command. It follows the project’s recorded patterns for its programming language, framework, libraries, naming, errors, and tests, then verifies the build.

In plain words
What is it for?
Use it to write all files for one component of a multi-component feature from a supplied implementation plan and project pattern description.
Why use it?
Splitting work by component lets each component’s build fail independently and keeps new code consistent with the existing project.

Agent for Claude Code

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

Part of the architect plugin — 48 skills, 63 commands, 19 agents, 7 MCP servers shipped together

Good fit Use it to write all files for one component of a multi-component feature from a supplied implementation plan and project pattern description.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/navraj007in/architecture-cowork-plugin/implementer
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.

Clone the repo
git clone --depth 1 https://github.com/navraj007in/architecture-cowork-plugin

Made for: Claude Code.

Or install architect, the plugin that ships this one along with the rest of its 48 skills, 63 commands, 19 agents, 7 MCP servers.

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 implementer

README.md
[![agentmods](https://agentmods.dev/badge/agents/navraj007in/architecture-cowork-plugin/implementer/github.svg)](https://agentmods.dev/agents/navraj007in/architecture-cowork-plugin/implementer)
Your own site
<a href="https://agentmods.dev/agents/navraj007in/architecture-cowork-plugin/implementer"><img src="https://agentmods.dev/badge/agents/navraj007in/architecture-cowork-plugin/implementer/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 implementer

Your own site · 80×15
<a href="https://agentmods.dev/agents/navraj007in/architecture-cowork-plugin/implementer"><img src="https://agentmods.dev/badge/agents/navraj007in/architecture-cowork-plugin/implementer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,021 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.
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.00039 $0.03021
Opus 5 $0.00019 $0.01510
Sonnet 5 $0.00008 $0.00604
Haiku 4.5 $0.00004 $0.00302

Measured 10d ago against content hash 2fe3da3933f9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, 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 10d 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.

agents/implementer.md · 261 lines

How it starts

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

Implementer Agent

Writes production-ready code for one component of a feature implementation. Invoked by /architect:implement when a story touches multiple components, so each component's build can fail independently without blocking others.

Fidelity Rule

The pattern_fingerprint is authoritative. Every file this agent writes must match the fingerprint exactly — same import style, error format, naming convention, validation library, ORM patterns, test runner. Never substitute a Node.js library into a Python project, a Python library into a Go project, or any other cross-runtime substitution. Framework-appropriate libraries only.


Input Contract

The caller passes a JSON object. All fields are required:

{
  "component_name": "api-server",
  "pattern_fingerprint": {
    "runtime": "python",
    "framework": "fastapi",
    "folder_style": "flat-app",
    "route_style": "fastapi-router",
    "service_exists": true,
    "orm": "sqlalchemy",
    "migration_tool": "alembic",
    "validation": "pydantic",
    "error_format": {"detail": "string"},
    "import_style": "relative",
    "test_runner": "pytest",
    "test_location": "tests/",
    "naming": "snake_case",
    "language": "python"
  },
  "write_plan": [
    { "action": "NEW", "path": "app/schemas/notification.py", "purpose": "Pydantic request/response models" },
    { "action": "MOD", "path": "app/routers/__init__.py", "purpose": "register notifications router" }
  ],
  "story": {
    "story_id": "S1.3",
    "feature_slug": "email-order-notification",
    "story_title": "Email notification on order placed",
    "acceptance_criteria": ["AC1: ...", "AC2: ..."]
  },
  "sdl_context": {
    "auth_strategy": "jwt",
    "environments": ["development", "staging", "production"]
  }
}

Write Order

Always write in dependency order. Do not write a layer until the layers it imports from are complete:

  1. Schema / validation — Pydantic models, zod schemas, DTOs, Go structs, FluentValidation, Bean Validation
  2. Model / migration stub — ORM entity update + migration file
  3. Service layer — business logic functions or class methods
  4. Route / controller layer — HTTP handlers + registration in the router/module file
  5. Integration lib — external service wrappers in lib/ or integrations/ (write before the service that calls them)
  6. Test layer — unit/integration tests (write last so all imports resolve)
  7. Frontend files — page/component + API client update + i18n keys (write after backend is complete)

Read the full file on GitHub · 261 lines

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. 10d ago First seen · 261 lines · 39 tokens per session scan A 2fe3da3933f9

Subscribe to this mod's changes

implementer is an agent published in the GitHub repository navraj007in/architecture-cowork-plugin (2 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 39 tokens to every session and 3,021 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-31.

Related

Other agents, from other repositories

section-writer

Generates self-contained implementation section content. Outputs raw markdown. Used by /deep-plan for parallel section generation.

piercelamb/deep-plan · 26 tokens

opus-plan-reviewer

Reviews implementation plans (fallback when external LLMs unavailable).

piercelamb/deep-plan · 17 tokens

spec-scanner

Scans a codebase using LLM-driven heuristics to detect framework, patterns, entities, and registration points. Produces a persistent project profile that other agents read for wiring-aware implementation.

Habib0x0/spec-driven-plugin · 41 tokens

spec-documenter

Generates user-facing documentation from spec files and implemented code. Produces API references, user guides, and architecture decision records. Context: Feature implementation is complete and user needs documentation. user: "/spec-docs" assistant: "I'll generate documentation from the spec and implementation." The…

Habib0x0/spec-driven-plugin · 100 tokens

spec-validator

Use this agent when you need to validate a spec for completeness, consistency, and implementation readiness. Examples: Context: User has finished creating a spec and wants to verify it's ready for implementation. user: "I've finished the spec for user-authentication. Can you validate it?" assistant: "I'll use the…

Habib0x0/spec-driven-plugin · 275 tokens

spec-consultant

Domain expert consultant that provides focused analysis on a specific topic during brainstorming. This is a parameterized agent — the spawning command passes the expert role, domain expertise, discussion context, and specific question via the prompt. Returns structured analysis to the Lead. Context: During…

Habib0x0/spec-driven-plugin · 228 tokens