What problem does it solve? Projects using the 10x change-tracking workflow need a consistent /context directory structure before they can create, archive, or document changes. Setting up the three subdirectories and their canonical README files by hand is repetitive and error-prone. ## Core Features & Use Cases - Directory Scaffolding: Creates context/changes/, context/archive/, and context/foundation/ with mkdir -p semantics, including implicit parent creation. - Canonical README Generation: Writes a standard README.md into each directory explaining its purpose and conventions, with content embedded inline in the skill. - Idempotent Execution: Each of the six artifacts (3 directories + 3 READMEs) is independently create-if-absent, so re-running on an initialized project is a safe no-op that never overwrites existing content. - Use Case: A developer starting a new project runs the initialization once to establish the change-tracking skeleton, then uses /10x-new to create change folders and /10x-archive to move completed work. ## Quick Start Initialize the context directory structure for this project so I can start tracking changes.