Module 07 Refactoring Guide¶
Concept Position¶
flowchart TD
family["Python Programming"] --> program["Python Functional Programming"]
program --> module["Module 07: Effect Boundaries and Resource Safety"]
module --> concept["Module 07 Refactoring Guide"]
concept --> capstone["Capstone pressure point"]
flowchart TD
problem["Start with the design or failure question"] --> example["Study the worked example and trade-offs"]
example --> boundary["Name the boundary this page is trying to protect"]
boundary --> proof["Carry that question into code review or the capstone"]
Read the first diagram as a placement map: this page is one concept inside its parent module, not a detached essay, and the capstone is the pressure test for whether the idea holds. Read the second diagram as the working rhythm for the page: name the problem, study the example, identify the boundary, then carry one review question forward.
This guide closes Module 07. The standard is not wishful purity. The standard is a core that can name its capabilities and a boundary layer that can be reviewed under change.
Stable comparison route¶
- run
make PROGRAM=python-programming/python-functional-programming history-refresh - open
capstone/_history/worktrees/module-07/src/funcpipe_rag/ - compare
domain/,boundaries/, andinfra/ - read the adapter and domain tests under
capstone/_history/worktrees/module-07/tests/
What to refactor toward¶
- capabilities named as protocols or interfaces instead of ambient assumptions
- adapters that translate infrastructure details without bleeding them into the core
- resource, retry, and transaction rules that are explicit and testable
- migration steps that improve boundaries without pretending the system was rebuilt from scratch
Exit standard¶
Before Module 08, you should be able to point to the exact seam where an effect enters and explain why the core can still be reviewed independently.