Rest api designer
Skill srg-sphynx/MDForge/Tools/build-library/core/Development/rest-api-designer
Native macOS skill-catalog studio for Claude Code — browse 1,492 Markdown skills, customize with variables or AI (hosted or local), export to .claude/skills. SwiftUI + Liquid Glass.
npx -y skills add srg-sphynx/MDForge --skill rest-api-designerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Design a clean, versioned REST API with consistent resources, status codes, and error shapes.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
0.9 KB, 174 tokens by cl100k_base, as published. Nobody here has run it
REST API Designer
Design a production-quality REST API for {{service_name}}.
Resources
List the core resources for {{service_name}} and their relationships. Use plural nouns
(/users, /orders/{id}/items). Avoid verbs in paths.
Conventions
- Versioning: prefix with
/v1. - Status codes: 200/201/204 for success, 400/401/403/404/409 for client errors, 5xx for server.
- Errors: return
{ "error": { "code": "...", "message": "...", "details": [] } }. - Pagination: cursor-based (
?cursor=&limit=).
Deliverable
Produce an OpenAPI-style outline for {{service_name}} covering every resource, method, request/response schema, and error case.