diff --git a/website/src/components/WorkflowGuide.astro b/website/src/components/WorkflowGuide.astro index b8c020aa..b3500858 100644 --- a/website/src/components/WorkflowGuide.astro +++ b/website/src/components/WorkflowGuide.astro @@ -149,39 +149,37 @@
Agent: SM sprint-planning -

Uses your epic files to initialize sprint-status.yaml, which tracks all stories through development. Run once before starting.

-
-
- Agent: SM - create-story - +
+ ↻ Repeat for each story +
+
+ Agent: SM + create-story +
+

Uses the epic and sprint-status to prepare a story-[slug].md file with full context and acceptance criteria, ready for development.

-

Uses the epic and sprint-status to prepare a story-[slug].md file with full context and acceptance criteria, ready for development.

-
-
-
- Agent: DEV - dev-story - +
+
+ Agent: DEV + dev-story +
+

Uses the story file and architecture to implement production code and tests following established patterns.

-

Uses the story file and architecture to implement production code and tests following established patterns.

-
-
-
- Agent: DEV - code-review - +
+
+ Agent: DEV + code-review +
+

Reviews your implemented code for quality, architecture alignment, tests, and security, producing a review report.

-

Reviews your implemented code for quality, architecture alignment, tests, and security, producing a review report.

Agent: SM epic-retrospective -

Reviews the completed epic to capture team learnings and create retrospective notes for improving the next epic.

@@ -409,6 +407,24 @@ display: none; } + .dev-loop { + border: 1px dashed var(--sl-color-accent); + border-radius: 0.4rem; + padding: 0.5rem; + display: flex; + flex-direction: column; + gap: 0.6rem; + position: relative; + } + + .loop-label { + font-size: 0.7rem; + font-weight: 600; + color: var(--sl-color-accent-high); + text-transform: uppercase; + letter-spacing: 0.04em; + } + .wf-top { display: flex; align-items: center;