design-review

design-review is a skill for Claude Code from mawildoer/atopile-agent-skill. It costs 47 tokens per session (2,102 once invoked), scanned A, original, MIT.

A review process for Atopile hardware packages and circuit-board designs before they are built.

In plain words
What is it for?
Use it to check an Atopile design against its local component datasheets and review connectivity, electrical details, and readiness for building.
Why use it?
It helps find design, connection, and implementation problems while the board is still easier to change.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the atopile-dev plugin — 8 skills shipped together

Good fit Use it to check an Atopile design against its local component datasheets and review connectivity, electrical details, and readiness for building.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mawildoer/atopile-agent-skill/design-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 mawildoer/atopile-agent-skill --skill design-review
Clone the repo
git clone --depth 1 https://github.com/mawildoer/atopile-agent-skill

Made for: Claude Code.

Or install atopile-dev, the plugin that ships this one along with the rest of its 8 skills.

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 design-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/mawildoer/atopile-agent-skill/design-review/github.svg)](https://agentmods.dev/skills/mawildoer/atopile-agent-skill/design-review)
Your own site
<a href="https://agentmods.dev/skills/mawildoer/atopile-agent-skill/design-review"><img src="https://agentmods.dev/badge/skills/mawildoer/atopile-agent-skill/design-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 design-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/mawildoer/atopile-agent-skill/design-review"><img src="https://agentmods.dev/badge/skills/mawildoer/atopile-agent-skill/design-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,102 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00047 $0.02102
Opus 5 $0.00023 $0.01051
Sonnet 5 $0.00009 $0.00420
Haiku 4.5 $0.00005 $0.00210

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

Security

Grade A, and why

design-review scanned grade A with 1 finding 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 11d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

2. **Ensure datasheets are local.** Check the project's local `datasheets/` directory for the relevant IC datasheet and application note. If missing, download them there first (`WebFetch`/`curl` the PDF URL from the manu
skills/design-review/SKILL.md · 178 lines

How it starts

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

Atopile Design Review

For agentic workers: This skill orchestrates four parallel review agents. Do NOT delegate to generic software code-review skills — this is a hardware design review. Each agent uses the atopile LSP (lsp skill) tools and reads local datasheets — no internet searches for datasheets.

Dispatches four parallel review agents, each focused on a distinct type of reasoning. For the why behind design rules, see the ato-language skill's design-patterns.md.

Before Dispatching Agents

  1. Identify the .ato files under review.
  2. Ensure datasheets are local. Check the project's local datasheets/ directory for the relevant IC datasheet and application note. If missing, download them there first (WebFetch/curl the PDF URL from the manufacturer's site, save as <manufacturer>_<part>.pdf). Agents must read from the local copy, not hunt the internet.
  3. Extract the module's design parameters (v_max, current targets, etc.) from the source.
  4. Dispatch all four agents in a single message (parallel execution).

The Four Review Agents

Agent 1: Connectivity Audit

Reasoning type: Structural — are the right things connected?

Checks:

  • Every IC pin that should be connected IS connected (cross-ref datasheet pin table)
  • No unintended floating inputs (enable, config, power pins)
  • Interface types match across connections (ElectricPower to ElectricPower, not to Electrical)
  • .reference connected on every ElectricLogic
  • Pull-ups/pull-downs present where required (I2C, active-low enables, open-drain outputs)
  • Reset pins: correct polarity (active-low = pull-up, active-high = pull-down), decoupling cap present
  • Config pins (address, mode select, enable) connected via 0-ohm or pull resistors, not tied directly to VCC/GND — allows reconfiguration without rework during early development
  • Ground domains explicitly tied
  • Bridge syntax used correctly (~> only on can_bridge modules)
  • No external access to _-prefixed (private) members of other modules
  • Every output action has a feedback/measurement path for automated self-test (ADC, sense line, read-back). Gaps documented in docstring.
  • I2C address pins wired via Addressor with base matching datasheet, assert addressor.address is i2c.address, and address_lines[].reference connected
  • No duplicate I2C addresses on the same bus (solver does NOT catch this — manual review only)

Read the full file on GitHub · 178 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. 11d ago First seen · 178 lines · 47 tokens per session scan A 76bc1062f945

Subscribe to this mod's changes

design-review is a skill published in the GitHub repository mawildoer/atopile-agent-skill (10 stars, last pushed 2mo ago), licensed MIT. It adds 47 tokens to every session and 2,102 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

gke-compute-classes

Configures, optimizes, and troubleshoots GKE ComputeClasses. Use when configuring Spot VMs with on-demand fallback, targeting specific accelerators (GPUs/TPUs) or machine families, restricting ComputeClass access, or debugging pending pods related to node pool auto-creation. Do not use for cluster-level Node Auto…

google/skills · 83 tokens

jetson-diagnostic

Read-only Jetson health snapshot for identity, memory, GPU, thermal, power, storage, services, and top processes.

NVIDIA/skills · 30 tokens

doca-socket-relay

Use this skill when the operator is driving the DOCA Socket Relay to bridge a socket-oriented host application onto a BlueField DPU peer without rewriting it — picking the deployment shape (in-process, sidecar, or BlueField service container), configuring the host-side socket and the DPU-side forwarding endpoint…

NVIDIA/skills · 236 tokens

offensive-z-wave

Z-Wave attack methodology — sniffing with Z-Force / EZ-Wave / RTL-SDR + ZniffMobile, S0 (legacy) network-key derivation flaw and key reuse, S2 (modern) ECDH commissioning analysis, replay/injection on unauthenticated nodes, default-key brute-force on test deployments, and home-automation hub pivots. Use when targeting…

SnailSploit/Claude-Red · 113 tokens

hsb-flash

Flash the FPGA on an HSB board connected to an NVIDIA devkit. Supports HSB Lattice boards (FPGA versions 2407, 2412, 2507, 2510) and Leopard Imaging VB1940 "all-in-one" cameras (FPGA versions 2507, 2510). Uses release-specific YAML manifests and board-type-specific program commands. Lattice and VB1940 commands must…

NVIDIA/skills · 94 tokens

jetson-validate-image

Use after jetson-flash-image to run static BSP checks, on-target smoke/regression tests on a flashed DUT, or both. Not for build or flash steps. Triggers: validate bsp, on-target validation.

NVIDIA/skills · 50 tokens