Files
magnus919_agent-skills/workflow-architect/references/example-output/developer-triage/decision-map.md
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

877 B

Developer Triage — Decision Map

flowchart TD
    START(["Session Start"]) --> ENTRY["Check PRs, review overnight activity"]

    ENTRY --> TRIAGE["Morning Triage"]
    TRIAGE --> BRANCH1{"Pending PRs assigned?"}
    BRANCH1 -->|"Yes — review first"| PR_REVIEW["Code Review"]
    BRANCH1 -->|"No — pick from backlog"| DEEP_WORK["Deep Work"]

    PR_REVIEW --> BRANCH2{"Review complete?"}
    BRANCH2 -->|"Approved — return to triage"| TRIAGE
    BRANCH2 -->|"Changes requested — switch to build"| DEEP_WORK

    DEEP_WORK --> BRANCH3{"Need a review?"}
    BRANCH3 -->|"Open a PR"| PR_REVIEW
    BRANCH3 -->|"Keep building"| DEEP_WORK
    BRANCH3 -->|"Done for now"| WRAP["Session Wrap"]

    WRAP --> EXIT{"All items complete?"}
    EXIT -->|"Yes"| DONE(["Session Complete"])
    EXIT -->|"No — save for later"| SAVED(["Stashed for Next Session"])