You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: comprehensive v3.4.0 documentation for AI and dashboard features
- ai.md: Added recipe, chat, usage, model subcommands with examples
- dash.md: Added Quick Wins section and Urgency Indicators documentation
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/commands/ai.md
+118-7Lines changed: 118 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,114 @@
6
6
7
7
```bash
8
8
flow ai [options] <query>
9
+
flow ai recipe <name> [input]
10
+
flow ai chat [options]
11
+
flow ai usage [action]
12
+
flow ai model [action]
9
13
```
10
14
11
15
## Description
12
16
13
17
`flow ai` sends queries to Claude with automatic project context. The AI receives information about your current directory, project type, git status, and active flow session.
14
18
19
+
## Subcommands
20
+
21
+
### recipe
22
+
23
+
Run reusable AI prompts with variable substitution.
24
+
25
+
```bash
26
+
flow ai recipe list # List all recipes
27
+
flow ai recipe show <name># View recipe content
28
+
flow ai recipe <name><input># Run a recipe
29
+
flow ai recipe create <name># Create custom recipe
Copy file name to clipboardExpand all lines: docs/commands/dash.md
+53Lines changed: 53 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -323,6 +323,59 @@ When displaying projects, priorities are color-coded:
323
323
324
324
---
325
325
326
+
## ⚡ Quick Wins Section (v3.4.0+)
327
+
328
+
The dashboard now includes a **Quick Wins** section showing tasks that can be completed in under 30 minutes. This is designed for ADHD-friendly productivity - easy wins to build momentum.
329
+
330
+
### Triggering Quick Wins
331
+
332
+
Projects appear in Quick Wins when their `.STATUS` file contains:
333
+
334
+
```yaml
335
+
# Option 1: Mark as quick win directly
336
+
quick_win: yes
337
+
338
+
# Option 2: Set estimate under 30 minutes
339
+
estimate: 15m
340
+
estimate: 20min
341
+
```
342
+
343
+
### Display
344
+
345
+
```
346
+
⚡ QUICK WINS (< 30 min)
347
+
├─ ⚡ flow-cli Fix typo in docs ~15m
348
+
├─ 🔥 medfit Update version number ~10m
349
+
└─ ⏰ stat-440 Post grades ~20m
350
+
```
351
+
352
+
---
353
+
354
+
## 🔥 Urgency Indicators (v3.4.0+)
355
+
356
+
Projects can show urgency indicators in the Quick Access and Quick Wins sections:
0 commit comments