@xenonbyte/da-vinci-workflow 0.1.19 → 0.1.21

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.
Files changed (56) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/README.md +40 -54
  3. package/README.zh-CN.md +34 -54
  4. package/SKILL.md +4 -0
  5. package/commands/claude/dv/build.md +6 -0
  6. package/commands/claude/dv/continue.md +5 -0
  7. package/commands/codex/prompts/dv-build.md +4 -0
  8. package/commands/codex/prompts/dv-continue.md +5 -0
  9. package/commands/gemini/dv/build.toml +4 -0
  10. package/commands/gemini/dv/continue.toml +5 -0
  11. package/docs/codex-natural-language-usage.md +3 -0
  12. package/docs/dv-command-reference.md +10 -0
  13. package/docs/mode-use-cases.md +2 -0
  14. package/docs/pencil-rendering-workflow.md +16 -0
  15. package/docs/prompt-entrypoints.md +7 -0
  16. package/docs/prompt-presets/README.md +2 -0
  17. package/docs/prompt-presets/desktop-app.md +4 -0
  18. package/docs/prompt-presets/mobile-app.md +4 -0
  19. package/docs/prompt-presets/tablet-app.md +4 -0
  20. package/docs/prompt-presets/web-app.md +4 -0
  21. package/docs/visual-adapters.md +24 -80
  22. package/docs/visual-assist-presets/desktop-app.md +20 -68
  23. package/docs/visual-assist-presets/mobile-app.md +20 -68
  24. package/docs/visual-assist-presets/tablet-app.md +20 -68
  25. package/docs/visual-assist-presets/web-app.md +20 -68
  26. package/docs/workflow-examples.md +2 -0
  27. package/docs/workflow-overview.md +11 -0
  28. package/docs/zh-CN/codex-natural-language-usage.md +3 -0
  29. package/docs/zh-CN/dv-command-reference.md +10 -0
  30. package/docs/zh-CN/mode-use-cases.md +2 -0
  31. package/docs/zh-CN/pencil-rendering-workflow.md +16 -0
  32. package/docs/zh-CN/prompt-entrypoints.md +7 -0
  33. package/docs/zh-CN/prompt-presets/README.md +2 -0
  34. package/docs/zh-CN/prompt-presets/desktop-app.md +3 -0
  35. package/docs/zh-CN/prompt-presets/mobile-app.md +3 -0
  36. package/docs/zh-CN/prompt-presets/tablet-app.md +3 -0
  37. package/docs/zh-CN/prompt-presets/web-app.md +3 -0
  38. package/docs/zh-CN/visual-adapters.md +24 -80
  39. package/docs/zh-CN/visual-assist-presets/desktop-app.md +20 -68
  40. package/docs/zh-CN/visual-assist-presets/mobile-app.md +20 -68
  41. package/docs/zh-CN/visual-assist-presets/tablet-app.md +20 -68
  42. package/docs/zh-CN/visual-assist-presets/web-app.md +20 -68
  43. package/docs/zh-CN/workflow-examples.md +2 -0
  44. package/docs/zh-CN/workflow-overview.md +11 -0
  45. package/examples/greenfield-spec-markupflow/DA-VINCI.md +4 -13
  46. package/lib/audit.js +455 -0
  47. package/lib/cli.js +6 -1
  48. package/lib/pencil-session.js +6 -0
  49. package/package.json +2 -1
  50. package/references/artifact-templates.md +38 -0
  51. package/references/checkpoints.md +16 -0
  52. package/references/prompt-recipes.md +5 -0
  53. package/scripts/test-audit-context-delta.js +446 -0
  54. package/scripts/test-mode-consistency.js +50 -0
  55. package/scripts/test-pencil-session.js +40 -0
  56. package/scripts/test-persistence-flows.js +31 -1
@@ -65,6 +65,14 @@ Da Vinci 现在要求自治运行使用这组 session wrapper:
65
65
 
66
66
  Da Vinci 不会假设 live MCP 编辑已经被自动刷盘。
