maestro-flow-one 0.2.33 → 0.2.35

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 (48) hide show
  1. package/maestro-flow/commands/learn/investigate.md +151 -152
  2. package/maestro-flow/commands/learn/second-opinion.md +118 -122
  3. package/maestro-flow/commands/lifecycle/analyze.md +215 -266
  4. package/maestro-flow/commands/lifecycle/blueprint.md +189 -204
  5. package/maestro-flow/commands/lifecycle/brainstorm.md +209 -213
  6. package/maestro-flow/commands/lifecycle/companion.md +531 -531
  7. package/maestro-flow/commands/lifecycle/composer.md +188 -179
  8. package/maestro-flow/commands/lifecycle/execute.md +183 -184
  9. package/maestro-flow/commands/lifecycle/fork.md +111 -110
  10. package/maestro-flow/commands/lifecycle/grill.md +175 -176
  11. package/maestro-flow/commands/lifecycle/guard.md +103 -102
  12. package/maestro-flow/commands/lifecycle/impeccable.md +311 -268
  13. package/maestro-flow/commands/lifecycle/init.md +130 -131
  14. package/maestro-flow/commands/lifecycle/merge.md +87 -80
  15. package/maestro-flow/commands/lifecycle/next.md +253 -257
  16. package/maestro-flow/commands/lifecycle/overlay.md +188 -178
  17. package/maestro-flow/commands/lifecycle/plan.md +225 -211
  18. package/maestro-flow/commands/lifecycle/quick.md +83 -77
  19. package/maestro-flow/commands/lifecycle/roadmap.md +173 -186
  20. package/maestro-flow/commands/lifecycle/swarm-workflow.md +243 -264
  21. package/maestro-flow/commands/lifecycle/tools-execute.md +122 -117
  22. package/maestro-flow/commands/lifecycle/tools-register.md +162 -157
  23. package/maestro-flow/commands/lifecycle/ui-codify.md +117 -100
  24. package/maestro-flow/commands/lifecycle/universal-workflow.md +548 -561
  25. package/maestro-flow/commands/lifecycle/update.md +122 -119
  26. package/maestro-flow/commands/manage/codebase-rebuild.md +87 -85
  27. package/maestro-flow/commands/manage/harvest.md +97 -95
  28. package/maestro-flow/commands/manage/issue-discover.md +83 -81
  29. package/maestro-flow/commands/manage/issue.md +72 -73
  30. package/maestro-flow/commands/manage/kg-extractors.md +128 -0
  31. package/maestro-flow/commands/manage/knowhow-capture.md +92 -82
  32. package/maestro-flow/commands/manage/knowhow.md +83 -79
  33. package/maestro-flow/commands/manage/knowledge-audit.md +105 -88
  34. package/maestro-flow/commands/manage/status.md +62 -52
  35. package/maestro-flow/commands/manage/wiki.md +82 -71
  36. package/maestro-flow/commands/milestone/audit.md +4 -10
  37. package/maestro-flow/commands/milestone/complete.md +6 -7
  38. package/maestro-flow/commands/milestone/release.md +136 -145
  39. package/maestro-flow/commands/quality/auto-test.md +153 -136
  40. package/maestro-flow/commands/quality/debug.md +159 -120
  41. package/maestro-flow/commands/quality/refactor.md +105 -67
  42. package/maestro-flow/commands/quality/retrospective.md +123 -77
  43. package/maestro-flow/commands/quality/review.md +155 -128
  44. package/maestro-flow/commands/quality/sync.md +88 -52
  45. package/maestro-flow/commands/quality/test.md +147 -117
  46. package/maestro-flow/commands/spec/add.md +77 -70
  47. package/maestro-flow/commands/spec/setup.md +49 -52
  48. package/package.json +1 -1
