interface-review

interface-review is a skill for Claude Code, Codex from EzraApple/skills-init. It costs 53 tokens per session (780 once invoked), scanned A, original, MIT.

A review guide for checking the parts of a codebase that other code calls or uses, such as APIs, exported functions, commands, events, and component properties.

In plain words
What is it for?
Use it to review changed public interfaces from the caller’s point of view, while tracing how existing code actually uses them.
Why use it?
It helps find confusing names, inputs, outputs, errors, or side effects at these boundaries before they make code harder for callers to use.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

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.

agentmods
npx agentmods add skills/ezraapple/skills-init/interface-review
Any agent
npx skills add EzraApple/skills-init --skill interface-review
Clone the repo
git clone --depth 1 https://github.com/EzraApple/skills-init

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/ezraapple/skills-init/interface-review.svg)](https://agentmods.dev/skills/ezraapple/skills-init/interface-review)
Your own site
<a href="https://agentmods.dev/skills/ezraapple/skills-init/interface-review"><img src="https://agentmods.dev/badge/skills/ezraapple/skills-init/interface-review.svg" alt="Measured on agentmods" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 780 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00053 $0.00780
Opus 5 $0.00026 $0.00390
Sonnet 5 $0.00011 $0.00156
Haiku 4.5 $0.00005 $0.00078

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

Security

Grade A, and why

interface-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 6d 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.

skills/interface-review/SKILL.md · 103 lines

How it starts

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

Interface Review

Review public and shared boundaries from the caller's perspective. Determine whether the common call path is obvious, whether the boundary owns one coherent job, and whether callers can use it without learning implementation details.

Route Nearby Work

  • Use adversarial-review for broad correctness, security, operational, or high-scrutiny review.
  • Use simplify for internal complexity that does not affect callers.
  • Use plan-changes when no implementation exists yet.

Select the Boundaries

Inspect changed:

  • APIs, commands, events, schemas, and serialized messages;
  • exported functions, classes, service methods, and libraries;
  • hooks, shared components, callbacks, and extension points;
  • configuration surfaces and feature switches;
  • errors, return values, async behavior, and side effects visible to callers.

Trace actual callers and nearby existing boundaries. Do not evaluate an interface in isolation from how it is used.

Ask the Caller Questions

For each boundary:

  1. What job is the caller trying to do?
  2. Does the name describe that job and its side effects?
  3. Are required inputs, defaults, modes, return values, errors, and lifecycle behavior explicit?
  4. Does the caller need to know this provider, transport, storage, or framework detail?
  5. Does an existing boundary already partly solve the same job?
  6. Would a new caller know which of the overlapping entrypoints to choose?
  7. Can the interface evolve without forcing unrelated callers to change?

High-Signal Problems

Prioritize:

  • near-duplicate entrypoints for the same caller job;
  • optional input whose omission silently selects a different workflow;
  • boolean flags or mode strings that combine unrelated behavior;
  • several primitives that travel together but represent one domain concept;
  • a large options object that only relocates confusion;
  • query-like names that hide writes, notifications, or network effects;
  • provider, storage, transport, or framework leakage;
  • nullable or ambiguous return values without a caller-visible reason;
  • extensibility machinery with one implementation and no demonstrated second consumer;
  • breaking changes without a deliberate migration or version boundary.

Read the full file on GitHub · 103 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. 6d ago First seen · 103 lines · 53 tokens per session scan A c9f9e0206ca1

Subscribe to this mod's changes

interface-review is a skill published in the GitHub repository EzraApple/skills-init (2 stars, last pushed 1mo ago), licensed MIT. It adds 53 tokens to every session and 780 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

sdd-apply

Skill "sdd-apply" from Gentleman-Programming/gentle-ai, covering execution role, language domain contract, purpose, what you receive and execution and persistence contract.

Gentleman-Programming/gentle-ai · 0 tokens

graphql-contract-review

Review a GraphQL schema and a Backend-for-Frontend (BFF) contract BEFORE implementation, against a GraphQL-specific checklist: schema shape and nullability (null-bubbling), errors-as-data unions, N+1 and DataLoader, query cost and depth limits, cursor-connection pagination, federation entity ownership, breaking-change…

Mozurok/fhorja.dev · 192 tokens

pr-backend-reviewer

Use when the parent pipeline routes a backend-related PR review request. Reads the diff and emits structured backendFindings using the backend specialist heuristics.

AndrewNgGirl/SkillLens · 35 tokens

pr-headers-reviewer

Use when the parent pipeline routes a headers-related PR review request. Reads the diff and emits structured headersFindings using the headers specialist heuristics.

AndrewNgGirl/SkillLens · 35 tokens

pr-api-reviewer

Use when the parent pipeline routes a api-related PR review request. Reads the diff and emits structured apiFindings using the api specialist heuristics.

AndrewNgGirl/SkillLens · 34 tokens

gentle-ai-collab-perfect

Trigger: contributing to Gentleman-Programming/gentle-ai as an external collaborator. Strict issue-first workflow, honest PR bodies, contributor-vs-maintainer scope, chained-PR strategy, verification protocol, docstring coverage. Load whenever the active repo is Gentleman-Programming/gentle-ai and any part of the…

Gentleman-Programming/gentle-ai · 106 tokens