67
67
 
68
+ ## Continue 恢复规则
69
+
70
+ 从已有工件恢复时:
71
+
72
+ - 选路先看当前工件和 checkpoint 真相
73
+ - 只把 checkpoint 邻近的 `Context Delta` 当作辅助恢复信息
74
+ - 如果 Context Delta 与当前工件或 checkpoint 真相冲突,忽略冲突条目并先记录冲突,再继续执行
75
+
68
76
  ## 持久化规则
69
77
 
70
78
  Da Vinci 不把 headless interactive `save()` 当作权威持久化真相。
@@ -229,6 +237,14 @@ da-vinci audit --mode completion --change <change-id> <project-path>
229
237
 
230
238
  这个审计现在还会检查 `.da-vinci/state/pencil-session.json`,要求它记录的 hash 与最新持久化 `.pen` 一致。
231
239
 
240
+ Context Delta 相关审计期望都是告警级:
241
+
242
+ - checkpoint 邻近工件缺少有效 Context Delta -> `WARN`
243
+ - Context Delta 字段不完整 -> `WARN`
244
+ - Context Delta 状态与当前 checkpoint 不一致 -> `WARN`
245
+ - 这种不一致可能是 checkpoint 状态过期,也可能是 Context Delta 记录过期
246
+ - 这些告警用于提升续跑质量,但不会单独形成 completion 阶段的硬阻断
247
+
232
248
  ## 推荐命令链
233
249
 
234
250
  典型自治流程:
@@ -59,9 +59,16 @@
59
59
 
60
60
  - 当前工件状态判断
61
61
  - 缺失或薄弱工件
62
+ - 可用时补充最近 checkpoint 的 Context Delta(仅在与当前工件一致时)
62
63
  - 一条主继续提示词
63
64
  - 必要时的保守继续版本
64
65
 
66
+ 继续规则优先级:
67
+
68
+ - 先根据工件和 checkpoint 真相决定路由
69
+ - Context Delta 只用于恢复和解释,不用于覆盖选路
70
+ - 如果 Context Delta 与当前工件冲突,选路时忽略冲突内容并标记冲突
71
+
65
72
  ## 默认推荐流程
66
73
 
67
74
  推荐顺序:
@@ -116,5 +116,7 @@ $da-vinci use continue for this existing overhaul-from-code workflow.
116
116
 
117
117
  Use the existing Da Vinci artifacts.
118
118
  Detect whether the workflow should return to breakdown, continue with design, generate tasks, continue implementation, or verify drift.
119
+ Determine routing from artifact and checkpoint truth first, then use contextual checkpoint deltas only as auxiliary recovery notes.
120
+ If a contextual delta conflicts with current artifacts, ignore that delta and record the conflict before continuing.
119
121
  Prefer the artifact-backed next safe stage instead of restarting the overhaul from scratch.
120
122
  ```
@@ -75,6 +75,8 @@ $da-vinci use continue for this existing overhaul-from-code desktop workflow.
75
75
 
76
76
  Use the existing Da Vinci artifacts.
77
77
  Detect whether the workflow should return to breakdown, continue with design, generate tasks, continue implementation, or verify drift.
78
+ Determine routing from artifact and checkpoint truth first, then use contextual checkpoint deltas only as auxiliary recovery notes.
79
+ If a contextual delta conflicts with current artifacts, ignore that delta and record the conflict before continuing.
78
80
  Prefer the artifact-backed next safe stage instead of restarting the overhaul from scratch.
79
81
  ```
80
82
 
@@ -187,6 +189,7 @@ $da-vinci use continue for this existing desktop-product redesign workflow.
187
189
 
188
190
  Use the existing Da Vinci artifacts in this project.
189
191
  Do not restart discovery unless an artifact is missing or clearly wrong.