@@ -1,100 +1,117 @@
1
- ---
2
- name: maestro-ui-codify
3
- description: Extract design system from code, generate reference package, persist as knowledge assets
4
- argument-hint: "<source-path> [--package-name <name>] [--output-dir <path>] [--overwrite]"
5
- allowed-tools:
6
- - Read
7
- - Write
8
- - Edit
9
- - Bash
10
- - Glob
11
- - Grep
12
- - Agent
13
- - Skill
14
- ---
15
- <purpose>
16
- Codify UI design system from existing source code. 4-phase pipeline:
17
-
18
- 1. **Validate** (inline): Parameter validation, workspace setup, file discovery
19
- 2. **Extract** (3 parallel agents): Style Agent + Animation Agent + Layout Agent produce design-tokens.json, animation-tokens.json, layout-templates.json
20
- 3. **Package** (agent): Copy tokens to package directory, generate preview.html + preview.css
21
- 4. **Knowhow** (manifest + skill): Build knowhow-manifest.json, call codify-to-knowhow to persist as knowledge assets
22
-
23
- Position in pipeline: code -> **ui-codify** -> knowhow + specs
24
- </purpose>
25
-
26
- <deferred_reading>
27
- - [ui-codify.md](~/.maestro/workflows/ui-codify.md) — read always (main workflow orchestrator)
28
- - [ui-codify-extract.md](~/.maestro/workflows/ui-codify-extract.md) read when Phase 2 starts (style extraction with 3 agents)
29
- - [ui-codify-package.md](~/.maestro/workflows/ui-codify-package.md) — read when Phase 3 starts (reference package generation)
30
- - [ui-codify-knowhow.md](~/.maestro/workflows/ui-codify-knowhow.md) — read when Phase 4 starts (knowledge asset generation)
31
- </deferred_reading>
32
-
33
- <context>
34
- $ARGUMENTS source path (required) with optional flags.
35
-
36
- Flags:
37
- - `<source-path>` (positional, required): Directory containing CSS/SCSS/JS/TS/HTML source files
38
- - `--package-name <name>`: Package name for reference output (default: auto-generated from source directory)
39
- - `--output-dir <path>`: Output directory for reference package (default: `.workflow/reference_style`)
40
- - `--overwrite`: Allow overwriting existing package directory
41
- </context>
42
-
43
- <execution>
44
- ## 1. Load UI Specs
45
-
46
- Load project UI conventions before extracting design system:
47
-
48
- ```bash
49
- maestro spec load --category ui
50
- ```
51
-
52
- If specs not initialized, continue without the workflow still produces valid output.
53
-
54
- ## 2. Execute Workflow
55
-
56
- Route to `~/.maestro/workflows/ui-codify.md` and follow completely.
57
-
58
- The workflow orchestrates 4 phases with deferred loading of phase-specific workflow files. Each phase reads its workflow file only when execution reaches that phase.
59
-
60
- ### Phase Gates (MANDATORY, BLOCKING)
61
-
62
- **GATE Phase 1 → Phase 2**: Source path validated, file discovery completed. design-tokens.json generated.
63
- **GATE Phase 2 Phase 3**: layout-templates.json generated with component patterns.
64
- **GATE Phase 3 → Phase 4**: preview.html + preview.css generated as interactive showcase.
65
- **GATE Phase 4Completion**: knowhow-manifest.json created. codify-to-knowhow called and completed.
66
-
67
- ### Artifact Verification (before completion)
68
-
69
- ```
70
- REQUIRED_ARTIFACTS = [
71
- "design-tokens.json", // Phase 1
72
- "layout-templates.json", // Phase 2
73
- "preview.html", // Phase 3
74
- "preview.css", // Phase 3
75
- "knowhow-manifest.json" // Phase 4
76
- ]
77
- ```
78
- If any artifact is missing: DO NOT report completion.
79
- </execution>
80
-
81
- <error_codes>
82
- | Code | Severity | Description | Stage |
83
- |------|----------|-------------|-------|
84
- | E001 | error | Source path argument required | parse_input |
85
- | E002 | error | Source path not found or not a directory | validate |
86
- | E003 | error | Package directory exists without --overwrite flag | validate |
87
- | W001 | warning | animation-tokens.json not found (optional, extraction continues) | extract |
88
- </error_codes>
89
-
90
- <success_criteria>
91
- - [ ] UI specs loaded via `spec load --category ui` (if available)
92
- - [ ] Source path validated and file discovery completed
93
- - [ ] design-tokens.json generated with color, typography, spacing tokens
94
- - [ ] layout-templates.json generated with component patterns (universal/specialized)
95
- - [ ] animation-tokens.json generated (optional, W001 if missing)
96
- - [ ] preview.html + preview.css generated as interactive showcase
97
- - [ ] knowhow-manifest.json created with AST/DCS assets and spec entries
98
- - [ ] codify-to-knowhow called and completed successfully
99
- - [ ] Temporary workspace cleaned up
100
- </success_criteria>
1
+ ---
2
+ name: maestro-ui-codify
3
+ description: Extract design system from code, generate reference package, persist as knowledge assets
4
+ argument-hint: "<source-path> [--package-name <name>] [--output-dir <path>] [--overwrite]"
5
+ allowed-tools:
6
+ - Read
7
+ - Write
8
+ - Edit
9
+ - Bash
10
+ - Glob
11
+ - Grep
12
+ - Agent
13
+ - Skill
14
+ ---
15
+ <purpose>
16
+ Extract design system from source code into tokens, reference package, and knowledge assets.
17
+ 4-phase pipeline: validate → extract → package → knowhow.
18
+ </purpose>
19
+
20
+ <deferred_reading>
21
+ - [ui-codify.md](~/.maestro/workflows/ui-codify.md) read always (main workflow orchestrator)
22
+ - [ui-codify-extract.md](~/.maestro/workflows/ui-codify-extract.md) — read when Phase 2 starts (style extraction with 3 agents)
23
+ - [ui-codify-package.md](~/.maestro/workflows/ui-codify-package.md) read when Phase 3 starts (reference package generation)
24
+ - [ui-codify-knowhow.md](~/.maestro/workflows/ui-codify-knowhow.md) — read when Phase 4 starts (knowledge asset generation)
25
+ </deferred_reading>
26
+
27
+ <context>
28
+ $ARGUMENTSsource path (required) with optional flags.
29
+
30
+ Flags:
31
+ - `<source-path>` (positional, required): Directory containing CSS/SCSS/JS/TS/HTML source files
32
+ - `--package-name <name>`: Package name for reference output (default: auto-generated from source directory)
33
+ - `--output-dir <path>`: Output directory for reference package (default: `.workflow/reference_style`)
34
+ - `--overwrite`: Allow overwriting existing package directory
35
+ </context>
36
+
37
+ <execution>
38
+ ## 1. Load UI Specs
39
+
40
+ Load project UI conventions before extracting design system:
41
+
42
+ ```bash
43
+ maestro spec load --category ui
44
+ ```
45
+
46
+ If specs not initialized, continue without the workflow still produces valid output.
47
+
48
+ ## 2. Execute Workflow
49
+
50
+ Route to `~/.maestro/workflows/ui-codify.md` and follow completely.
51
+
52
+ The workflow orchestrates 4 phases with deferred loading of phase-specific workflow files. Each phase reads its workflow file only when execution reaches that phase.
53
+
54
+ ### Phase Gates (MANDATORY, BLOCKING)
55
+
56
+ **GATE Phase 1 Phase 2: Validation → Extraction**
57
+ - REQUIRED: Source path validated and file discovery completed.
58
+ - REQUIRED: design-tokens.json generated with color, typography, spacing tokens.
59
+ - BLOCKED if missing: source path invalid (E002) or design-tokens.json not generated — extraction cannot proceed without token foundation.
60
+
61
+ **GATE Phase 2 → Phase 3: Extraction → Package**
62
+ - REQUIRED: layout-templates.json generated with component patterns.
63
+ - BLOCKED if missing: layout-templates.json absent package generation requires component patterns as input.
64
+
65
+ **GATE Phase 3Phase 4: Package Knowhow**
66
+ - REQUIRED: preview.html + preview.css generated as interactive showcase.
67
+ - BLOCKED if missing: preview artifacts not generated — knowhow phase needs rendered reference for validation.
68
+
69
+ **GATE Phase 4 → Completion: Knowhow → Done**
70
+ - REQUIRED: knowhow-manifest.json created with AST/DCS assets and spec entries.
71
+ - REQUIRED: codify-to-knowhow called and completed.
72
+ - BLOCKED if missing: knowhow-manifest.json absent or codify-to-knowhow not invoked — knowledge assets not persisted.
73
+
74
+ ### Artifact Verification (before completion)
75
+
76
+ ```
77
+ REQUIRED_ARTIFACTS = [
78
+ "design-tokens.json", // Phase 1
79
+ "layout-templates.json", // Phase 2
80
+ "preview.html", // Phase 3
81
+ "preview.css", // Phase 3
82
+ "knowhow-manifest.json" // Phase 4
83
+ ]
84
+ ```
85
+ If any artifact is missing: DO NOT report completion.
86
+ </execution>
87
+
88
+ <error_codes>
89
+ | Code | Severity | Description | Stage |
90
+ |------|----------|-------------|-------|
91
+ | E001 | error | Source path argument required | parse_input |
92
+ | E002 | error | Source path not found or not a directory | validate |
93
+ | E003 | error | Package directory exists without --overwrite flag | validate |
94
+ | W001 | warning | animation-tokens.json not found (optional, extraction continues) | extract |
95
+ </error_codes>
96
+
97
+ <success_criteria>
98
+ - [ ] UI specs loaded via `spec load --category ui` (if available)
99
+ - [ ] Source path validated and file discovery completed
100
+ - [ ] design-tokens.json generated with color, typography, spacing tokens
101
+ - [ ] layout-templates.json generated with component patterns (universal/specialized)
102
+ - [ ] animation-tokens.json generated (optional, W001 if missing)
103
+ - [ ] preview.html + preview.css generated as interactive showcase
104
+ - [ ] knowhow-manifest.json created with AST/DCS assets and spec entries
105
+ - [ ] codify-to-knowhow called and completed successfully
106
+ - [ ] Temporary workspace cleaned up
107
+ </success_criteria>
108
+
109
+ <completion>
110
+ ### Next-step routing
111
+
112
+ | Condition | Suggestion |
113
+ |-----------|-----------|
114
+ | Codify complete | Use extracted tokens in `maestro impeccable craft` for new builds |
115
+ | Design system needs refinement | `maestro impeccable document` to regenerate DESIGN.md |
116
+ | Knowledge assets persisted | `maestro search --type knowhow "design system"` to verify |
117
+ </completion>