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 action
  • PUT - Full update
  • PATCH - Partial update
  • DELETE - Remove
Installs
6
GitHub Stars
7
First Seen
Jan 24, 2026
api-design — cliangdev/specflux