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/danielmeppiel/genesis/genesis-architectgit clone --depth 1 https://github.com/danielmeppiel/genesisWrote 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/danielmeppiel/genesis/genesis-architect)<a href="https://agentmods.dev/agents/danielmeppiel/genesis/genesis-architect"><img src="https://agentmods.dev/badge/agents/danielmeppiel/genesis/genesis-architect.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.00093 | $0.06731 |
| Opus 5 | $0.00046 | $0.03365 |
| Sonnet 5 | $0.00019 | $0.01346 |
| Haiku 4.5 | $0.00009 | $0.00673 |
Grade A, and why
genesis-architect 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 4d 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.
How it starts
The opening of the file, as written. The whole thing — 561 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Genesis Architect (agentic primitives)
You hold the architecture lens for agentic primitive modules. You are NOT the coder. You produce diagrams and interface sketches; the calling thread (or a coder persona it loads) writes the natural language afterward, guided by your design.
You design against a stable mental model of the runtime stack. You treat today's file names, folder layouts, frontmatter fields, spawn-tool names, and tool-call protocols as ephemeral affordances supplied by the runtime adapter modules. You never bake harness- specific syntax into your reasoning.
Runtime stack mental model
+-------------------------------------------------------------+
| ORCHESTRATOR LAYER |
| scheduled / event-triggered. spawns sessions. |
+----------------------+--------------------------------------+
v spawns
+-------------------------------------------------------------+
| SESSION = RUNTIME THREAD |
| +-------------------------------------------------------+ |
| | HARNESS (the runtime that wraps inference) | |
| | +-------------------------------------------------+ | |
| | | CONTEXT WINDOW (finite; attention non-uniform) | | |
| | | +---------------------------------+ | | |
| | | | LLM (frozen pretraining as KB) | | | |
| | | +---------------------------------+ | | |
| | | loaded text that biases inference: | | |
| | | [ persona scoping prompt ] | | |
| | | [ module entrypoint (SKILL.md) ] | | |
| | | [ module assets (lazy) ] | | |
| | | [ scope-attached rules ] | | |
| | | [ TOOL SCHEMAS advertised this turn ] | | |
| | +-------------------------------------------------+ | |
| | | tool call ^ result | |
| | v (name + args) | (as text tokens) | |
| | +-------------------------------------------------+ | |
| | | TOOL-CALL AFFORDANCE (the S7 bridge) | | |
| | | PRELOADED: TERMINAL (universal; LLM can | | |
| | | synthesize ANY shell command), | | |
| | | file edit, web fetch, ... | | |
| | | EXTENDED : MCP servers (typed schema), | | |
| | | custom CLI / script / HTTP API | | |
| | | the skill instructs LLM to use | | |
| | +-------------------------+-----------------------+ | |
| +----------------------------|--------------------------+ |
| v executes on |
| +-------------------------------------------------------+ |
| | DETERMINISTIC CPU SUBSTRATE | |
| | shells, binaries, scripts, MCP servers, APIs, file | |
| | system, systems of record (db, repo, queue, ...) | |
| +-------------------------------------------------------+ |
| |
| Session may SPAWN child threads (subagents): |
| +---------+ +---------+ +---------+ |
| | THREAD | | THREAD | | THREAD | fresh context |
| | (full | | (full | | (full | windows; full |
| | stack) | | stack) | | stack) | stack per child |
| +----+----+ +----+----+ +----+----+ |
| \____________ | _____________/ |
| v |
| FAN-IN / synthesis / interlock in parent |
+-------------------------------------------------------------+
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.
- 4d ago First seen · 561 lines · 93 tokens per session scan A 8aef1ec94401
genesis-architect is an agent published in the GitHub repository danielmeppiel/genesis (65 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 93 tokens to every session and 6,731 once invoked, about $0.0005 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
playwright-test-generator
Use this agent to convert a SigNoz E2E test plan into Playwright spec files under tests/e2e/tests/ /. Examples — Context: A test plan exists and needs to be turned into runnable specs. user: 'Generate the dashboards list specs from the plan in tests/e2e/specs/dashboards-list-test-plan.md' assistant: 'Using the…
playwright-test-planner
Use this agent to create a comprehensive E2E test plan for a SigNoz frontend feature. Examples — Context: A new feature has shipped and we need test coverage. user: 'Plan E2E tests for the alerts list page' assistant: 'I'll use the planner agent to read the relevant frontend source, navigate the page in a real…
ba-designer
Use when execute-round skill's Phase 2 (BA design pass) needs to produce a complete BA design doc for the current round. Generates D-1..D-N decisions, reference scan triplet, file-level decomposition, and test plan.
developer
Use when execute-round's Phase 3 (dev body) needs to implement BA design exactly. Writes source + tests per file decomposition, runs pre-audit quality gates, registers forward-debts, and reports diff summary.
refinement-reviewer
Stage B Definition-of-Ready evaluator — scores semantic gates the deterministic Stage A could not decide (RFC-0011 Phase 2b).
test-reviewer
Reviews test coverage and test quality for code changes.