AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Api Design

skill-int2t05-engineering-skills-api-design · by int2t05

Use when designing APIs or interfaces — REST/GraphQL contracts, request/response shapes, versioning, error models, and interface ergonomics. Triggers on "design API", "REST contract", "GraphQL schema", "接口设计", "API 契约", "API 设计".

No reviews yet
0 installs
25 views
0.0% view→install

Install

$ agentstack add skill-int2t05-engineering-skills-api-design

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-int2t05-engineering-skills-api-design)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
19d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Api Design? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

API and Interface Design

Design stable, well-documented interfaces that are hard to misuse. Good interfaces make the right thing easy and the wrong thing hard. Applies to REST APIs, GraphQL schemas, module boundaries, component props, and any surface where one piece of code talks to another.

When to use

  • Designing new REST or GraphQL endpoints
  • Defining module boundaries or contracts between teams
  • Creating component prop interfaces or type contracts
  • Establishing database schema that informs API shape
  • Changing existing public interfaces
  • Triggers on "API design", "interface design", "REST", "GraphQL", "contract", "接口设计", "API 契约", "API 设计"

Not for: system-level architecture decisions (use architecture); deep-module or codebase structure (use codebase-design).

Steps

1. Define the contract first

The contract is the spec — implementation follows. Define typed input and output schemas before writing handlers. The types ARE the documentation.

2. Apply core principles

Hyrum's Law: With enough users, all observable behaviors become de-facto contracts — including undocumented quirks, error text, timing, and ordering. Be intentional about what you expose; don't leak implementation details; plan for deprecation at design time.

The One-Version Rule: Avoid forcing consumers to choose between multiple versions. Design for a world where only one version exists at a time — extend rather than fork. Multiple versions multiply maintenance cost and create diamond dependency problems.

Addition Over Modification: Extend interfaces without breaking consumers — add optional fields, never change existing field types or remove fields. Breaking changes without versioning break consumers.

3. Pick one error strategy and use it everywhere

Every error response follows the same shape. Don't mix patterns — if some endpoints throw, others return null, and others return { error }, the consumer can't predict behavior.

interface APIError {
  error: {
    code: string;        // Machine-readable: "VALIDATION_ERROR"
    message: string;     // Human-readable: "Email is required"
    details?: unknown;   // Additional context when helpful
  };
}

Status code mapping: 400 malformed request (can't parse — bad JSON, wrong content-type), 401 not authenticated, 403 not authorized, 404 not found, 409 conflict (duplicate, version mismatch), 422 well-formed but semantically invalid (fails business validation), 500 server error (never expose internal details).

4. Validate at boundaries

Trust internal code. Validate at system edges where external input enters: API route handlers, form submissions, external service response parsing (third-party data is always untrusted), and environment variable loading. Do NOT validate between internal functions that share type contracts, in utility functions called by already-validated code, or on data from your own database.

5. Follow predictable naming

| Pattern | Convention | Example | |---------|-----------|---------| | REST endpoints | Plural nouns, no verbs | GET /api/tasks, POST /api/tasks | | Query params | camelCase | ?sortBy=createdAt&pageSize=20 | | Response fields | camelCase | { createdAt, updatedAt, taskId } | | Boolean fields | is/has/can prefix | isComplete, hasAttachments | | Enum values | UPPER_SNAKE | "IN_PROGRESS", "COMPLETED" |

6. Apply REST resource patterns

GET    /api/tasks              → List tasks (with query params for filtering)
POST   /api/tasks              → Create a task
GET    /api/tasks/:id          → Get a single task
PATCH  /api/tasks/:id          → Update a task (partial)
DELETE /api/tasks/:id          → Delete a task (idempotent)
GET    /api/tasks/:id/comments → List comments for a task (sub-resource)

Paginate every list endpoint from the start — you will need it the moment someone has 100+ items. Accept partial objects on PATCH (only update what's provided), not full objects on PUT.

7. Use discriminated unions for variants

type TaskStatus =
  | { type: 'pending' }
  | { type: 'in_progress'; assignee: string; startedAt: Date }
  | { type: 'completed'; completedAt: Date; completedBy: string }
  | { type: 'cancelled'; reason: string; cancelledAt: Date };

Consumer gets type narrowing — each variant is explicit, no optional fields that don't apply. Separate input types (what the caller provides) from output types (what the system returns, including server-generated fields). Use branded types for IDs to prevent accidentally passing a UserId where a TaskId is expected.

Output: docs/API/*.md — one file per endpoint group, with full request/response shapes, parameters, errors, and examples.

Verify

  • [ ] Every endpoint has typed input and output schemas
  • [ ] Error responses follow a single consistent format across all endpoints
  • [ ] Validation happens at system boundaries only, not scattered through internal code
  • [ ] List endpoints support pagination
  • [ ] New fields are additive and optional (backward compatible)
  • [ ] Naming follows consistent conventions across all endpoints
  • [ ] API documentation or types are committed alongside the implementation

Red flags: endpoints that return different shapes depending on conditions; inconsistent error formats; validation scattered through internal code; breaking changes to existing fields; list endpoints without pagination; verbs in REST URLs (/api/createTask); third-party API responses used without validation.

Common rationalizations: "We'll document later" — the types ARE the documentation, define them first. "We don't need pagination for now" — add it from the start. "PATCH is complicated, use PUT" — PATCH is what clients actually want. "We'll version when we need to" — design for extension from the start. "Nobody uses that undocumented behavior" — Hyrum's Law says someone does.

References

  • [${CLAUDEPLUGINROOT}/references/engineering-principles.md](${CLAUDEPLUGINROOT}/references/engineering-principles.md) — shared discipline (enforce simplicity, surgical scope, verify don't assume)
  • [references/versioning-strategy.md](references/versioning-strategy.md) — when breaking change is unavoidable: URI/header versioning, sunset/deprecation headers (RFC 8594), dual-version coexistence, sunset timeline
  • [references/openapi-lifecycle.md](references/openapi-lifecycle.md) — design-first vs code-first, Spectral/Redocly linting, openapi-generator SDK generation, spec versioning, CI pipeline

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.