Modif scripts dev-create story

This commit is contained in:
MaksTinyWorkshop
2026-03-10 21:54:34 +01:00
parent 1b2ed6ff4e
commit c74f865a4b
6 changed files with 212 additions and 12 deletions

View File

@@ -0,0 +1,6 @@
<!-- Story parallelization metadata -->
<critical>Every created story must explicitly define its parallelization metadata.</critical>
<action>Set `Parallel-safe`, `Depends-on`, and `Can-run-with` in the story header based on real technical dependencies, not optimism.</action>
<action>If the story depends on non-merged code from another story, set `Parallel-safe: false` and fill `Depends-on` explicitly.</action>
<action>Use `Can-run-with` only for stories that can be developed in parallel without merge or logic conflicts.</action>
<action>If multiple stories are technically linked, keep them on the same branch until they are independently testable, reviewable, and mergeable.</action>

View File

@@ -0,0 +1,3 @@
<!-- Story parallelization check -->
<action>Before implementation, read `Parallel-safe`, `Depends-on`, and `Can-run-with` from the story file.</action>
<action>If metadata conflicts with the actual code state or branch reality, stop and reconcile the story before coding.</action>

View File

@@ -0,0 +1,3 @@
Parallel-safe: false
Depends-on: ~
Can-run-with: ~