feat(workspace-planning): support module_files split layout#10
Merged
Conversation
- load_schedule resolves module_files references, merging modules from separate YAML files with _source_file tracking - update/link commands are now validate-only (no yaml.dump writes) and output source_file so the LLM applies edits with Edit tool - document module_files field in schema and SKILL.md
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.
Summary
load_schedulenow resolvesmodule_filesreferences, merging modules from separate YAML filesupdate/linkcommands are validate-only — output JSON withsource_file, LLM uses Edit tool to apply changes (preserves YAML comments and formatting)module_filesfield in yaml-schema.md and SKILL.mdContext
The sylsmart schedule was split into monthly files (
sylsmart-month-1.yaml, etc.) for readability, but the planning script assumed all data lived in one file. This brokereview(empty output) andupdate/link(KeyError: 'timeline').Test plan
review— merges 29 modules from 3 monthly files, groups by phaseweek W2— cross-file module lookup worksupdate project-list --status in_progress— validates and returnssource_filewithout writingupdate auth --status planned— rejects invalid transition (done is terminal)