api-design
Installation
SKILL.md
API Design Patterns for SpecFlux
RESTful Conventions
Follow these patterns consistently:
Resource Naming
- Use plural nouns:
/tasks,/epics,/projects - Nested resources:
/projects/:id/tasks - Actions as POST to sub-resources:
/tasks/:id/start
HTTP Methods
GET- Read (list or single)POST- Create or actionPUT- Full updatePATCH- Partial updateDELETE- Remove