fix: use plural retrospectives in previous retro search instructions
The glob pattern can match multiple retrospective files for the same epic (e.g., partial mid-sprint retro and full completion retro). Use plural "retrospectives" to make clear the LLM should load all matches. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
336e395f00
commit
98fc7cd489
|
|
@ -262,14 +262,14 @@ Bob (Scrum Master): "We'll get to all of it. But first, let me load the previous
|
||||||
<action>Calculate previous epic number: {{prev_epic_num}} = {{epic_number}} - 1</action>
|
<action>Calculate previous epic number: {{prev_epic_num}} = {{epic_number}} - 1</action>
|
||||||
|
|
||||||
<check if="{{prev_epic_num}} >= 1">
|
<check if="{{prev_epic_num}} >= 1">
|
||||||
<action>Search for previous retrospective using pattern: {implementation_artifacts}/epic-{{prev_epic_num}}-retro-*.md</action>
|
<action>Search for previous retrospectives using pattern: {implementation_artifacts}/epic-{{prev_epic_num}}-retro-*.md</action>
|
||||||
|
|
||||||
<check if="previous retro found">
|
<check if="previous retrospectives found">
|
||||||
<output>
|
<output>
|
||||||
Bob (Scrum Master): "I found our retrospective from Epic {{prev_epic_num}}. Let me see what we committed to back then..."
|
Bob (Scrum Master): "I found our retrospectives from Epic {{prev_epic_num}}. Let me see what we committed to back then..."
|
||||||
</output>
|
</output>
|
||||||
|
|
||||||
<action>Read the complete previous retrospective file</action>
|
<action>Read the previous retrospectives</action>
|
||||||
|
|
||||||
<action>Extract key elements:</action>
|
<action>Extract key elements:</action>
|
||||||
- **Action items committed**: What did the team agree to improve?
|
- **Action items committed**: What did the team agree to improve?
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue