Claude-skill-registry api-endpoint-create

Standard procedure for creating robust API endpoints

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/api-endpoint-create" ~/.claude/skills/majiayu000-claude-skill-registry-api-endpoint-create && rm -rf "$T"
manifest: skills/data/api-endpoint-create/SKILL.md
source content

Procedure

  1. Define the Request/Response schema (Zod/OpenAPI).
  2. Create the route handler/controller.
  3. Implement business logic in a service layer.
  4. Add authentication/authorization middleware.
  5. Write an integration test for the endpoint.