192
+ 选路先以当前工件和 checkpoint 真相为准,再把 Context Delta 作为辅助恢复信息;如果 Context Delta 与工件冲突,忽略冲突条目并记录冲突后继续。
190
193
  把登记的项目内 Pencil 源保持在 `.da-vinci/designs/` 下,作为设计真相源。如果继续这一轮会做 Pencil 编辑,必须先执行 `da-vinci pencil-session begin --project <project-path> --pen <path>`,发生实质性 live edit 后再执行 `da-vinci pencil-session persist --project <project-path> --pen <path> ...`;只有 session wrapper 不可用时,才退回 `write-pen + check-pen-sync` 这条底层链路。
191
194
  If the redesign is complex, continue from the approved anchor surfaces instead of restarting broad scaffolding.
192
195
  如果 Pencil MCP 可用,且这一轮继续做了新的 Pencil 写入,就重新运行 MCP runtime gate,并把最新结果记录到 `pencil-design.md`。
@@ -75,6 +75,8 @@ $da-vinci use continue for this existing overhaul-from-code mobile workflow.
75
75
 
76
76
  Use the existing Da Vinci artifacts.
77
77
  Detect whether the workflow should return to breakdown, continue with design, generate tasks, continue implementation, or verify drift.
78
+ Determine routing from artifact and checkpoint truth first, then use contextual checkpoint deltas only as auxiliary recovery notes.
79
+ If a contextual delta conflicts with current artifacts, ignore that delta and record the conflict before continuing.
78
80
  Prefer the artifact-backed next safe stage instead of restarting the overhaul from scratch.
79
81
  ```
80
82
 
@@ -195,6 +197,7 @@ $da-vinci use continue for this existing mobile-app redesign workflow.
195
197
 
196
198
  Use the existing Da Vinci artifacts in this project.
197
199
  Do not restart discovery unless an artifact is missing or clearly wrong.
200
+ 选路先以当前工件和 checkpoint 真相为准,再把 Context Delta 作为辅助恢复信息;如果 Context Delta 与工件冲突,忽略冲突条目并记录冲突后继续。
198
201
  把登记的项目内 Pencil 源保持在 `.da-vinci/designs/` 下,作为设计真相源。如果继续这一轮会做 Pencil 编辑,必须先执行 `da-vinci pencil-session begin --project <project-path> --pen <path>`,发生实质性 live edit 后再执行 `da-vinci pencil-session persist --project <project-path> --pen <path> ...`;只有 session wrapper 不可用时,才退回 `write-pen + check-pen-sync` 这条底层链路。
199
202
  If the redesign is complex, keep the anchor-first flow until the design checkpoint passes.
200
203
  如果 Pencil MCP 可用,且这一轮继续做了新的 Pencil 写入,就重新运行 MCP runtime gate,并把最新结果记录到 `pencil-design.md`。
@@ -75,6 +75,8 @@ $da-vinci use continue for this existing overhaul-from-code tablet workflow.
75
75
 
76
76
  Use the existing Da Vinci artifacts.
77
77
  Detect whether the workflow should return to breakdown, continue with design, generate tasks, continue implementation, or verify drift.
78
+ Determine routing from artifact and checkpoint truth first, then use contextual checkpoint deltas only as auxiliary recovery notes.
79
+ If a contextual delta conflicts with current artifacts, ignore that delta and record the conflict before continuing.
78
80
  Prefer the artifact-backed next safe stage instead of restarting the overhaul from scratch.
79
81
  ```
80
82
 
@@ -187,6 +189,7 @@ $da-vinci use continue for this existing tablet-product redesign workflow.
187
189
 
188
190
  Use the existing Da Vinci artifacts in this project.
189
191
  Do not restart discovery unless an artifact is missing or clearly wrong.
192
+ 选路先以当前工件和 checkpoint 真相为准,再把 Context Delta 作为辅助恢复信息;如果 Context Delta 与工件冲突,忽略冲突条目并记录冲突后继续。
190
193
  把登记的项目内 Pencil 源保持在 `.da-vinci/designs/` 下,作为设计真相源。如果继续这一轮会做 Pencil 编辑,必须先执行 `da-vinci pencil-session begin --project <project-path> --pen <path>`,发生实质性 live edit 后再执行 `da-vinci pencil-session persist --project <project-path> --pen <path> ...`;只有 session wrapper 不可用时,才退回 `write-pen + check-pen-sync` 这条底层链路。
