backend-implementation
Installation
SKILL.md
Backend implementation
Use this skill for server-side implementation or backend bug fixes.
Workflow
- Read project memory and existing API/service patterns.
- Locate routes, handlers, services, validation, auth, and tests.
- Preserve existing API contracts unless the task explicitly changes them.
- Follow existing error handling, logging, and validation patterns.
- Add or update backend tests when behavior changes.
- Run focused backend verification before broad suites.
Checks
- Inputs are validated.
- Errors are handled consistently.
- Auth and authorization are preserved.
- External integrations are isolated or mocked in tests.
- Backwards compatibility is considered.