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 skills/ezraapple/skills-init/interface-reviewnpx skills add EzraApple/skills-init --skill interface-reviewgit clone --depth 1 https://github.com/EzraApple/skills-initWrote 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/ezraapple/skills-init/interface-review)<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>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.00053 | $0.00780 |
| Opus 5 | $0.00026 | $0.00390 |
| Sonnet 5 | $0.00011 | $0.00156 |
| Haiku 4.5 | $0.00005 | $0.00078 |
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.
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-reviewfor broad correctness, security, operational, or high-scrutiny review. - Use
simplifyfor internal complexity that does not affect callers. - Use
plan-changeswhen 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:
- What job is the caller trying to do?
- Does the name describe that job and its side effects?
- Are required inputs, defaults, modes, return values, errors, and lifecycle behavior explicit?
- Does the caller need to know this provider, transport, storage, or framework detail?
- Does an existing boundary already partly solve the same job?
- Would a new caller know which of the overlapping entrypoints to choose?
- 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.
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.
- 6d ago First seen · 103 lines · 53 tokens per session scan A c9f9e0206ca1
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.
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.
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…
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.
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.
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.
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…