mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-18 15:06:28 +03:00
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>
25 lines
725 B
Cheetah
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"])
|
|
```
|