Api design
Modular, scalable, automated development intelligence.
npx -y skills add DongDuong2001/pudo-code-system --skill api-designAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 5 stars5 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
Planning and designing scalable, secure, and intuitive APIs
SKILL.md
0.8 KB, as published. Nobody here has run it
API Design Skill
This skill is utilized during the PLAN phase when defining the contract between different services or between a client and a backend.
When to use this skill
- When defining RESTful endpoints, GraphQL schemas, or gRPC definitions.
- When creating API documentation (OpenAPI/Swagger).
- When planning API versioning and deprecation strategies.
Guidelines
- Consistency: Maintain consistent naming conventions (e.g., standardizing on plural nouns for REST collections).
- Versioning: Plan for API versioning from Day 1 (e.g.,
/v1/users). - Pagination & Filtering: Design endpoints to handle large datasets natively.
- Security: Ensure authentication (OAuth2, JWT) and authorization (RBAC/ABAC) are built into the design.