standards-api
Installation
SKILL.md
Core Workflow
- Analyze requirements — define resources, operations, and auth requirements.
- Design endpoints — plural nouns, hyphens, no verbs, no camelCase in URLs. Decide on versioning if breaking changes are possible.
- Implement endpoints — enforce the response shape, error envelope, pagination, field naming, and datetime rules from Constraints below.
- Secure — enforce HTTPS, validate and sanitize all inputs, and implement authentication per project requirements.
- Document — update the OpenAPI spec before any code is deployed; include request, success, and error examples.
- Test — cover success paths, error paths, edge cases, and security scenarios.
- Release — run the Pre-Release Checklist.