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/smorky850612/aurakit/executorgit clone --depth 1 https://github.com/smorky850612/AurakitWhat 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.00036 | $0.00857 |
| Opus 5 | $0.00018 | $0.00428 |
| Sonnet 5 | $0.00007 | $0.00171 |
| Haiku 4.5 | $0.00004 | $0.00086 |
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.
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— useunknown+ 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
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.
- yesterday First seen · 124 lines · 36 tokens per session scan A 6f42cc1cd64a
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.
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.
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.
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.
ijfw-accessibility-reviewer
Design-phase WCAG 2.1 AA review of UI artefacts: contrast, semantics, focus, ARIA. Trigger per design review pass.
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.
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…