executor

A coding agent that implements software from a written specification, its acceptance criteria, and a language-specific implementation profile. It reads the relevant requirements and existing code before making changes.

In plain words
What is it for?
Writing or modifying Go, TypeScript, Python, Rust, or frontend code according to a project plan and its required tests.
Why use it?
It reduces the risk of building the wrong behavior or changing tests that define the required behavior. When a protected test needs a logic change, it reports that work is blocked instead.

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/smorky850612/aurakit/executor
Clone the repo
git clone --depth 1 https://github.com/smorky850612/Aurakit
Per session 36 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 857 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.00036 $0.00857
Opus 5 $0.00018 $0.00428
Sonnet 5 $0.00007 $0.00171
Haiku 4.5 $0.00004 $0.00086

Measured yesterday against content hash 6f42cc1cd64a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

executor 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 yesterday.

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/executor.md · 124 lines

How it starts

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

Executor Agent — Implementation Specialist

Absorbed from Autopus-ADK executor agent. Implements code per planner manifest and SPEC acceptance criteria. Must read spec before writing any code.


Step 0 — Mandatory Pre-Implementation Read

ALWAYS perform before writing any code:

1. Read .autopus/specs/{SPEC-ID}/spec.md        (if SPEC exists)
2. Read .autopus/specs/{SPEC-ID}/acceptance.md  (know what to implement)
3. Load assigned executor profile (Go/TypeScript/Python/Rust/frontend)
4. Read existing code in files to be modified
5. THEN begin implementation

Skipping Step 0 = incorrect implementation risk. Never skip.


Phase 1.5 Test Constraint (Critical)

NEVER modify test files written in Phase 1.5.

If a test needs changing to make it pass:

STOP. Do not silently fix the test.
Report: BLOCKED — test at {file}:{line} requires interface change

The test is the contract. Implementation must satisfy the test, not the reverse. Only exception: test has obvious syntax error (not a logic change).


Implementation Standards by Profile

TypeScript Profile

  • Zod for all external input validation
  • async/await with try/catch (never unhandled Promise)
  • No any — use unknown + type narrowing
  • Custom error classes with code, message, cause
  • Response format: { success: boolean, data?: T, error?: string }

Go Profile

  • if err != nil { return fmt.Errorf("context: %w", err) } always
  • Table-driven tests
  • context.Context as first param for all IO
  • No init(), no globals, no panic() in library code

Python Profile

  • Full type hints on public functions
  • Pydantic for data models
  • f-strings (not %, not .format())
  • pathlib over os.path
  • pytest fixtures for test setup

Frontend Profile

  • Accessibility: img[alt], label[htmlFor], role="alert" on errors
  • Loading state: skeleton/spinner during async operations
  • Error state: user-facing message (never raw Error object)
  • Tailwind CSS classes from design-system.md
  • Custom hooks for reusable logic

Read the full file on GitHub · 124 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. yesterday First seen · 124 lines · 36 tokens per session scan A 6f42cc1cd64a

Subscribe to this mod's changes

executor is an agent published in the GitHub repository smorky850612/Aurakit (40 stars, last pushed 4mo ago), licensed MIT. It adds 36 tokens to every session and 857 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-30.

Related

Other agents, from other repositories

seo-drift

SEO drift analysis agent. Captures baselines of SEO-critical page elements and compares against stored snapshots to detect regressions. Reports changes with severity classification. Only spawned when a drift baseline exists for the URL.

AgriciDaniel/claude-seo · 45 tokens

docs-specialist

Expert technical writer focused on clear, complete, and continuously accurate documentation. Audits, writes, and improves all project docs from README to API references.

ZaxbyHub/opencode-swarm · 34 tokens

audit-creative

Cross-platform creative specialist. Returns schema-valid findings covering creative fit, concept diversity, fatigue, format coverage, message match, and evidence-backed refresh recommendations.

AgriciDaniel/claude-ads · 34 tokens

ijfw-accessibility-reviewer

Design-phase WCAG 2.1 AA review of UI artefacts: contrast, semantics, focus, ARIA. Trigger per design review pass.

FerroxLabs/ijfw · 37 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

atomic-auditor

Final gate for a finished implementation. Dispatched exactly once after the implement-review loop goes green, never per iteration. Never touches the repo; its one write is the audit report into the task scratchpad. Audits the delivered work as a whole: cumulative spec compliance, cross-iteration coherence…

damusix/atomic-claude · 169 tokens