Architecture Review

Architecture Review is a skill for Claude Code, Codex from niels-emmer/myace. It costs 24 tokens per session (687 once invoked), scanned A, original, MIT.

A structured review of important software design choices before implementation. It focuses on decisions such as data models, service boundaries, APIs, authentication, and new dependencies.

In plain words
What is it for?
Use it before introducing a database change, service boundary, public API, security change, or unfamiliar pattern.
Why use it?
It helps find costly design problems before code and data depend on the chosen approach.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for aider. Also seen: mentions Codex; built for aider; mentions OpenCode.

Good fit Use it before introducing a database change, service boundary, public API, security change, or unfamiliar pattern.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/niels-emmer/myace/architecture-review
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.

Any agent
npx skills add niels-emmer/myace --skill architecture-review
Clone the repo
git clone --depth 1 https://github.com/niels-emmer/myace

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for Architecture Review

README.md
[![agentmods](https://agentmods.dev/badge/skills/niels-emmer/myace/architecture-review/github.svg)](https://agentmods.dev/skills/niels-emmer/myace/architecture-review)
Your own site
<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.

agentmods 80×15 button for Architecture Review

Your own site · 80×15
<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>
Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 687 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00024 $0.00687
Opus 5 $0.00012 $0.00344
Sonnet 5 $0.00005 $0.00137
Haiku 4.5 $0.00002 $0.00069

Measured 8d ago against content hash f3b0b5f1c7bc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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.

collections/base/software-engineer/skills/architecture-review/SKILL.md · 35 lines

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

  1. 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.
  2. 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.
  3. 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.
  4. 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.
  5. 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.

Read the full file on GitHub · 35 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. 8d ago First seen · 35 lines · 24 tokens per session scan A f3b0b5f1c7bc

Subscribe to this mod's changes

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.