Documentation
README
Tutti Architecture Review
Use this skill when reviewing a tutti change or a named module for repository structure, module ownership, or layering compliance. This is a focused architecture review, not a general bug hunt.
Vocabulary
Use the architecture vocabulary consistently:
- Module: anything with an interface and an implementation.
- Interface: everything a caller must know to use the module correctly.
- Implementation: the code inside a module.
- Depth: leverage at the interface; deep modules hide useful behavior behind a small interface.
- Seam: where an interface lives.
- Adapter: a concrete thing satisfying an interface at a seam.
- Leverage: what callers get from depth.
- Locality: what maintainers get from depth.
This is the opening of the README. Read the full README on GitHub.