@@ -7,7 +7,7 @@ This file provides guidance to Claude Code when working with code in this reposi
77** flow-cli** - Pure ZSH plugin for ADHD-optimized workflow management. Zero dependencies. Standalone (works without Oh-My-Zsh or any plugin manager).
88
99- ** Architecture:** Pure ZSH plugin (no Node.js runtime required)
10- - ** Current Version:** v6.7.1
10+ - ** Current Version:** v7.0.0
1111- ** Install:** Homebrew (recommended), or any plugin manager
1212- ** Optional:** Atlas integration for enhanced state management
1313- ** Health Check:** ` flow doctor ` for dependency verification
@@ -16,7 +16,7 @@ This file provides guidance to Claude Code when working with code in this reposi
1616### What It Does
1717
1818- Instant workflow commands: ` work ` , ` dash ` , ` finish ` , ` hop `
19- - 12 smart dispatchers: ` g ` , ` mcp ` , ` obs ` , ` qu ` , ` r ` , ` cc ` , ` tm ` , ` wt ` , ` dot ` , ` teach ` , ` prompt ` , ` v `
19+ - 13 smart dispatchers: ` g ` , ` mcp ` , ` obs ` , ` qu ` , ` r ` , ` cc ` , ` tm ` , ` wt ` , ` dot ` , ` teach ` , ` prompt ` , ` v ` , ` em `
2020- ADHD-friendly design (sub-10ms response, smart defaults)
2121- Session tracking, project switching, quick capture
2222- Teaching workflow with Scholar integration
@@ -126,7 +126,7 @@ yay --week # Weekly summary + graph
126126flow goal set 3 # Set daily win target
127127```
128128
129- ### Active Dispatchers (12 )
129+ ### Active Dispatchers (13 )
130130
131131``` bash
132132g < cmd> # Git workflows
@@ -141,6 +141,7 @@ dot <cmd> # Dotfile management
141141teach < cmd> # Teaching workflow
142142prompt < cmd> # Prompt engine switcher
143143v < cmd> # Vibe coding mode
144+ em < cmd> # Email management (himalaya)
144145```
145146
146147** Get help:** ` <dispatcher> help ` (e.g., ` r help ` , ` teach help ` )
@@ -172,20 +173,20 @@ v <cmd> # Vibe coding mode
172173```
173174flow-cli/
174175├── flow.plugin.zsh # Plugin entry point
175- ├── lib/ # Core libraries (63 files)
176+ ├── lib/ # Core libraries (69 files)
176177│ ├── core.zsh # Colors, logging, utilities
177178│ ├── git-helpers.zsh # Git integration + smart commits
178179│ ├── keychain-helpers.zsh # macOS Keychain secrets
179180│ ├── tui.zsh # Terminal UI components
180- │ └── dispatchers/ # 12 smart command dispatchers
181+ │ └── dispatchers/ # 13 smart command dispatchers
181182├── commands/ # 31 command files (work, dash, doctor, teach-*, etc.)
182183├── setup/ # Installation & setup
183184├── completions/ # ZSH completions
184185├── hooks/ # ZSH hooks
185186├── docs/ # Documentation (MkDocs)
186187│ └── internal/ # Internal conventions & contributor templates
187188├── scripts/ # Standalone validators (check-math.zsh)
188- ├── tests/ # 144 test files, 8000+ test functions
189+ ├── tests/ # 148 test files, 8000+ test functions
189190│ └── fixtures/demo-course/ # STAT-101 demo course for E2E
190191└── .archive/ # Archived Node.js CLI
191192```
@@ -196,7 +197,7 @@ flow-cli/
196197| ------------------------------------------- | ----------------------------------------- |
197198| ` flow.plugin.zsh ` | Plugin entry point (source to load) |
198199| ` lib/core.zsh ` | Core utilities (logging, colors, helpers) |
199- | ` lib/dispatchers/*.zsh ` | 12 smart dispatchers |
200+ | ` lib/dispatchers/*.zsh ` | 13 smart dispatchers |
200201| ` commands/*.zsh ` | Core commands (work, dash, finish, etc.) |
201202| ` docs/reference/MASTER-DISPATCHER-GUIDE.md ` | Complete dispatcher docs |
202203| ` docs/reference/MASTER-API-REFERENCE.md ` | API function reference |
@@ -252,7 +253,7 @@ Update: `MASTER-DISPATCHER-GUIDE.md`, `QUICK-REFERENCE.md`, `mkdocs.yml`
252253
253254## Testing
254255
255- ** 144 test files, 8000+ test functions.** Run: ` ./tests/run-all.sh ` (43/43 passing, 0 timeouts ) or individual suites in ` tests/ ` .
256+ ** 148 test files, 8000+ test functions.** Run: ` ./tests/run-all.sh ` (45/45 passing, 1 expected timeout ) or individual suites in ` tests/ ` .
256257
257258See ` docs/guides/TESTING.md ` for patterns, mocks, assertions, TDD workflow.
258259
@@ -280,8 +281,8 @@ export FLOW_DEBUG=1 # Debug mode
280281
281282## Current Status
282283
283- ** Version:** v6.7.1 | ** Tests:** 8000+ (43/43 suite) | ** Docs:** https://Data-Wise.github.io/flow-cli/
284+ ** Version:** v7.0.0 | ** Tests:** 8000+ (45/45 suite) | ** Docs:** https://Data-Wise.github.io/flow-cli/
284285
285286---
286287
287- ** Last Updated:** 2026-02-10 (v6.7.1 )
288+ ** Last Updated:** 2026-02-10 (v7.0.0 )
0 commit comments