Agent skill · Backend & API

arcanea-api-design

Design APIs that developers love. RESTful principles, GraphQL patterns, versioning strategies, and the art of creating interfaces that are intuitive, consistent, and future-proof.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill api-design-frankxai-arcanea --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 12 KB
Bundled scripts: none
Version: 2.0.0
Declared author: Arcanea
Path: skills/api/api-design-frankxai-arcanea/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# The API Design Codex > *"An API is a user interface for developers. Design it with the same care you'd design a UI for users."* --- ## The API Design Philosophy ### First Principles ``` GOOD APIs ARE: • Predictable - Behavior matches expectations • Consistent - Same patterns everywhere • Simple - Easy to use, hard to misuse • Evolvable - Can change without breaking • Documented - Self-describing where possible GOOD APIs DO NOT: • Surprise developers • Require reading implementation • Change behavior silently • Expose internal details • Force awkward workarounds ``` --- ## RESTful API Design ### The REST Maturity Model ``` ╔═══════════════════════════════════════════════════════════════════╗ ║ RICHARDSON MATURITY MODEL ║ ╠═══════════════════════════════════════════════════════════════════╣ ║ ║ ║ LEVEL 0: The Swamp of POX ║ ║ Single endpoint, RPC-style ║ ║ POST /api → {action: "getUser", id: 1} ║ ║ ║ ║ LEVEL 1: Resources ║ ║ Multiple endpoints, still mostly POST ║ ║ POST /users/1 → {action: "get"} ║ ║ ║ ║ LEVEL 2: HTTP Verbs ║ ║ Proper use of GET, POST, PUT, DELETE ║ ║ GET /users/1 ║ ║ ║ ║ LEVEL 3: Hypermedia (HATEOAS) ║ ║ Responses include links to related actions ║ ║ GET /users/1

What's inside
Steps it walks through
  1. The API Design Philosophy
  2. First Principles
  3. RESTful API Design
  4. The REST Maturity Model
  5. Resource Naming
  6. HTTP Methods
  7. Status Codes
  8. Request/Response Design
  9. Pagination, Filtering, Sorting
  10. Pagination Patterns
  11. Filtering
  12. Sorting
  13. API Versioning
  14. Versioning Strategies
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the arcanea-api-design skill do?

Design APIs that developers love. RESTful principles, GraphQL patterns, versioning strategies, and the art of creating interfaces that are intuitive, consistent, and future-proof.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill api-design-frankxai-arcanea --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going