191
194
  If the redesign is complex, continue from the approved anchor surfaces instead of restarting broad scaffolding.
192
195
  如果 Pencil MCP 可用,且这一轮继续做了新的 Pencil 写入,就重新运行 MCP runtime gate,并把最新结果记录到 `pencil-design.md`。
@@ -75,6 +75,8 @@ $da-vinci use continue for this existing overhaul-from-code web workflow.
75
75
 
76
76
  Use the existing Da Vinci artifacts.
77
77
  Detect whether the workflow should return to breakdown, continue with design, generate tasks, continue implementation, or verify drift.
78
+ Determine routing from artifact and checkpoint truth first, then use contextual checkpoint deltas only as auxiliary recovery notes.
79
+ If a contextual delta conflicts with current artifacts, ignore that delta and record the conflict before continuing.
78
80
  Prefer the artifact-backed next safe stage instead of restarting the overhaul from scratch.
79
81
  ```
80
82
 
@@ -188,6 +190,7 @@ $da-vinci use continue for this existing web-product redesign workflow.
188
190
 
189
191
  Use the existing Da Vinci artifacts in this project.
190
192
  Do not restart discovery unless an artifact is missing or clearly wrong.
193
+ 选路先以当前工件和 checkpoint 真相为准,再把 Context Delta 作为辅助恢复信息;如果 Context Delta 与工件冲突,忽略冲突条目并记录冲突后继续。
191
194
  把登记的项目内 Pencil 源保持在 `.da-vinci/designs/` 下,作为设计真相源。如果继续这一轮会做 Pencil 编辑,必须先执行 `da-vinci pencil-session begin --project <project-path> --pen <path>`,发生实质性 live edit 后再执行 `da-vinci pencil-session persist --project <project-path> --pen <path> ...`;只有 session wrapper 不可用时,才退回 `write-pen + check-pen-sync` 这条底层链路。
192
195
  If the redesign is complex, continue from the approved anchor surfaces instead of restarting broad scaffolding.
193
196
  如果 Pencil MCP 可用,且这一轮继续做了新的 Pencil 写入,就重新运行 MCP runtime gate,并把最新结果记录到 `pencil-design.md`。
@@ -48,33 +48,14 @@ visual adapter 也不能替代按 form factor 执行的 layout hygiene 规则。
48
48
 
49
49
  ```md
50
50
  ## Visual Assist
51
- - Preferred adapters:
52
- - frontend-skill
53
- - ui-ux-pro-max
54
- - Design-supervisor reviewers:
55
- - frontend-skill
56
- - ui-ux-pro-max
57
- - Design-supervisor review mode:
58
- - screenshot-and-theme
59
- - Design-supervisor review inputs:
60
- - screenshots
61
- - pencil variables
62
- - visual thesis
63
- - content plan
64
- - interaction thesis
65
- - Scope:
66
- - visual contract refinement
67
- - page composition
68
- - hierarchy and spacing
69
- - motion guidance
70
- - anchor-surface composition
71
- - Pencil design refinement
72
- - Fallback:
73
- - native-da-vinci
74
- - Require Adapter:
75
- - false
76
- - Require Supervisor Review:
77
- - false
51
+ - Preferred adapters: frontend-skill, ui-ux-pro-max
52
+ - Design-supervisor reviewers: frontend-skill, ui-ux-pro-max
53
+ - Design-supervisor review mode: screenshot-and-theme
54
+ - Design-supervisor review inputs: screenshots, pencil variables, visual thesis, content plan, interaction thesis
55
+ - Scope: visual contract refinement, page composition, hierarchy and spacing, motion guidance, anchor-surface composition, Pencil design refinement
56
+ - Fallback: native-da-vinci
57
+ - Require Adapter: false
58
+ - Require Supervisor Review: false
78
59
  ```
79
60
 
80
61
  只有当你希望“本地没有对应 adapter 就必须停下”时,才把 `Require Adapter` 设成 `true`。
@@ -85,32 +66,14 @@ visual adapter 也不能替代按 form factor 执行的 layout hygiene 规则。
85
66
 
86
67
  ```md
