EvanFlow – A TDD driven feedback loop for Claude Code
evanklem2004
45 points
17 comments
April 27, 2026
Related Discussions
Found 5 related stories in 92.1ms across 8,303 title embeddings via pgvector HNSW
- Code Review for Claude Code adocomplete · 67 pts · March 09, 2026 · 60% similar
- How I'm Productive with Claude Code neilkakkar · 161 pts · March 23, 2026 · 57% similar
- Show HN: Claude-replay – A video-like player for Claude Code sessions es617 · 79 pts · March 06, 2026 · 56% similar
- Show HN: Spec-Driven Development Workflow for Claude Code sermakarevich · 11 pts · May 22, 2026 · 55% similar
- The Claude Code Leak mergesort · 79 pts · April 02, 2026 · 55% similar
Discussion Highlights (7 comments)
evanklem2004
Built this as an opinionated Claude Code development flow based on evidence based practices and what has been working for me while developing professional code. EvanFlow is a single TDD-driven loop. Say "let's evanflow this" and it walks brainstorm → plan → execute → tdd → iterate → STOP. Real checkpoints at design and plan approval. Never auto-commits, never auto-stages, never proposes integration - every git op is your call. The three things that actually changed how I work: 1. Vertical-slice TDD. One failing test → minimal impl → next test. Watch each test fail before writing the impl that passes it. (Sounds obvious. Almost no agent does it by default. ~62% of LLM-generated test assertions are wrong per HumanEval research, so testing TDD discipline matters more than the impl discipline.) 2. Embedded grilling at decision points. Before locking a plan: what breaks if a user does X? What's the rollback? What's explicitly out of scope? Catches design flaws while they're still cheap. 3. Iterate-until-clean (hard cap of 5 rounds). Re-read the diff against dead code, naming, the deletion test, assertion correctness, and a Five Failure Modes pass (hallucinated actions, scope creep, cascading errors, context loss, tool misuse). For UI: screenshot via headless Chromium. For bigger plans with 3+ independent units sharing types, it forks into a parallel coder/overseer orchestration. Integration tests at touchpoints ARE the cohesion contract. Three install paths: Claude Code plugin marketplace, npx skills add, manual copy. MIT.
jtfrench
How does this handle “dumb zone” evasion while looping?
s20n
EvanFlow - thoughts arrive like butterflies?
shruubi
Two questions 1) Do you not feel self-conscious or weird about calling this "EvanFlow"? Seems like a lot of people these days are naming their AI tools/skills/whatever after themselves which seems self-absorbed. Either that or they hope that if their thing takes off like OpenClaw did then they'll grab the fame that comes along with it. 2) Why does your TDD flow miss the refactor step of TDD?
cratermoon
https://www.evenflo.com/
here2learnstuff
Not bad, but also, forgive how mean this is going to come across: not using a product from someone who just started their undergrad.
Deeds67
To be honest, the official superpowers/brainstorming skill already does TDD so well, I don't see that much of a need for this. TDD is definitely the way to go with agentic development.