Commit 30a2b10
cw
feat: add 12-domain task system with rich UI cards, chat persistence, and voice toggle
- Add TaskDomain architecture: 12 domains (calculator, calendar, contacts,
email, files, messages, music, notes, reminders, timer, translation,
weather) with 34 task types via DomainRegistry + DomainPluginAdapter
- Add domain pattern matching in Flutter for quick-path routing before
AI fallback, with IntentRecognizer integration
- Add 8 specialized domain card widgets (calculator, calendar, music,
timer, reminders, weather, generic, domain_card_registry) with
success-aware titles that show error states properly
- Add chat message persistence via SharedPreferences (last 100 messages,
filters image_base64 blobs)
- Add ChatMessage toJson/fromJson serialization
- Change voice input from long-press to tap-toggle with AnimatedContainer
- Add domain E2E test suite (29/34 pass across 12 domains)
- Add stress test report: 36 complex NL commands at 81% accuracy
Tested on real iOS simulator (iPhone 16 Pro) with 36 commands including
13 very long story-like sentences (40-53 words each).1 parent 265e01c commit 30a2b10
41 files changed
Lines changed: 5414 additions & 12 deletions
File tree
- daemon/lib
- core
- domains
- calculator
- calendar
- contacts
- email
- files_media
- messages
- music
- notes
- reminders
- timer
- translation
- weather
- opencli_app
- ios
- lib
- models
- pages
- services
- widgets
- domain_cards
- macos/Flutter
- test-results
- tests
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| 19 | + | |
| 20 | + | |
19 | 21 | | |
20 | 22 | | |
21 | 23 | | |
| |||
31 | 33 | | |
32 | 34 | | |
33 | 35 | | |
| 36 | + | |
34 | 37 | | |
35 | 38 | | |
36 | 39 | | |
| |||
146 | 149 | | |
147 | 150 | | |
148 | 151 | | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
149 | 170 | | |
150 | 171 | | |
151 | 172 | | |
| |||
320 | 341 | | |
321 | 342 | | |
322 | 343 | | |
| 344 | + | |
| 345 | + | |
| 346 | + | |
323 | 347 | | |
324 | 348 | | |
325 | 349 | | |
| |||
354 | 378 | | |
355 | 379 | | |
356 | 380 | | |
| 381 | + | |
357 | 382 | | |
358 | 383 | | |
359 | 384 | | |
360 | 385 | | |
361 | 386 | | |
| 387 | + | |
| 388 | + | |
| 389 | + | |
362 | 390 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
1 | 2 | | |
2 | 3 | | |
| 4 | + | |
| 5 | + | |
3 | 6 | | |
4 | 7 | | |
5 | 8 | | |
| 9 | + | |
6 | 10 | | |
7 | 11 | | |
8 | 12 | | |
9 | 13 | | |
10 | 14 | | |
11 | 15 | | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
12 | 21 | | |
13 | 22 | | |
14 | 23 | | |
| |||
23 | 32 | | |
24 | 33 | | |
25 | 34 | | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
26 | 67 | | |
27 | 68 | | |
28 | 69 | | |
| |||
44 | 85 | | |
45 | 86 | | |
46 | 87 | | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
47 | 97 | | |
48 | 98 | | |
49 | 99 | | |
| |||
53 | 103 | | |
54 | 104 | | |
55 | 105 | | |
56 | | - | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
57 | 114 | | |
58 | | - | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
59 | 126 | | |
60 | 127 | | |
61 | 128 | | |
62 | 129 | | |
63 | 130 | | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
64 | 152 | | |
65 | 153 | | |
66 | 154 | | |
| |||
0 commit comments