87
68
  ## Visual Assist
88
- - Preferred adapters:
89
- - ui-ux-pro-max
90
- - frontend-skill
91
- - Design-supervisor reviewers:
92
- - frontend-skill
93
- - ui-ux-pro-max
94
- - Design-supervisor review mode:
95
- - screenshot-and-theme
96
- - Design-supervisor review inputs:
97
- - screenshots
98
- - pencil variables
99
- - visual thesis
100
- - content plan
101
- - interaction thesis
102
- - Scope:
103
- - visual contract refinement
104
- - page composition
105
- - hierarchy and spacing
106
- - anchor-surface composition
107
- - Pencil design refinement
108
- - Fallback:
109
- - native-da-vinci
110
- - Require Adapter:
111
- - false
112
- - Require Supervisor Review:
113
- - false
69
+ - Preferred adapters: ui-ux-pro-max, frontend-skill
70
+ - Design-supervisor reviewers: frontend-skill, ui-ux-pro-max
71
+ - Design-supervisor review mode: screenshot-and-theme
72
+ - Design-supervisor review inputs: screenshots, pencil variables, visual thesis, content plan, interaction thesis
73
+ - Scope: visual contract refinement, page composition, hierarchy and spacing, anchor-surface composition, Pencil design refinement
74
+ - Fallback: native-da-vinci
75
+ - Require Adapter: false
76
+ - Require Supervisor Review: false
114
77
  ```
115
78
 
116
79
  适用场景:
@@ -122,33 +85,14 @@ visual adapter 也不能替代按 form factor 执行的 layout hygiene 规则。
122
85
 
123
86
  ```md
124
87
  ## Visual Assist
125
- - Preferred adapters:
126
- - frontend-skill
127
- - ui-ux-pro-max
128
- - Design-supervisor reviewers:
129
- - frontend-skill
130
- - ui-ux-pro-max
131
- - Design-supervisor review mode:
132
- - screenshot-and-theme
133
- - Design-supervisor review inputs:
134
- - screenshots
135
- - pencil variables
136
- - visual thesis
137
- - content plan
138
- - interaction thesis
139
- - Scope:
140
- - visual contract refinement
141
- - page composition
142
- - hierarchy and spacing
143
- - motion guidance
144
- - anchor-surface composition
145
- - Pencil design refinement
146
- - Fallback:
147
- - native-da-vinci
148
- - Require Adapter:
149
- - true
150
- - Require Supervisor Review:
151
- - false
88
+ - Preferred adapters: frontend-skill, ui-ux-pro-max
89
+ - Design-supervisor reviewers: frontend-skill, ui-ux-pro-max
90
+ - Design-supervisor review mode: screenshot-and-theme
91
+ - Design-supervisor review inputs: screenshots, pencil variables, visual thesis, content plan, interaction thesis
92
+ - Scope: visual contract refinement, page composition, hierarchy and spacing, motion guidance, anchor-surface composition, Pencil design refinement
93
+ - Fallback: native-da-vinci
94
+ - Require Adapter: true
95
+ - Require Supervisor Review: false
152
96
  ```
153
97
 
154
98
  适用场景:
@@ -18,20 +18,10 @@
18
18
 
19
19
  ```md
20
20
  ## Visual Assist
21
- - Preferred adapters:
22
- - ui-ux-pro-max
23
- - frontend-skill
24
- - Scope:
25
- - visual contract refinement
26
- - workspace composition
27
- - hierarchy and spacing
28
- - motion guidance
29
- - anchor-surface composition
30
- - Pencil design refinement
31
- - Fallback:
32
- - native-da-vinci
33
- - Require Adapter:
34
- - false
21
+ - Preferred adapters: ui-ux-pro-max, frontend-skill
22
+ - Scope: visual contract refinement, workspace composition, hierarchy and spacing, motion guidance, anchor-surface composition, Pencil design refinement
23
+ - Fallback: native-da-vinci
24
+ - Require Adapter: false
35
25
  ```
36
26
 
37
27
  ### 变体 2:reviewer 建议性审查
@@ -43,33 +33,14 @@
43
33
 
44
34
  ```md
