loom-api-design

loom-api-design is a skill for Claude Code, Codex from cosmix/loom. It costs 25 tokens per session (3,519 once invoked), scanned A, original, MIT.

A guide for designing interfaces that software uses to communicate, including REST APIs, GraphQL schemas, and gRPC services. It covers how data, requests, errors, paging, and version changes should be represented.

In plain words
What is it for?
Use it when planning endpoints, data models, GraphQL queries, or gRPC service contracts. It also helps define pagination, HTTP behavior, versioning, and specifications such as OpenAPI, GraphQL SDL, or protocol buffers.
Why use it?
It helps prevent inconsistent interfaces that are difficult to change after other software depends on them. It gives teams shared rules for naming, responses, errors, and future updates.

Skill for Claude CodeCodex

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/cosmix/loom/loom-api-design
Any agent
npx skills add cosmix/loom --skill loom-api-design
Clone the repo
git clone --depth 1 https://github.com/cosmix/loom

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 loom-api-design

README.md
[![agentmods](https://agentmods.dev/badge/skills/cosmix/loom/loom-api-design.svg)](https://agentmods.dev/skills/cosmix/loom/loom-api-design)
Your own site
<a href="https://agentmods.dev/skills/cosmix/loom/loom-api-design"><img src="https://agentmods.dev/badge/skills/cosmix/loom/loom-api-design.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,519 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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 $0.00025 $0.03519
Opus 5 $0.00013 $0.01759
Sonnet 5 $0.00005 $0.00704
Haiku 4.5 $0.00003 $0.00352

Measured today against content hash f8bdcf22446c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

loom-api-design 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 today.

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.

| Media type `Accept: application/vnd.api.v2+json` | clean URLs, granular | harder to test/curl; caches need `Vary: Accept` |
skills/loom-api-design/SKILL.md · 288 lines

How it starts

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

API Design

Overview

Design intuitive, consistent, evolvable API contracts across REST, GraphQL, and gRPC. Get the resource model, HTTP semantics, error envelope, pagination, and versioning right up front — they are the hardest things to change once clients depend on them.

Design Workflow

  1. Model resources and relationships before URLs; name the nouns, then map operations onto them.
  2. Pick the paradigm: REST (resource CRUD, caching, broad tooling), GraphQL (client-shaped reads, aggregation, mobile), gRPC (internal, low-latency, streaming, strong contracts).
  3. Lock the error envelope, pagination shape, and versioning policy once — reuse everywhere.
  4. Design for change: additive evolution, tolerant readers, deprecation windows.
  5. Write the spec (OpenAPI/SDL/proto) as the source of truth; generate clients/servers from it.

REST

Resource & URL conventions

  • Nouns, plural collections: /users, /users/{id}, /users/{id}/orders. Never verbs in paths (/getUsers is wrong — the method is the verb).
  • Pick one case (snake_case or camelCase) and keep it identical across paths, query params, and bodies.
  • Keep nesting shallow (≤2 levels); deep hierarchies couple resources. Prefer /orders?user_id= over /users/{id}/orders/{oid}/items/....
  • Sub-resource actions that aren't CRUD: model as a resource (POST /orders/{id}/refunds) rather than an RPC verb (POST /orders/{id}/refund) when the action produces a trackable entity.

HTTP methods, safety, idempotency

Method Purpose Safe Idempotent Body
GET Read yes yes no
HEAD Read headers yes yes no
POST Create / non-idempotent action no no yes
PUT Full replace (client sets full state) no yes yes
PATCH Partial update no not inherently yes
DELETE Remove no yes maybe
  • Idempotent = same request repeated yields same server state (not same response — a repeated DELETE may return 404 the second time; that's fine).
  • PUT replaces the entire resource — omitted fields are cleared. If a client can't send full state, use PATCH.

Read the full file on GitHub · 288 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. today Changed · -21 tokens per session f8bdcf22446c
  2. 4d ago First seen · 288 lines · 46 tokens per session scan A 77d0ec9f32f3

Subscribe to this mod's changes

loom-api-design is a skill published in the GitHub repository cosmix/loom (54 stars, last pushed today), licensed MIT. It adds 25 tokens to every session and 3,519 once invoked, about $0.0001 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-30.