Compare commits

...

2 Commits

Author SHA1 Message Date
Nikolas Hor 8c131d663e
Merge f7d432abd3 into 861716fbe3 2026-03-12 09:10:46 -03:00
Nikolas de Hor f7d432abd3 fix: add File List and Change Log structure to story template
The create-story template ended with an empty File List section,
providing no guidance on format. The dev-story workflow expects
structured File List entries (new/modified/deleted with paths)
and a Change Log section, but the template included neither.

Adds table format with action/path columns for File List and
date/summary columns for Change Log, matching the dev-story
workflow's expectations.

Fixes #1789
2026-03-11 19:38:52 -03:00
1 changed files with 16 additions and 0 deletions

View File

@ -47,3 +47,19 @@ so that {{benefit}}.
### Completion Notes List ### Completion Notes List
### File List ### File List
<!-- Populated during dev-story execution. List ALL new, modified, or deleted files (paths relative to repo root). -->
| Action | File Path |
|--------|-----------|
<!-- | Added | src/example/new-file.ts | -->
<!-- | Modified | src/example/existing-file.ts | -->
<!-- | Deleted | src/example/removed-file.ts | -->
### Change Log
<!-- Populated during dev-story execution. Summarize what changed and why. -->
| Date | Summary |
|------|---------|
<!-- | YYYY-MM-DD | Initial implementation of story tasks | -->