maestro-flow 0.3.48 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/agents/impeccable-agent.md +99 -0
- package/.claude/commands/maestro-analyze.md +2 -2
- package/.claude/commands/maestro-brainstorm.md +116 -112
- package/.claude/commands/maestro-composer.md +5 -0
- package/.claude/commands/maestro-impeccable.md +231 -74
- package/.claude/commands/maestro-merge.md +3 -0
- package/.claude/commands/maestro-roadmap.md +5 -1
- package/.claude/commands/maestro.md +3 -3
- package/.claude/commands/manage-issue-discover.md +4 -0
- package/.claude/commands/quality-refactor.md +3 -0
- package/.claude/skills/maestro-help/index/catalog.json +1 -1
- package/.claude/skills/maestro-help/phases/01-parse-intent.md +1 -1
- package/.codex/skills/maestro/SKILL.md +70 -28
- package/.codex/skills/maestro-brainstorm/SKILL.md +19 -2
- package/.codex/skills/maestro-composer/SKILL.md +5 -0
- package/.codex/skills/maestro-help/catalog.json +1 -1
- package/.codex/skills/maestro-impeccable/SKILL.md +230 -97
- package/.codex/skills/maestro-merge/SKILL.md +3 -0
- package/.codex/skills/maestro-milestone-audit/SKILL.md +64 -7
- package/.codex/skills/maestro-quick/SKILL.md +1 -1
- package/.codex/skills/maestro-roadmap/SKILL.md +1 -1
- package/.codex/skills/maestro-tools-execute/SKILL.md +1 -1
- package/.codex/skills/maestro-tools-register/SKILL.md +1 -1
- package/.codex/skills/quality-refactor/SKILL.md +114 -22
- package/chains/_intent-map.json +1 -1
- package/chains/singles/ui-design.json +4 -4
- package/chains/{ui-design-driven.json → ui-craft-build.json} +8 -8
- package/dashboard/dist-server/dashboard/src/server/coordinator/chain-map.js +3 -3
- package/dashboard/dist-server/dashboard/src/server/coordinator/chain-map.js.map +1 -1
- package/dist/src/commands/delegate.d.ts.map +1 -1
- package/dist/src/commands/delegate.js +12 -7
- package/dist/src/commands/delegate.js.map +1 -1
- package/dist/src/commands/impeccable.d.ts +2 -1
- package/dist/src/commands/impeccable.d.ts.map +1 -1
- package/dist/src/commands/impeccable.js +80 -1
- package/dist/src/commands/impeccable.js.map +1 -1
- package/package.json +1 -1
- package/templates/planning-roles/ui-designer.md +86 -99
- package/templates/workflows/specs/node-catalog.md +1 -1
- package/workflows/brainstorm.md +26 -0
- package/workflows/cli-tools-usage.md +9 -26
- package/workflows/delegate-usage.md +301 -343
- package/workflows/impeccable/design.md +462 -0
- package/workflows/impeccable/explore.md +157 -0
- package/workflows/impeccable/shape.md +4 -0
- package/workflows/impeccable/ui-search/__pycache__/core.cpython-313.pyc +0 -0
- package/workflows/impeccable/ui-search/__pycache__/design_system.cpython-313.pyc +0 -0
- package/workflows/impeccable/ui-search/core.py +262 -0
- package/workflows/impeccable/ui-search/data/app-interface.csv +31 -0
- package/workflows/impeccable/ui-search/data/charts.csv +26 -0
- package/workflows/impeccable/ui-search/data/colors.csv +162 -0
- package/workflows/impeccable/ui-search/data/design.csv +1776 -0
- package/workflows/impeccable/ui-search/data/draft.csv +1779 -0
- package/workflows/impeccable/ui-search/data/google-fonts.csv +1924 -0
- package/workflows/impeccable/ui-search/data/icons.csv +106 -0
- package/workflows/impeccable/ui-search/data/landing.csv +35 -0
- package/workflows/impeccable/ui-search/data/products.csv +162 -0
- package/workflows/impeccable/ui-search/data/react-performance.csv +45 -0
- package/workflows/impeccable/ui-search/data/stacks/angular.csv +51 -0
- package/workflows/impeccable/ui-search/data/stacks/astro.csv +54 -0
- package/workflows/impeccable/ui-search/data/stacks/flutter.csv +53 -0
- package/workflows/impeccable/ui-search/data/stacks/html-tailwind.csv +56 -0
- package/workflows/impeccable/ui-search/data/stacks/jetpack-compose.csv +53 -0
- package/workflows/impeccable/ui-search/data/stacks/laravel.csv +51 -0
- package/workflows/impeccable/ui-search/data/stacks/nextjs.csv +53 -0
- package/workflows/impeccable/ui-search/data/stacks/nuxt-ui.csv +51 -0
- package/workflows/impeccable/ui-search/data/stacks/nuxtjs.csv +59 -0
- package/workflows/impeccable/ui-search/data/stacks/react-native.csv +52 -0
- package/workflows/impeccable/ui-search/data/stacks/react.csv +54 -0
- package/workflows/impeccable/ui-search/data/stacks/shadcn.csv +61 -0
- package/workflows/impeccable/ui-search/data/stacks/svelte.csv +54 -0
- package/workflows/impeccable/ui-search/data/stacks/swiftui.csv +51 -0
- package/workflows/impeccable/ui-search/data/stacks/threejs.csv +54 -0
- package/workflows/impeccable/ui-search/data/stacks/vue.csv +50 -0
- package/workflows/impeccable/ui-search/data/styles.csv +85 -0
- package/workflows/impeccable/ui-search/data/typography.csv +74 -0
- package/workflows/impeccable/ui-search/data/ui-reasoning.csv +162 -0
- package/workflows/impeccable/ui-search/data/ux-guidelines.csv +100 -0
- package/workflows/impeccable/ui-search/design_system.py +1148 -0
- package/workflows/impeccable/ui-search/prototype-template.html +511 -0
- package/workflows/impeccable/ui-search/render-prototype.js +208 -0
- package/workflows/impeccable/ui-search/search.py +114 -0
- package/workflows/maestro-chain-execute.md +2 -2
- package/workflows/maestro.codex.md +3 -3
- package/workflows/maestro.md +107 -117
- package/workflows/plan.md +1 -1
- package/workflows/ui-design.md +1 -1
- package/workflows/ui-style.md +1 -1
- package/.claude/commands/maestro-ui-craft.md +0 -364
- package/.claude/commands/maestro-ui-design.md +0 -104
- package/.claude/skills/maestro-impeccable/SKILL.md +0 -169
- package/.codex/skills/maestro-ui-craft/SKILL.md +0 -341
- package/.codex/skills/maestro-ui-design/SKILL.md +0 -242
package/workflows/maestro.md
CHANGED
|
@@ -70,14 +70,14 @@ Short-circuit (execute immediately, no chain):
|
|
|
70
70
|
status/状态/dashboard → Skill({ skill: "manage-status" }). **End.**
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
-
### 2b:
|
|
73
|
+
### 2b: Semantic intent matching
|
|
74
74
|
|
|
75
|
-
|
|
75
|
+
Directly match user intent to the best `task_type` (maps to chain in chainMap). Use LLM semantic understanding — no rigid keyword lookup.
|
|
76
76
|
|
|
77
|
+
**Output:**
|
|
77
78
|
```json
|
|
78
79
|
{
|
|
79
|
-
"
|
|
80
|
-
"object": "<from object enum>",
|
|
80
|
+
"task_type": "<from chain catalog below>",
|
|
81
81
|
"scope": "<module/file/area or null>",
|
|
82
82
|
"issue_id": "<ISS-XXXXXXXX-NNN if mentioned, else null>",
|
|
83
83
|
"phase_ref": "<integer if mentioned, else null>",
|
|
@@ -85,86 +85,73 @@ Extract a structured intent tuple from user input. Leverages LLM semantic unders
|
|
|
85
85
|
}
|
|
86
86
|
```
|
|
87
87
|
|
|
88
|
-
**
|
|
89
|
-
|
|
90
|
-
|
|
|
91
|
-
|
|
92
|
-
| `
|
|
93
|
-
| `
|
|
94
|
-
| `
|
|
95
|
-
| `
|
|
96
|
-
| `
|
|
97
|
-
| `
|
|
98
|
-
| `
|
|
99
|
-
| `
|
|
100
|
-
| `debug` | Diagnose
|
|
101
|
-
| `refactor` | Restructure
|
|
102
|
-
| `
|
|
103
|
-
| `
|
|
104
|
-
| `
|
|
105
|
-
| `
|
|
106
|
-
| `
|
|
107
|
-
| `fork` |
|
|
108
|
-
| `merge` | Merge
|
|
109
|
-
| `
|
|
110
|
-
| `
|
|
111
|
-
| `
|
|
112
|
-
| `
|
|
113
|
-
| `
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
|
118
|
-
|
|
119
|
-
| `
|
|
120
|
-
| `
|
|
121
|
-
| `
|
|
122
|
-
| `
|
|
123
|
-
| `
|
|
124
|
-
| `
|
|
125
|
-
| `
|
|
126
|
-
| `
|
|
127
|
-
| `
|
|
128
|
-
| `
|
|
129
|
-
| `
|
|
130
|
-
| `
|
|
131
|
-
| `
|
|
132
|
-
| `
|
|
133
|
-
| `
|
|
134
|
-
| `
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
-
|
|
138
|
-
|
|
139
|
-
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
verify: default→verify
|
|
156
|
-
review: default→review
|
|
157
|
-
test: feature/code→test; default→test
|
|
158
|
-
debug: default→debug
|
|
159
|
-
refactor: default→refactor
|
|
160
|
-
manage: issue→issue, milestone→milestone_audit, phase→milestone_close, memory→knowhow, doc→sync, codebase→codebase_refresh, config→spec_setup, team→team_coordinate; default→status
|
|
161
|
-
transition: phase→milestone_close, milestone→milestone_complete; default→milestone_close
|
|
162
|
-
continue: default→state_continue
|
|
163
|
-
sync: doc→sync, codebase→codebase_refresh; default→sync
|
|
164
|
-
fork/merge/learn/retrospect/release/amend/compose: default→same name (retrospect→retrospective)
|
|
165
|
-
```
|
|
166
|
-
|
|
167
|
-
### 2d: Chain upgrade & clarity
|
|
88
|
+
**Chain catalog — select by best semantic fit:**
|
|
89
|
+
|
|
90
|
+
| task_type | When user intent is about... |
|
|
91
|
+
|-----------|---------------------------|
|
|
92
|
+
| `quick` | Simple/small task, add a feature, quick change |
|
|
93
|
+
| `plan` | Plan, design, architect a phase |
|
|
94
|
+
| `execute` | Implement, develop, code a phase |
|
|
95
|
+
| `analyze` | Understand, investigate, evaluate code |
|
|
96
|
+
| `verify` | Check goals met, validate results |
|
|
97
|
+
| `review` | Code quality review |
|
|
98
|
+
| `test` | Run or create tests, UAT |
|
|
99
|
+
| `test_gen` | Generate tests for coverage gaps |
|
|
100
|
+
| `debug` | Diagnose, troubleshoot, fix broken behavior |
|
|
101
|
+
| `refactor` | Restructure, clean up, reduce tech debt |
|
|
102
|
+
| `init` | Initialize project |
|
|
103
|
+
| `sync` | Update/sync documentation |
|
|
104
|
+
| `retrospective` | Phase review, post-mortem, 复盘 |
|
|
105
|
+
| `learn` | Capture insights, record learnings |
|
|
106
|
+
| `release` | Publish, ship, tag version |
|
|
107
|
+
| `fork` | Create worktree for parallel dev |
|
|
108
|
+
| `merge` | Merge worktree back |
|
|
109
|
+
| `amend` | Revise workflow commands |
|
|
110
|
+
| `compose` | Design/compose reusable workflows |
|
|
111
|
+
| `overlay` | Create/edit command overlays |
|
|
112
|
+
| `update` | Update maestro itself |
|
|
113
|
+
| `harvest` | Extract knowledge from artifacts |
|
|
114
|
+
| `wiki` | Manage wiki graph |
|
|
115
|
+
| `knowhow` | Manage knowhow entries |
|
|
116
|
+
| `impeccable_chain` | UI design — explore, general |
|
|
117
|
+
| `impeccable_build` | Build new UI from scratch |
|
|
118
|
+
| `impeccable_improve` | Improve/fix existing UI |
|
|
119
|
+
| `issue` | Issue CRUD — create, list, close, query |
|
|
120
|
+
| `issue_discover` | Discover/find issues in codebase |
|
|
121
|
+
| `issue_analyze` | Analyze a specific issue |
|
|
122
|
+
| `issue_plan` | Plan fix for an issue |
|
|
123
|
+
| `issue_execute` | Fix issue end-to-end (auto-upgrades to issue-full) |
|
|
124
|
+
| `team_coordinate` | Team multi-agent coordination (general) |
|
|
125
|
+
| `team_review` | Team code review |
|
|
126
|
+
| `team_test` | Team testing |
|
|
127
|
+
| `team_qa` | Team QA, debugging |
|
|
128
|
+
| `team_tech_debt` | Team tech debt remediation |
|
|
129
|
+
| `team_lifecycle` | Team full lifecycle (plan+dev+test+review) |
|
|
130
|
+
| `full-lifecycle` | Complete phase: plan→execute→verify→review→test→audit |
|
|
131
|
+
| `brainstorm-driven` | Start from exploration/brainstorm |
|
|
132
|
+
| `spec-driven` | From spec/requirements (heavy, with init) |
|
|
133
|
+
| `roadmap-driven` | From requirements (light, with init) |
|
|
134
|
+
| `analyze-plan-execute` | Fast track: analyze→plan→execute |
|
|
135
|
+
| `execute-verify` | Resume after planning |
|
|
136
|
+
| `review-fix` | Fix review-blocked issues |
|
|
137
|
+
| `quality-loop` | Full quality improvement cycle |
|
|
138
|
+
| `quality-loop-partial` | Partial quality fix |
|
|
139
|
+
| `milestone-close` | Close/transition milestone |
|
|
140
|
+
| `milestone-release` | Release milestone with version tag |
|
|
141
|
+
| `next-milestone` | Advance to next milestone |
|
|
142
|
+
| `state_continue` | Continue from current project state |
|
|
143
|
+
|
|
144
|
+
**Selection priorities:**
|
|
145
|
+
1. `issue_id` present → prefer issue chains
|
|
146
|
+
2. "team" context → prefer team chains
|
|
147
|
+
3. UI/design/界面/页面/原型 → prefer impeccable chains
|
|
148
|
+
4. Multiple lifecycle steps implied → prefer multi-step chains
|
|
149
|
+
5. Single specific action → prefer single-step chains
|
|
150
|
+
6. "问题" describing broken behavior → `debug`; tracked item with ISS-ID → `issue`; ambiguous → `debug`
|
|
151
|
+
7. Simple task, no lifecycle context → `quick`
|
|
152
|
+
8. Global fallback → `quick`
|
|
153
|
+
|
|
154
|
+
### 2c: Chain upgrade & clarity
|
|
168
155
|
|
|
169
156
|
**State-aware chain upgrade:**
|
|
170
157
|
- `issue_execute` → auto-upgrade to `issue-full` (appends review gate)
|
|
@@ -233,7 +220,7 @@ Step type is selected **per step**, not per chain. Pre-compute and write to each
|
|
|
233
220
|
```
|
|
234
221
|
If execMode is 'cli' or 'internal' → force that type for all steps ("cli" or "skill").
|
|
235
222
|
In 'auto' mode, select per step:
|
|
236
|
-
CLI steps (heavy, context-isolated): maestro-plan, maestro-execute, maestro-analyze, maestro-brainstorm, maestro-roadmap, maestro-
|
|
223
|
+
CLI steps (heavy, context-isolated): maestro-plan, maestro-execute, maestro-analyze, maestro-brainstorm, maestro-roadmap, maestro-impeccable, quality-refactor → type: "cli"
|
|
237
224
|
Skill steps (everything else): current-session Skill() call — verify, review, test, debug, milestone-*, manage-*, spec-*, quick, etc. → type: "skill"
|
|
238
225
|
```
|
|
239
226
|
|
|
@@ -318,10 +305,10 @@ const chainMap = {
|
|
|
318
305
|
'init': [{ cmd: 'maestro-init' }],
|
|
319
306
|
'analyze': [{ cmd: 'maestro-analyze', args: '{phase}' }],
|
|
320
307
|
'analyze-quick': [{ cmd: 'maestro-analyze', args: '{phase} -q' }],
|
|
321
|
-
'ui_design': [{ cmd: 'maestro-
|
|
322
|
-
'
|
|
323
|
-
'
|
|
324
|
-
'
|
|
308
|
+
'ui_design': [{ cmd: 'maestro-impeccable', args: '"{description}" --chain build' }],
|
|
309
|
+
'impeccable_chain': [{ cmd: 'maestro-impeccable', args: '"{description}"' }],
|
|
310
|
+
'impeccable_build': [{ cmd: 'maestro-impeccable', args: '"{description}" --chain build' }],
|
|
311
|
+
'impeccable_improve': [{ cmd: 'maestro-impeccable', args: '"{description}" --chain improve' }],
|
|
325
312
|
'plan': [{ cmd: 'maestro-plan', args: '{phase}' }],
|
|
326
313
|
'execute': [{ cmd: 'maestro-execute', args: '{phase}' }],
|
|
327
314
|
'verify': [{ cmd: 'maestro-verify', args: '{phase}' }],
|
|
@@ -370,8 +357,8 @@ const chainMap = {
|
|
|
370
357
|
'spec-driven': [{ cmd: 'maestro-init' }, { cmd: 'maestro-roadmap', args: '--mode full "{description}"' }, { cmd: 'maestro-plan', args: '{phase}' }, { cmd: 'maestro-execute', args: '{phase}' }, { cmd: 'maestro-verify', args: '{phase}' }],
|
|
371
358
|
'roadmap-driven': [{ cmd: 'maestro-init' }, { cmd: 'maestro-roadmap', args: '"{description}"' }, { cmd: 'maestro-plan', args: '{phase}' }, { cmd: 'maestro-execute', args: '{phase}' }, { cmd: 'maestro-verify', args: '{phase}' }],
|
|
372
359
|
'brainstorm-driven': [{ cmd: 'maestro-brainstorm', args: '"{description}"' }, { cmd: 'maestro-plan', args: '{phase}' }, { cmd: 'maestro-execute', args: '{phase}' }, { cmd: 'maestro-verify', args: '{phase}' }],
|
|
373
|
-
'
|
|
374
|
-
'
|
|
360
|
+
'impeccable-build': [{ cmd: 'maestro-impeccable', args: '"{description}" --chain build' }, { cmd: 'maestro-plan', args: '{phase}' }, { cmd: 'maestro-execute', args: '{phase}' }, { cmd: 'maestro-verify', args: '{phase}' }],
|
|
361
|
+
'impeccable-driven': [{ cmd: 'maestro-impeccable', args: '"{description}" --chain build' }, { cmd: 'maestro-verify', args: '{phase}' }],
|
|
375
362
|
'analyze-plan-execute': [{ cmd: 'maestro-analyze', args: '"{description}" -q' }, { cmd: 'maestro-plan', args: '--dir {scratch_dir}' }, { cmd: 'maestro-execute', args: '--dir {scratch_dir}' }],
|
|
376
363
|
'execute-verify': [{ cmd: 'maestro-execute', args: '{phase}' }, { cmd: 'maestro-verify', args: '{phase}' }],
|
|
377
364
|
'quality-loop': [{ cmd: 'maestro-verify', args: '{phase}' }, { cmd: 'quality-review', args: '{phase}' }, { cmd: 'quality-auto-test', args: '{phase}' }, { cmd: 'quality-test', args: '{phase}' }, { cmd: 'quality-debug', args: '--from-uat {phase}' }, { cmd: 'maestro-plan', args: '{phase} --gaps' }, { cmd: 'maestro-execute', args: '{phase}' }],
|
|
@@ -440,7 +427,7 @@ detectNextAction(state):
|
|
|
440
427
|
| `spec-driven` | init → spec-generate → plan → execute → verify | From idea/requirements (heavy) |
|
|
441
428
|
| `roadmap-driven` | init → roadmap → plan → execute → verify | From requirements (light) |
|
|
442
429
|
| `brainstorm-driven` | brainstorm → plan → execute → verify | From exploration |
|
|
443
|
-
| `
|
|
430
|
+
| `impeccable-build` | impeccable --chain build → plan → execute → verify | From design system generation |
|
|
444
431
|
| `analyze-plan-execute` | analyze -q → plan --dir → execute --dir | Fast track (scratch mode) |
|
|
445
432
|
| `execute-verify` | execute → verify | Resume after planning |
|
|
446
433
|
| `review-fix` | plan --gaps → execute → review | Fix review-blocked issues |
|
|
@@ -454,31 +441,34 @@ detectNextAction(state):
|
|
|
454
441
|
|
|
455
442
|
### Pipeline Examples
|
|
456
443
|
|
|
457
|
-
| Input |
|
|
458
|
-
|
|
459
|
-
| `"continue"` | *(exact
|
|
460
|
-
| `"status"` | *(exact
|
|
461
|
-
| `"
|
|
462
|
-
| `"
|
|
463
|
-
| `"
|
|
464
|
-
| `"run tests"` |
|
|
465
|
-
| `"debug auth crash"` |
|
|
466
|
-
| `"修复登录问题"` |
|
|
467
|
-
| `"fix issue ISS-abc-001"` |
|
|
468
|
-
| `"这个问题需要看看"` |
|
|
469
|
-
| `"创建一个 issue 跟踪"` |
|
|
470
|
-
| `"discover issues"` |
|
|
471
|
-
| `"brainstorm notifications"` |
|
|
472
|
-
| `"spec generate auth"` |
|
|
473
|
-
| `"ui design landing"` |
|
|
474
|
-
| `"
|
|
475
|
-
| `"
|
|
476
|
-
| `"
|
|
477
|
-
| `"
|
|
478
|
-
|
|
|
479
|
-
|
|
|
480
|
-
| `"
|
|
481
|
-
| `"
|
|
444
|
+
| Input | task_type | Chain |
|
|
445
|
+
|-------|-----------|-------|
|
|
446
|
+
| `"continue"` | *(2a exact)* state_continue | (from state) |
|
|
447
|
+
| `"status"` | *(2a exact)* status | manage-status |
|
|
448
|
+
| `"plan phase 2"` | plan | maestro-plan 2 |
|
|
449
|
+
| `"execute"` | execute | maestro-execute |
|
|
450
|
+
| `"Add API endpoint"` | quick | maestro-quick |
|
|
451
|
+
| `"run tests"` | test | quality-test |
|
|
452
|
+
| `"debug auth crash"` | debug | quality-debug "auth crash" |
|
|
453
|
+
| `"修复登录问题"` | debug | quality-debug "登录" |
|
|
454
|
+
| `"fix issue ISS-abc-001"` | issue_execute | issue-full |
|
|
455
|
+
| `"这个问题需要看看"` | analyze | maestro-analyze |
|
|
456
|
+
| `"创建一个 issue 跟踪"` | issue | manage-issue |
|
|
457
|
+
| `"discover issues"` | issue_discover | manage-issue-discover |
|
|
458
|
+
| `"brainstorm notifications"` | brainstorm-driven | brainstorm→plan→execute→verify |
|
|
459
|
+
| `"spec generate auth"` | spec-driven | init→spec→plan→execute→verify |
|
|
460
|
+
| `"ui design landing"` | impeccable_build | maestro-impeccable --chain build |
|
|
461
|
+
| `"优化界面交互"` | impeccable_improve | maestro-impeccable --chain improve |
|
|
462
|
+
| `"refactor auth module"` | refactor | quality-refactor "auth module" |
|
|
463
|
+
| `"复盘 phase 2"` | retrospective | quality-retrospective 2 |
|
|
464
|
+
| `"team review code"` | team_review | team-review |
|
|
465
|
+
| `"next phase"` | milestone-close | audit→complete |
|
|
466
|
+
| `-y "implement X"` | execute | maestro-execute (auto) |
|
|
467
|
+
| `"release v1.2"` | release | maestro-milestone-release |
|
|
468
|
+
| `"从需求开始做完整个项目"` | spec-driven | init→spec→plan→execute→verify |
|
|
469
|
+
| `"分析完直接改"` | analyze-plan-execute | analyze→plan→execute |
|
|
470
|
+
| `"review 有问题需要修"` | review-fix | plan --gaps→execute→review |
|
|
471
|
+
| `"全面质量检查"` | quality-loop | verify→review→test→debug→plan→execute |
|
|
482
472
|
|
|
483
473
|
### Error Codes
|
|
484
474
|
|
package/workflows/plan.md
CHANGED
|
@@ -84,7 +84,7 @@ default → Create Mode: P1 → P2 → P3 → P4 → P4.5 → P5
|
|
|
84
84
|
4b. **Load design reference** (if available)
|
|
85
85
|
- If `${PHASE_DIR}/design-ref/MASTER.md` exists: load MASTER.md, design-tokens.json, animation-tokens.json (optional), layout-templates/layout-*.json
|
|
86
86
|
- Every UI task must include in `read_first[]`: design-tokens.json, animation-tokens.json, relevant layout-*.json, MASTER.md
|
|
87
|
-
- Else if phase goal matches UI keywords (`landing|page|dashboard|frontend|UI|component|界面`): suggest running `maestro-
|
|
87
|
+
- Else if phase goal matches UI keywords (`landing|page|dashboard|frontend|UI|component|界面`): suggest running `maestro-impeccable --chain build` (non-blocking)
|
|
88
88
|
|
|
89
89
|
5. **Load upstream analysis** (if available)
|
|
90
90
|
- If `${PHASE_DIR}/conclusions.json` exists with non-empty status: load as explorationContext (conclusions + explorations.json + perspectives.json)
|
package/workflows/ui-design.md
CHANGED
|
@@ -364,7 +364,7 @@ Spacing & Layout, Effects & Interactions, Component Styles, Animation System, An
|
|
|
364
364
|
|
|
365
365
|
`maestro-plan` P1 (Context Collection):
|
|
366
366
|
- If `${PHASE_DIR}/design-ref/MASTER.md` exists: load as planner context, add `design-tokens.json`, `layout-templates/layout-*.json`, `animation-tokens.json` to UI task `read_first[]`
|
|
367
|
-
- If missing + phase goal has UI keywords: suggest `maestro-
|
|
367
|
+
- If missing + phase goal has UI keywords: suggest `maestro-impeccable --chain build` (non-blocking)
|
|
368
368
|
|
|
369
369
|
---
|
|
370
370
|
|
package/workflows/ui-style.md
CHANGED
|
@@ -169,7 +169,7 @@ If the design needs exceed ui-ux-pro-max capabilities (e.g., multi-layout matrix
|
|
|
169
169
|
|
|
170
170
|
```
|
|
171
171
|
For advanced multi-layer design exploration:
|
|
172
|
-
|
|
172
|
+
/maestro-impeccable --chain build {target}
|
|
173
173
|
```
|
|
174
174
|
|
|
175
175
|
---
|