45
35
  ## Visual Assist
46
- - Preferred adapters:
47
- - ui-ux-pro-max
48
- - frontend-skill
49
- - Design-supervisor reviewers:
50
- - frontend-skill
51
- - ui-ux-pro-max
52
- - Design-supervisor review mode:
53
- - screenshot-and-theme
54
- - Design-supervisor review inputs:
55
- - screenshots
56
- - pencil variables
57
- - visual thesis
58
- - content plan
59
- - interaction thesis
60
- - Scope:
61
- - visual contract refinement
62
- - workspace composition
63
- - hierarchy and spacing
64
- - motion guidance
65
- - anchor-surface composition
66
- - Pencil design refinement
67
- - Fallback:
68
- - native-da-vinci
69
- - Require Adapter:
70
- - false
71
- - Require Supervisor Review:
72
- - false
36
+ - Preferred adapters: ui-ux-pro-max, frontend-skill
37
+ - Design-supervisor reviewers: frontend-skill, ui-ux-pro-max
38
+ - Design-supervisor review mode: screenshot-and-theme
39
+ - Design-supervisor review inputs: screenshots, pencil variables, visual thesis, content plan, interaction thesis
40
+ - Scope: visual contract refinement, workspace composition, hierarchy and spacing, motion guidance, anchor-surface composition, Pencil design refinement
41
+ - Fallback: native-da-vinci
42
+ - Require Adapter: false
43
+ - Require Supervisor Review: false
73
44
  ```
74
45
 
75
46
  ### 变体 3:reviewer 硬签字
@@ -82,33 +53,14 @@
82
53
 
83
54
  ```md
84
55
  ## Visual Assist
85
- - Preferred adapters:
86
- - frontend-skill
87
- - ui-ux-pro-max
88
- - Design-supervisor reviewers:
89
- - frontend-skill
90
- - ui-ux-pro-max
91
- - Design-supervisor review mode:
92
- - screenshot-and-theme
93
- - Design-supervisor review inputs:
94
- - screenshots
95
- - pencil variables
96
- - visual thesis
97
- - content plan
98
- - interaction thesis
99
- - Scope:
100
- - visual contract refinement
101
- - workspace composition
102
- - hierarchy and spacing
103
- - motion guidance
104
- - anchor-surface composition
105
- - Pencil design refinement
106
- - Fallback:
107
- - native-da-vinci
108
- - Require Adapter:
109
- - true
110
- - Require Supervisor Review:
111
- - true
56
+ - Preferred adapters: frontend-skill, ui-ux-pro-max
57
+ - Design-supervisor reviewers: frontend-skill, ui-ux-pro-max
58
+ - Design-supervisor review mode: screenshot-and-theme
59
+ - Design-supervisor review inputs: screenshots, pencil variables, visual thesis, content plan, interaction thesis
60
+ - Scope: visual contract refinement, workspace composition, hierarchy and spacing, motion guidance, anchor-surface composition, Pencil design refinement
61
+ - Fallback: native-da-vinci
62
+ - Require Adapter: true
63
+ - Require Supervisor Review: true
112
64
  ```
113
65
 
114
66
  通用说明:
@@ -17,20 +17,10 @@
17
17
 
18
18
  ```md
19
19
  ## Visual Assist
