mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-15 21:46:29 +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
877 B
Markdown
25 lines
877 B
Markdown
# Developer Triage — Decision Map
|
|
|
|
```mermaid
|
|
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"])
|
|
```
|