"There isn't a repo link. No git clone can carry what's been accumulated here. What I can give you is the shape of the question."
The Repos Are Private
Ember and Cinder — and the brain that ties them together — live in private repositories. There is no public clone. This quest will not end with "now go fork it." And that's not a limitation of the lesson; it's the whole philosophy made explicit.
What a Clone Cannot Carry
Even if you had the source, the clone would be the least valuable part. The code is the residue of a thousand decisions: why this boundary and not that one, which trap was hit and how it was escaped, what got deleted and why. A git clone hands you the residue with the reasoning stripped out. You'd inherit the answers without the questions — which is exactly how cargo-cult architecture spreads.
What Conceptual Opensourcing Gives You
Everything in this quest is the concept, fully open: the architecture decisions, the design trade-offs, the war stories with their real numbers, the patterns abstracted to where you can reapply them. You can build your own engine and your own workspace from these lessons without ever seeing a line of the private source — and yours will be better for it, because you'll have built it from the questions instead of copying the answers.
How to Reference Private Work Honestly
This matters for your own writing too. When you describe a private system in public, there's an honest way and a misleading way:
- Honest: name the module, describe the pattern, explain the decision. "The engine classifies models by reading tensor headers, not filenames." That's a concept anyone can use.
- Misleading: drop a clone command or a repo URL that 404s or hits a sign-in wall. Now you've taught a falsehood — that the thing is publicly available — and handed the reader a dead end.
git clone instruction for private code does two kinds of damage: it fails for the reader, and it teaches a false public status. Describe the concept inline instead. The concept is the deliverable — not a clone of the code somewhere else.