Dev journal path mismatch between /develop and learning-analysis/simplify-report #3
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The producer and consumers of dev journals disagree on where journals live.
Producer —
develop/SKILL.md(line 197) writes dev journals to:i.e. at the feature folder root, per work unit.
Consumers look for dev journals in a different, legacy location:
closeout/procedures/learning-analysis.md(line 21):simplify-report/SKILL.md(line 24):The
sreqs/SR-*/path reflects an older model where features were decomposed into multiple SREQ files. The current model is oneSREQ.mdper feature, with work-unit decomposition happening inside/developat runtime — sosreqs/SR-*/directories don't exist anymore.Impact
learning-analysisandsimplify-reportsilently find no journals, even when/developwrote themProposed fix
Update consumers to match the current producer path:
closeout/procedures/learning-analysis.mdstep 1: read$FEATURE_FOLDER/dev-journal-WU-*.md(glob for all work-unit journals)simplify-report/SKILL.md: same glob patternsreqs/SR-*/dev-journaland update themOptional: normalize the naming
While fixing this, worth deciding whether
dev-journal-WU-N.mdis the right filename pattern, or whether something likejournals/dev-WU-N.md(ajournals/subfolder, matching the local-first artifact structure being designed elsewhere) reads more cleanly. Keeping files organized under ajournals/subfolder also keeps the feature folder root uncluttered as more artifact types are added. Non-blocking — the path mismatch fix is what matters.Related
Fixed by
4ff8a84— all consumers now glob$FEATURE_FOLDER/dev-journal-WU-*.mdand no legacysreqs/SR-*/dev-journalreferences remain in the tree.The optional naming/layout question (journals/ subfolder) split off into #5 to be decided alongside #1 and the broader local-first artifact structure.