fix: register voice-driven-animation in the routing tables - #11
Open
Avicennasis wants to merge 1 commit into
Open
fix: register voice-driven-animation in the routing tables#11Avicennasis wants to merge 1 commit into
Avicennasis wants to merge 1 commit into
Conversation
The voice-driven-animation workspace (added in RinDig#6) is not listed in the README "Available Workspaces" table, the root CLAUDE.md folder map, or the root CLAUDE.md routing table. Before this change: $ grep -rn "voice-driven-animation" --include='*.md' . \ | grep -v '^./workspaces/voice-driven-animation/' (no matches) The workspace is reachable only by someone who already knows it is there. That matters more here than in a typical repo: Layer 0 and Layer 1 routing tables are how an agent discovers what exists, so an unregistered workspace is invisible to the mechanism the methodology runs on. Adds it to all three places, keeping workspace-builder last since it is the meta-workspace.
This was referenced Aug 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
voice-driven-animationworkspace (added in #6) is not listed in any routing table.It is missing from all three places a reader or an agent would look:
CLAUDE.mdfolder mapCLAUDE.mdrouting tableWhy this is worth a PR
In most repos an unlisted directory is a docs nit. Here it is closer to a functional bug: Layer 0 and Layer 1 routing tables are the mechanism by which an agent discovers what exists. A workspace absent from both is reachable only by someone who already knows it is there, which is precisely the discovery problem the layer model is designed to solve.
Change
Adds it to all three, keeping
workspace-builderlast since it is the meta-workspace. Description taken from the workspace's ownCLAUDE.md, and the folder-map row is column-aligned with its neighbours.