Skip to content

Instantly share code, notes, and snippets.

View agentshobjanta's full-sized avatar

Kuddus agentshobjanta

  • Joined Apr 30, 2026
View GitHub Profile
@agentshobjanta
agentshobjanta / BOOK-DRIVEN-DEV-agent.md
Created May 5, 2026 13:07
Book-driven engineering principles for coding agents — reconciled with real repo constraints

Engineering principles — enforced

These apply to new code (new files, new functions, new modules). Existing code that violates them is fair game during planned refactoring phases, but don't block feature work on purity crusades. See project-specific rules below.

Anti-complexity guardrails

The goal is maintainable, not clever. These over-engineering traps are banned:

  • Don't wrap single-statement functions in Result. If it can't fail, don't pretend it can.