From 6920445deea92ff34b7070fa99569375453cf48f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9on=20Avic=20Simmons?= Date: Wed, 19 Aug 2026 02:06:22 -0400 Subject: [PATCH] fix: register voice-driven-animation in the routing tables The voice-driven-animation workspace (added in #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. --- CLAUDE.md | 2 ++ README.md | 1 + 2 files changed, 3 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index b740a8b..939bb34 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -16,6 +16,7 @@ model-workspace-protocol/ └── workspaces/ ├── script-to-animation/ (content idea -> animated video) ├── course-deck-production/ (unstructured material -> course PowerPoints) + ├── voice-driven-animation/ (narration-first explainer video) └── workspace-builder/ (builds new MWP workspaces) ``` @@ -25,6 +26,7 @@ model-workspace-protocol/ |-----------------|-------| | Create content with script-to-animation | `workspaces/script-to-animation/CLAUDE.md` | | Build course slide decks from source material | `workspaces/course-deck-production/CLAUDE.md` | +| Produce a narrated explainer video | `workspaces/voice-driven-animation/CLAUDE.md` | | Build a new workspace for any domain | `workspaces/workspace-builder/CLAUDE.md` | | Read the full MWP specification | `_core/CONVENTIONS.md` | | Understand the placeholder system | `_core/placeholder-syntax.md` | diff --git a/README.md b/README.md index beb5552..71cbb1a 100644 --- a/README.md +++ b/README.md @@ -169,6 +169,7 @@ Each stage produces an output file. You can edit that file before moving on. The |-----------|-------------|--------| | [script-to-animation](workspaces/script-to-animation/) | Content idea through script writing, animation spec, and Remotion code | 3 | | [course-deck-production](workspaces/course-deck-production/) | Unstructured material (PDFs, papers, notes) into polished PowerPoint slide decks | 5 | +| [voice-driven-animation](workspaces/voice-driven-animation/) | Narrated explainer video where recorded VO is the timeline: research, script, voice, animation, render | 5 | | [workspace-builder](workspaces/workspace-builder/) | Build a new ICM workspace for any domain | 5 | ## Build Your Own Workspace