Deliver backend changes that are predictable, testable, and production-safe.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add Tendo33/IdeaGo --skill backend-engineering-playbook --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Backend Engineering Playbook?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/tendo33-backend-engineering-playbook-ideago)More formats (shields.io, HTML) on the badges page.
# backend-engineering-playbook
Deliver backend changes that are predictable, testable, and production-safe.
## Default Stack (Unless User Overrides)
- Python 3.10+
- FastAPI
- Pydantic v2
- SQLAlchemy + Alembic
- uv + ruff + pytest
## Workflow
1. Confirm scope, API contract, and assumptions.
2. Design by layers: API -> service -> repository -> domain.
3. Keep handlers thin and push business logic into services.
4. Implement explicit validation, error handling, and transaction boundaries.
5. Add or update tests for happy path and edge cases.
6. Run verification before completion claim.
## Verification
```bash
uv run ruff check .
uv run ruff format --check .
uv run pytest
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!