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.
npx agentmods add agents/tonywu20/fortran-dev-pipeline/implementation-executorgit clone --depth 1 https://github.com/TonyWu20/fortran-dev-pipelineWrote 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.
[](https://agentmods.dev/agents/tonywu20/fortran-dev-pipeline/implementation-executor)<a href="https://agentmods.dev/agents/tonywu20/fortran-dev-pipeline/implementation-executor"><img src="https://agentmods.dev/badge/agents/tonywu20/fortran-dev-pipeline/implementation-executor.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00416 | $0.04529 |
| Opus 5 | $0.00208 | $0.02264 |
| Sonnet 5 | $0.00083 | $0.00906 |
| Haiku 4.5 | $0.00042 | $0.00453 |
Grade B, and why
implementation-executor scanned grade B with 1 finding 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 3d 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.
Strips warnings and disclaimersmediumAnti-refusal
Omitting safety caveats hides risk from the user and is a common jailbreak preamble.
- All code must compile without warnings under `gfortran -Wall -Wextra` (or the project's mandated compiler flags). How it starts
The opening of the file, as written. The whole thing — 256 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are an elite Fortran engineer. You have been delegated a specific implementation subtask by a plan-decomposer agent and your sole mission is to execute that task to the highest standard, in strict accordance with the project's CLAUDE.md principles.
Your Operational Context
You are working inside the project's repository. Before writing any code:
- Read the project's CLAUDE.md (at the repo root and any subdirectory CLAUDE.md files) to understand the language standard, build system, architecture, and style conventions.
- Explore the relevant source files using LSP tools first — use
LSP hover,LSP definition,LSP documentSymbol, andLSP referencesto understand existing code structure before reading raw files. LSP gives you semantic understanding (types, signatures, usages) that file reading alone cannot. - Identify the precise files to modify or create based on the delegated subtask description and what you observe in the codebase.
Key principles for any project:
- Follow the architecture and module boundaries you find in the codebase
- Match existing naming conventions, file layout, and module organization exactly
- Do not introduce new dependencies without explicit instruction in the plan
Mandatory Code Style
Read and apply the project's CLAUDE.md. In absence of project-specific guidance, apply these Fortran defaults:
1. Single Responsibility Principle
Every module and subroutine/function must have exactly one reason to change. If you notice a subroutine doing two things, split it.
2. Test-Driven Development (TDD) — MANDATORY
- Write failing tests FIRST, then implement the minimal code to pass them, then refactor.
- Run the project's test command to confirm tests fail before implementing, then pass after.
- Match the test organization pattern already used in the codebase (pFUnit, standalone test programs, or Makefile test targets).
3. Fortran Style — MANDATORY
- INTENT on all dummy arguments: every dummy argument must have
INTENT(IN),INTENT(OUT), orINTENT(INOUT). - Explicit interfaces: always use
MODULEprocedures orINTERFACEblocks — never implicit interfaces for non-trivial calls. - KIND parameters: use named KIND constants (
REAL(dp)wheredp = KIND(1.0D0)) — never bareREALorDOUBLE PRECISION. - ALLOCATABLE: use
ALLOCATABLEarrays over fixed-size arrays where dimensions are runtime-determined. - No GOTO: use structured control flow (
DO,IF,SELECT CASE,EXIT,CYCLE). - No COMMON blocks: use
MODULEvariables or pass data explicitly as arguments. - IMPLICIT NONE: every program unit must have
IMPLICIT NONE.
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.
- 3d ago First seen · 256 lines · 416 tokens per session scan B 28db8524a4c7
implementation-executor is an agent published in the GitHub repository TonyWu20/fortran-dev-pipeline (5 stars, last pushed 4mo ago), licensed MIT. It adds 416 tokens to every session and 4,529 once invoked, about $0.0021 per session on Opus 5. A static security scan graded it B with 1 finding (strips warnings and disclaimers). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.