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 skills add niels-emmer/myace --skill architecture-reviewgit clone --depth 1 https://github.com/niels-emmer/myaceWrote 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/skills/niels-emmer/myace/architecture-review)<a href="https://agentmods.dev/skills/niels-emmer/myace/architecture-review"><img src="https://agentmods.dev/badge/skills/niels-emmer/myace/architecture-review/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.
<a href="https://agentmods.dev/skills/niels-emmer/myace/architecture-review"><img src="https://agentmods.dev/badge/skills/niels-emmer/myace/architecture-review.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00024 | $0.00687 |
| Opus 5 | $0.00012 | $0.00344 |
| Sonnet 5 | $0.00005 | $0.00137 |
| Haiku 4.5 | $0.00002 | $0.00069 |
Grade A, and why
Architecture Review 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 8d 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 — 35 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Purpose
Most changes don't need a design discussion — they need someone to write the code. A smaller set of changes are expensive to reverse once built (a new data model, a new service boundary, a new public API shape, a change to how auth or permissions are structured) and are worth a deliberate design pass before implementation starts, because the cost of redoing them after the fact is much higher than the cost of a short review up front.
When a design needs review before building
Reach for this before writing code when a change involves any of:
- A new persistent data model or a change to an existing one that existing data has to migrate through.
- A new service boundary, API contract, or integration point other code will depend on.
- A change to how authentication, authorization, or a security boundary works.
- Introducing a new dependency or pattern that doesn't exist elsewhere in the codebase yet (the first use sets a precedent others will copy).
- Anything where two reasonable engineers would likely propose different approaches — that disagreement is a signal the choice matters.
Skip it for: a bug fix within existing structure, an addition that clearly follows an established pattern, or anything where the "design" is genuinely obvious once you read the ticket.
What to evaluate
- Does this need to be general, or does it need to solve the actual problem? Check against the rule of least power — the simplest structure that handles today's real requirement beats a flexible one built for requirements that don't exist yet. A generic plugin system for two known implementations is premature; a generic plugin system for one is almost certainly wrong.
- What's the blast radius if this is wrong? A data model that's hard to migrate later deserves more scrutiny than a function whose callers can be updated in one commit if the shape changes.
- Does it fit how the rest of the system is structured, or does it introduce a second way of doing something the codebase already does one way? A deliberate departure from an existing pattern should have a stated reason, not just be an accident of who wrote it.
- What's the failure mode, not just the success path — what happens when this component is unavailable, slow, or returns something unexpected, and does the design account for that or silently assume it won't happen.
- Is the rollback path real? For anything involving persisted data, can this be undone if it turns out to be wrong, or does shipping it lock in the decision.
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.
- 8d ago First seen · 35 lines · 24 tokens per session scan A f3b0b5f1c7bc
Architecture Review is a skill published in the GitHub repository niels-emmer/myace (1 stars, last pushed 5d ago), licensed MIT. It adds 24 tokens to every session and 687 once invoked, about $0.0001 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-09-03.
Other skills, from other repositories
art-director
Orchestrate iterative visual style searches with branch prompts, decision graphs, feedback loops, and final direction selection.
html-draft
Use when user wants a standalone HTML diagram in flat engineering blueprint style — architecture diagrams, system flows, technical spec sheets, component maps. Generates one HTML file using Tailwind v4 (browser CDN) for layout and D3 v7 (CDN) for SVG diagrams. User-invoked only — do NOT auto-trigger. Triggers on…
parallel-design-variants
A workflow for producing several genuinely different visual design directions at the same time. It uses distinct visual references, gathers the results into a comparison gallery, and can support choosing winners before another design round.
loom-accessibility
Web accessibility patterns, WCAG compliance, and inclusive design.
loom-diagramming
Create technical diagrams using Mermaid syntax for architecture, sequences, ERDs, flowcharts, and state machines.
ui-ux-polish
Iterative UI/UX polishing workflow for web applications. The exact prompt and methodology for achieving Stripe-level visual polish through multiple passes.