Files
magnus919_agent-skills/bundles/workflow-architect/references/example-output/developer-triage/decision-map.md
T
Magnus Hedemark 79cf37a44a feat: add workflow-architect bundle — meta-skill for workflow discovery and skills bundle generation
A new Agent Skills bundle that helps users discover their actual workflow
through two modes:

- Active interrogation: guided 8-15 question interview that adapts based on
  answers, building a structured model of the user's workflow phases,
  branching signals, tool preferences, and friction points

- Passive observation: loads silently, then on trigger phrase scans session
  context to infer workflow patterns from what actually happened

The output is a skills bundle: sub-skills per workflow phase with trigger
conditions, a manifest, a Mermaid decision map, and optionally a kanban
board if the workflow is deterministic/linear.

Ships 3 sub-skills (interviewer, observer, bundle-builder), 3 reference
documents (workflow archetypes, trigger condition patterns, kanban
decision criteria), 4 templates, and a worked example output bundle.

Also fixes broken table formatting in AGENTS.md (extra pipe characters
in trigger table rows).
2026-05-29 21:29:56 -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"])