1// Process flow for Skill(developing-breakdown-plan).2// cspell:ignore Tpng rankdir fontname3// Render with: dot -Tpng process-flow.dot -o process-flow.png4//5// Boxes are activities; diamonds are decision points; ellipses are terminal states.6// Both fresh and resume entry points run the gates first. On resume, after gates7// pass, Triage dispatches to the next unfinished activity. Self-review issues are8// fixed inline (loop back to SelfReview, not back through Activities 1-4). The9// optional Prototype step runs after the breakdown is reviewer-ready.1011digraph developing_the_breakdown_plan {12 rankdir=TB;13 node [fontname="Helvetica"];14 edge [fontname="Helvetica"];1516 Start [shape=ellipse, label="Start"];17 EntryMode [shape=diamond, label="Fresh or resume?"];18