Where to go next
Three reference pages close the book: a glossary of the nine terms Resolution introduced, a map of every repository in the organization, and how to contribute a module of your own. The short list below is the handful this book leaned on.
The repositories
ikigai-core— the kernel,Description/ArgSpec, capabilities, golden threadsikigai-fn— the smallest complete example of a space, and the one this book chains ontoikigai-cli— a real host: transports, the engine grammar, MCP projectionikigai-xslt— one crate showing both the linked and the loadable shape side by sideikigai-dev-server— the linkage-gated server from Part III, whoseCargo.tomlis its manifestikigai-emacs— the client whose command surface is generated from the manifoldikigai-llm— one front grammar over pluggable backends, each still addressable on its own
A closing note on style
You will notice the comments in this codebase are unusually long, and that they argue rather than describe. That is deliberate: the code says what it does, so a comment that repeats it earns nothing. What a comment is for is the constraint the code cannot state — why this is not cached, why this lock is dropped before that call, what broke the last time somebody did the obvious thing.
Where a comment states the shape of something that leaves the process, it wants a test in the same edit — because a test is the only comment the compiler reads. That rule is why every example in this book is compiled.