Strategies for staying focused and productive with ADHD.
Provides ADHD-friendly workflow strategies using external memory commands to maintain focus and productivity.
/plugin marketplace add Data-Wise/craft/plugin install data-wise-craft@Data-Wise/craftworkflow/Strategies for staying focused and productive with ADHD.
Externalize your memory. Your brain is for thinking, not remembering.
1. cd ~/projects/my-project
2. /workflow:recap # Restores context instantly
3. /git:sync # Get latest changes
4. /workflow:next # "What should I do?"
Why this works:
1. /workflow:done # Captures progress
2. /git:commit # Saves work
3. /git:sync # Backs up to cloud
Why this works:
/git:commit # Save progress
Why:
/workflow:brain-dump "the idea"
Immediately! Don't think "I'll remember" - you won't.
Why:
/workflow:stuck
Don't wait 30+ minutes!
Why:
ADHD = many interruptions. Handle them:
/workflow:brain-dump "current thought + next step"
Example:
/workflow:brain-dump "fixing login bug, next try adding debug logging to auth.js line 45"
1. /workflow:recap # Restore context
2. cat NOTES.md # Read brain dump
3. Resume work
Time saved: 5-15 minutes of "where was I?"
/workflow:focus
What it does:
When to use:
1. /workflow:focus 25 # 25-minute focus
2. [work on ONE thing]
3. Timer rings → take 5-min break
4. /workflow:brain-dump "progress"
5. Repeat
Why Pomodoro works for ADHD:
Quick thoughts (30 seconds):
/workflow:brain-dump "add dark mode to settings"
Structured thinking (5-10 minutes):
/workflow:brainstorm "dark mode implementation"
Brain-dump:
Brainstorm:
Weekly review:
1. cat NOTES.md
2. /workflow:brainstorm "review ideas"
3. Archive old notes:
mv NOTES.md NOTES-$(date +%Y%m).md
4. touch NOTES.md
Solution:
/git:commitOr: GitHub Desktop app (shows uncommitted)
Solution:
1. /workflow:recap # See what's in progress
2. /workflow:next # Pick ONE
3. /workflow:focus 25 # Pomodoro on it
4. /workflow:done # Mark complete
Rule: Finish before starting new
Solution:
# Before closing tabs:
/workflow:brain-dump "interesting links: [paste URLs]"
# Now close all tabs
# Revisit later when relevant
Solution:
# After learning something:
/workflow:brain-dump "learned: [key points]"
# Weekly:
grep "learned:" NOTES.md
Solution:
/workflow:next to verify priority.STATUS file regularlyKeep in every project:
project: my-project
status: active
priority: P1
progress: 40
# What I'm doing
Building user authentication
# What's done
✅ Database schema
✅ Login API
# What's next
→ Password reset flow
# Blockers
- Waiting on design review
Why:
/workflow:recap reads this/workflow:doneThe command updates it automatically:
You don't have to remember to update it.
ADHD = often juggling projects
Leaving Project A:
/workflow:done # Save context A
/git:sync # Back up
Entering Project B:
cd ~/projects/project-b
/workflow:recap # Load context B
/workflow:next # Start working
Critical: Always /workflow:done before switching
Low mental energy:
/workflow:recap # Easy, just reading
/git:sync # Automated
/workflow:next # Get direction
Don't start hard work yet
Use for:
/workflow:focus sessionsUse for:
/workflow:done # Just capturing
/git:commit # Simple action
/git:sync # Automated
Don't try to start new things
DON'T:
DO:
/workflow:recap # Remember for you
/workflow:done # Track for you
/workflow:brain-dump # Capture for you
/git:commit # Save for you
Questions to eliminate:
/workflow:next decides# See what you did today:
git log --oneline --since="8am"
# See progress:
cat .STATUS
# See ideas captured:
cat NOTES.md
Why: ADHD needs external validation of progress
1. /workflow:focus # Close distractions
2. /workflow:next # One clear task
3. Set 25-min timer
4. Work ONLY on that
5. /git:commit # Save progress
6. Repeat until done
7. /workflow:done # Capture for later
Don't:
Do:
1. /workflow:recap # Where am I?
2. /workflow:brain-dump "feeling burned out"
3. Pick smallest possible task
4. /git:commit # Any progress counts
5. /workflow:done # Capture what you did
Progress ≠ Perfection
User's ADHD workflow:
work <project> # Jumps to project + shows context
finish # Runs /workflow:done + commits
dash # Dashboard of all projects
Combine with commands:
work medfit # Switch project
/workflow:recap # Load context
/workflow:next # Start working
# Workflow → Git integration
/workflow:done # Suggests commit message
/git:commit # Uses suggestion
/git:sync # Push to remote
All research/teaching projects have .STATUS:
/workflow:recap # Reads .STATUS automatically
/workflow:done # Updates .STATUS
Start work: /workflow:recap → /workflow:next
During work: /git:commit every 30-60 min
Random idea: /workflow:brain-dump immediately
Stuck: /workflow:stuck after 10 min
End work: /workflow:done → /git:sync
Remember:
See also:
/workflow - Workflow hub/help workflows - Command sequences/help - Getting started