20
- - Preferred adapters:
21
- - ui-ux-pro-max
22
- - frontend-skill
23
- - Scope:
24
- - visual contract refinement
25
- - mobile page composition
26
- - hierarchy and spacing
27
- - touch-first motion guidance
28
- - anchor-surface composition
29
- - Pencil design refinement
30
- - Fallback:
31
- - native-da-vinci
32
- - Require Adapter:
33
- - false
20
+ - Preferred adapters: ui-ux-pro-max, frontend-skill
21
+ - Scope: visual contract refinement, mobile page composition, hierarchy and spacing, touch-first motion guidance, anchor-surface composition, Pencil design refinement
22
+ - Fallback: native-da-vinci
23
+ - Require Adapter: false
34
24
  ```
35
25
 
36
26
  ### 变体 2:reviewer 建议性审查
@@ -43,33 +33,14 @@
43
33
 
44
34
  ```md
45
35
  ## Visual Assist
46
- - Preferred adapters:
47
- - ui-ux-pro-max
48
- - frontend-skill
49
- - Design-supervisor reviewers:
50
- - frontend-skill
51
- - ui-ux-pro-max
52
- - Design-supervisor review mode:
53
- - screenshot-and-theme
54
- - Design-supervisor review inputs:
55
- - screenshots
56
- - pencil variables
57
- - visual thesis
58
- - content plan
59
- - interaction thesis
60
- - Scope:
61
- - visual contract refinement
62
- - mobile page composition
63
- - hierarchy and spacing
64
- - touch-first motion guidance
65
- - anchor-surface composition
66
- - Pencil design refinement
67
- - Fallback:
68
- - native-da-vinci
69
- - Require Adapter:
70
- - false
71
- - Require Supervisor Review:
72
- - false
36
+ - Preferred adapters: ui-ux-pro-max, frontend-skill
37
+ - Design-supervisor reviewers: frontend-skill, ui-ux-pro-max
38
+ - Design-supervisor review mode: screenshot-and-theme
39
+ - Design-supervisor review inputs: screenshots, pencil variables, visual thesis, content plan, interaction thesis
40
+ - Scope: visual contract refinement, mobile page composition, hierarchy and spacing, touch-first motion guidance, anchor-surface composition, Pencil design refinement
41
+ - Fallback: native-da-vinci
42
+ - Require Adapter: false
43
+ - Require Supervisor Review: false
73
44
  ```
74
45
 
75
46
  ### 变体 3:reviewer 硬签字
@@ -82,33 +53,14 @@
82
53
 
83
54
  ```md
84
55
  ## Visual Assist
85
- - Preferred adapters:
86
- - frontend-skill
87
- - ui-ux-pro-max
88
- - Design-supervisor reviewers:
89
- - frontend-skill
90
- - ui-ux-pro-max
91
- - Design-supervisor review mode:
92
- - screenshot-and-theme
93
- - Design-supervisor review inputs:
94
- - screenshots
95
- - pencil variables
96
- - visual thesis
97
- - content plan
98
- - interaction thesis
99
- - Scope:
100
- - visual contract refinement
101
- - mobile page composition
102
- - hierarchy and spacing
103
- - touch-first motion guidance
104
- - anchor-surface composition
105
- - Pencil design refinement
106
- - Fallback:
107
- - native-da-vinci
108
- - Require Adapter:
109
- - true
110
- - Require Supervisor Review:
111
- - true
56
+ - Preferred adapters: frontend-skill, ui-ux-pro-max
57
+ - Design-supervisor reviewers: frontend-skill, ui-ux-pro-max
58
+ - Design-supervisor review mode: screenshot-and-theme
59
+ - Design-supervisor review inputs: screenshots, pencil variables, visual thesis, content plan, interaction thesis
60
+ - Scope: visual contract refinement, mobile page composition, hierarchy and spacing, touch-first motion guidance, anchor-surface composition, Pencil design refinement
61
+ - Fallback: native-da-vinci
62
+ - Require Adapter: true
63
+ - Require Supervisor Review: true
112
64
  ```
113
65
 
114
66
  通用说明:
@@ -17,20 +17,10 @@
17
17
 
18
18
  ```md
19
19
  ## Visual Assist
