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.mdsource content
Procedure
- Define the Request/Response schema (Zod/OpenAPI).
- Create the route handler/controller.
- Implement business logic in a service layer.
- Add authentication/authorization middleware.
- Write an integration test for the endpoint.