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 api-design-checklistgit 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/api-design-checklist)<a href="https://agentmods.dev/skills/niels-emmer/myace/api-design-checklist"><img src="https://agentmods.dev/badge/skills/niels-emmer/myace/api-design-checklist/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/api-design-checklist"><img src="https://agentmods.dev/badge/skills/niels-emmer/myace/api-design-checklist.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.00027 | $0.00844 |
| Opus 5 | $0.00014 | $0.00422 |
| Sonnet 5 | $0.00005 | $0.00169 |
| Haiku 4.5 | $0.00003 | $0.00084 |
Grade A, and why
API Design Checklist 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 9d 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 — 43 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Purpose
An API that's internally consistent is easier to learn, easier to generate clients for, and produces fewer "wait, why does this endpoint work differently" bugs. This skill is a checklist to run a new or changed endpoint against so it fits the shape of everything around it, rather than introducing its own one-off convention.
When to use it
Whenever you're adding a new endpoint, changing the shape of an existing one, or reviewing someone else's API change. Also useful as a gut-check when something about an endpoint feels awkward to call — that friction is often a naming or shape inconsistency.
Naming
- Use plural nouns for collections (
/orders, not/order), and nest resources under their natural parent (/orders/{id}/line-items, not/line-items?order_id=) when the child genuinely can't exist without the parent. - Keep casing consistent across the whole API for URL segments, query params, and JSON field names — pick one convention (commonly
kebab-casefor URLs,snake_caseorcamelCasefor JSON body fields) and don't let a new endpoint drift to a different one. - Use HTTP methods for verbs, not the URL —
POST /orders/{id}/cancelis more debatable thanPATCH /orders/{id}with a status field, but either way stay consistent with how the rest of the API expresses state transitions.
Status codes
200for a successful read or update that returns a body,201for a successful creation (with aLocationheader or the created resource in the body),204for a successful action with no body to return.400for malformed input the client sent,401for missing/invalid auth,403for authenticated-but-not-allowed,404for a resource that doesn't exist or that the caller isn't allowed to know exists,409for a conflict (duplicate create, concurrent-write conflict),422for well-formed input that fails validation rules.- Don't overload
200with an error payload inside it ("soft 200") — if the request failed, the status code should say so, so that generic HTTP tooling (retries, monitoring, client error handling) behaves correctly without inspecting the body.
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.
- 9d ago First seen · 43 lines · 27 tokens per session scan A c0801403c508
API Design Checklist is a skill published in the GitHub repository niels-emmer/myace (1 stars, last pushed 3d ago), licensed MIT. It adds 27 tokens to every session and 844 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-08-31.
Other skills, from other repositories
api-designer
Designs production-grade APIs — REST, GraphQL, gRPC, and AsyncAPI patterns including pagination, versioning, error handling, rate limiting, and API governance. Use when the user asks to design APIs, create endpoints, build an API layer, write OpenAPI specs, or needs help with REST/GraphQL/gRPC service design.
api-design
Guidance for designing HTTP and REST interfaces: web endpoints that use standard HTTP methods to create, read, update, and delete resources.
api-design
Design RESTful APIs with best practices, conventions, and OpenAPI specs.
api-design-first
Design-first API development skill. Generates OpenAPI 3.1 specifications, enforces REST design best practices, validates endpoints, handles versioning, pagination, error formatting, authentication patterns, rate limiting, and idempotency. Activates when users say "design an API", "create OpenAPI spec", "API endpoint"…
api-designer
Generates complete, production-ready REST API endpoint specifications for any system or domain the user describes.
api-integration
Designs event-driven architectures, webhook systems, API chaining flows, ETL pipelines, and integration patterns between services.