20
- - Preferred adapters:
21
- - ui-ux-pro-max
22
- - frontend-skill
23
- - Scope:
24
- - visual contract refinement
25
- - tablet page composition
26
- - hierarchy and spacing
27
- - touch-aware motion guidance
28
- - anchor-surface composition
29
- - Pencil design refinement
30
- - Fallback:
31
- - native-da-vinci
32
- - Require Adapter:
33
- - false
20
+ - Preferred adapters: ui-ux-pro-max, frontend-skill
21
+ - Scope: visual contract refinement, tablet page composition, hierarchy and spacing, touch-aware motion guidance, anchor-surface composition, Pencil design refinement
22
+ - Fallback: native-da-vinci
23
+ - Require Adapter: false
34
24
  ```
35
25
 
36
26
  ### 变体 2:reviewer 建议性审查
@@ -42,33 +32,14 @@
42
32
 
43
33
  ```md
44
34
  ## Visual Assist
45
- - Preferred adapters:
46
- - ui-ux-pro-max
47
- - frontend-skill
48
- - Design-supervisor reviewers:
49
- - frontend-skill
50
- - ui-ux-pro-max
51
- - Design-supervisor review mode:
52
- - screenshot-and-theme
53
- - Design-supervisor review inputs:
54
- - screenshots
55
- - pencil variables
56
- - visual thesis
57
- - content plan
58
- - interaction thesis
59
- - Scope:
60
- - visual contract refinement
61
- - tablet page composition
62
- - hierarchy and spacing
63
- - touch-aware motion guidance
64
- - anchor-surface composition
65
- - Pencil design refinement
66
- - Fallback:
67
- - native-da-vinci
68
- - Require Adapter:
69
- - false
70
- - Require Supervisor Review:
71
- - false
35
+ - Preferred adapters: ui-ux-pro-max, frontend-skill
36
+ - Design-supervisor reviewers: frontend-skill, ui-ux-pro-max
37
+ - Design-supervisor review mode: screenshot-and-theme
38
+ - Design-supervisor review inputs: screenshots, pencil variables, visual thesis, content plan, interaction thesis
39
+ - Scope: visual contract refinement, tablet page composition, hierarchy and spacing, touch-aware motion guidance, anchor-surface composition, Pencil design refinement
40
+ - Fallback: native-da-vinci
41
+ - Require Adapter: false
42
+ - Require Supervisor Review: false
72
43
  ```
73
44
 
74
45
  ### 变体 3:reviewer 硬签字
@@ -81,33 +52,14 @@
81
52
 
82
53
  ```md
83
54
  ## Visual Assist
84
- - Preferred adapters:
85
- - frontend-skill
86
- - ui-ux-pro-max
87
- - Design-supervisor reviewers:
88
- - frontend-skill
89
- - ui-ux-pro-max
90
- - Design-supervisor review mode:
91
- - screenshot-and-theme
92
- - Design-supervisor review inputs:
93
- - screenshots
94
- - pencil variables
95
- - visual thesis
96
- - content plan
97
- - interaction thesis
98
- - Scope:
99
- - visual contract refinement
100
- - tablet page composition
101
- - hierarchy and spacing
102
- - touch-aware motion guidance
103
- - anchor-surface composition
104
- - Pencil design refinement
105
- - Fallback:
106
- - native-da-vinci
107
- - Require Adapter:
108
- - true
109
- - Require Supervisor Review:
110
- - true
55
+ - Preferred adapters: frontend-skill, ui-ux-pro-max
56
+ - Design-supervisor reviewers: frontend-skill, ui-ux-pro-max
57
+ - Design-supervisor review mode: screenshot-and-theme
58
+ - Design-supervisor review inputs: screenshots, pencil variables, visual thesis, content plan, interaction thesis
59
+ - Scope: visual contract refinement, tablet page composition, hierarchy and spacing, touch-aware motion guidance, anchor-surface composition, Pencil design refinement
60
+ - Fallback: native-da-vinci
61
+ - Require Adapter: true
62
+ - Require Supervisor Review: true
111
63
  ```
112
64
 
113
65
  通用说明: