Backend Pack
Everything for solid backend services in one install: API design, error handling, SQL optimization, input validation, and webhooks.
npx @aiskillet/cli add backend-pack --target claude-code
Install once: npm i -g @aiskillet/cli โ then it works in whatever tool you use.
The same skill, compiled to each target's native format.
What's inside 5
One install adds every capability below โ each also available on its own.
Design consistent, evolvable HTTP/JSON APIs โ resources, status codes, pagination, errors, idempotency, and versioning. Use when creating or reviewing an endpoint.
Handle errors deliberately โ recover vs propagate vs fail-fast, actionable messages, and never swallow exceptions. Use when adding try/catch or reviewing failure paths.
Make slow queries fast โ read the query plan, index for the access pattern, and kill N+1s and needless scans. Use when a query is slow or designing indexes.
Validate untrusted input at the boundary โ allowlist, parse-don't-validate, enforce types/limits before it reaches your logic. Use when handling user input or reviewing injection risks.
Design webhooks that are reliable and secure โ signed payloads, idempotency, retries, and versioning โ on both sender and receiver side. Use when building or consuming webhooks.
- Author
- @aiskillet
- Source
- aiskillet/cookbook/tree/main/plugins/backend-pack
- Targets
- claude-code
- License
- MIT
- Tags
- coding, backend, bundle