workflows added to sub items in plan project phase. updated single action checks to be ifs on the action.

This commit is contained in:
Brian Madison
2025-10-05 11:32:45 -05:00
parent aefe72fd60
commit 33d893bef2
26 changed files with 935 additions and 404 deletions

View File

@@ -529,12 +529,12 @@ Update architecture.md with specialist sections (inline or placeholders) at the
</step>
<step n="8" goal="PRD epic/story updates (if needed)" optional="true">
<check>
<ask>
Did cohesion check or architecture design reveal:
- Missing enabler epics (e.g., "Infrastructure Setup")?
- Story modifications needed?
- New FRs/NFRs discovered?
</check>
</ask>
<ask if="changes_needed">
Architecture design revealed some PRD updates needed:
@@ -587,9 +587,9 @@ Update project-workflow-analysis.md workflow status:
</step>
<step n="10" goal="Polyrepo documentation strategy" optional="true">
<check>
<ask>
Is this a polyrepo project (multiple repositories)?
</check>
</ask>
<action if="polyrepo">
For polyrepo projects:

View File

@@ -10,7 +10,9 @@
<step n="1" goal="Collect inputs and initialize">
<action>Identify PRD and Architecture documents from recommended_inputs. Attempt to auto-discover at default paths.</action>
<ask optional="true" if="{{non_interactive}} == false">If inputs are missing, ask the user for file paths.</ask>
<check>If inputs are missing and {{non_interactive}} == true → HALT with a clear message listing missing documents.</check>
<check if="inputs are missing and {{non_interactive}} == true">HALT with a clear message listing missing documents and do not proceed until user provides sufficient documents to proceed.</check>
<action>Extract {{epic_title}} and {{epic_id}} from PRD (or ASK if not present).</action>
<action>Resolve output file path using workflow variables and initialize by writing the template.</action>
</step>