Files
magnus919_agent-skills/workflow-architect/templates/decision-map.md.tmpl
T
Magnus Hedemarkandfactory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> c0c7690724 feat(flatten): move bundle dirs to repo root
Move the 8 directories under bundles/ to the repo root via git mv and
remove the now-empty bundles/ directory. Replace the "bundles" entry in
pyproject.toml [tool.deptry] extend_exclude with the 8 moved dir names so
the moved trees stay excluded from Python dependency analysis.

Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
2026-08-14 15:26:27 -04:00

25 lines
725 B
Cheetah

# {{WORKFLOW_NAME}} — Decision Map
```mermaid
flowchart TD
START(["Session Start"]) --> ENTRY["{{ENTRY}}"]
ENTRY --> PHASE1["{{PHASE_1}}"]
PHASE1 --> BRANCH1{{"{{BRANCH_1}}"}}
BRANCH1 -->|"{{BRANCH_1_A}}"| PHASE2A["{{PHASE_2A}}"]
BRANCH1 -->|"{{BRANCH_1_B}}"| PHASE2B["{{PHASE_2B}}"]
PHASE2A --> PHASE3["{{PHASE_3}}"]
PHASE2B --> PHASE3
PHASE3 --> BRANCH2{{"{{BRANCH_2}}"}}
BRANCH2 -->|"{{BRANCH_2_A}}"| PHASE4["{{PHASE_4}}"]
BRANCH2 -->|"{{BRANCH_2_B}}"| LOOP["{{LOOP}}"]
LOOP --> PHASE3
PHASE4 --> EXIT{{"{{EXIT_DECISION}}"}}
EXIT -->|"{{EXIT_CONDITION}}"| DONE(["Session Complete"])
EXIT -->|"{{INCOMPLETE_CONDITION}}"| SAVED(["Saved for Next Session"])
```