If you have read David Allen’s Getting Things Done book and you’d like to have the Diagram Workflow in your vault, here’s my first handcrafted SVG on Github. Preview screenshot:
Thanks to ryanjamurphy#7924
for the suggestion to share it here.
If you have read David Allen’s Getting Things Done book and you’d like to have the Diagram Workflow in your vault, here’s my first handcrafted SVG on Github. Preview screenshot:
Thanks to ryanjamurphy#7924
for the suggestion to share it here.
Update available so the file can be embedded in Obsidian when stored as an attachment file. It behaves a little weird so I’ll probably improve this soon
This is the mermaid chart I made for it, but tbh I much prefer the embedded screenshot of the chart I grabbed
```mermaid
flowchart TD
A["stuff"] --> B(Inbox)
B --> C{Is it actionable?}
C -->|No| D{Organize}
C -->|Yes| E{What's the next action?}
D --> F(Trash)
D --> G(Someday file)
D --> H(Reference material)
E --> |Project| I(Add to project plan file)
I --> E
E --> |<2 minutes?| K(Do it now)
E --> |Delegate?| M(Add to waiting list)
E --> |Specific to time/day?| O(Add to calendar)
E --> P(Add to Next Actions list)