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
This commit is contained in:
parent
32693f1a6b
commit
f7d432abd3
|
|
@ -47,3 +47,19 @@ so that {{benefit}}.
|
|||
### Completion Notes 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 | -->
|
||||
|
|
|
|||
Loading…
Reference in New Issue