speccrew 0.6.48 → 0.6.50
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/.speccrew/agents/speccrew-team-leader-xml.md +2 -1
- package/.speccrew/skills/speccrew-knowledge-bizs-api-analyze-xml/SKILL.md +4 -1
- package/.speccrew/skills/speccrew-knowledge-bizs-api-graph-xml/SKILL.md +4 -1
- package/.speccrew/skills/speccrew-knowledge-bizs-dispatch-xml/SKILL.md +7 -4
- package/.speccrew/skills/speccrew-knowledge-bizs-identify-entries-xml/SKILL.md +4 -1
- package/.speccrew/skills/speccrew-knowledge-bizs-ui-analyze-xml/SKILL.md +4 -1
- package/.speccrew/skills/speccrew-knowledge-bizs-ui-graph-xml/SKILL.md +4 -1
- package/.speccrew/skills/speccrew-knowledge-bizs-ui-style-extract-xml/SKILL.md +4 -1
- package/.speccrew/skills/speccrew-knowledge-module-summarize-xml/SKILL.md +4 -1
- package/.speccrew/skills/speccrew-knowledge-system-summarize-xml/SKILL.md +4 -1
- package/.speccrew/skills/speccrew-knowledge-techs-dispatch-xml/SKILL.md +5 -2
- package/.speccrew/skills/speccrew-knowledge-techs-generate-conventions-xml/SKILL.md +4 -1
- package/.speccrew/skills/speccrew-knowledge-techs-generate-quality-xml/SKILL.md +125 -217
- package/.speccrew/skills/speccrew-knowledge-techs-generate-ui-style-xml/SKILL.md +128 -155
- package/.speccrew/skills/speccrew-knowledge-techs-generate-xml/SKILL.md +4 -1
- package/.speccrew/skills/speccrew-knowledge-techs-index-xml/SKILL.md +4 -1
- package/.speccrew/skills/speccrew-knowledge-techs-init-xml/SKILL.md +4 -1
- package/package.json +1 -1
|
@@ -75,9 +75,10 @@ You understand the complete AI engineering closed loop: **speccrew-pm → speccr
|
|
|
75
75
|
|
|
76
76
|
# Workflow (XML Block Definition)
|
|
77
77
|
|
|
78
|
-
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `docs/rules/xml-workflow-spec.md`
|
|
78
|
+
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md`
|
|
79
79
|
|
|
80
80
|
```xml
|
|
81
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
81
82
|
<workflow id="team-leader-main" status="pending">
|
|
82
83
|
|
|
83
84
|
<block type="input" id="I1" desc="User request input">
|
|
@@ -105,8 +105,10 @@ Before executing the workflow, verify the following inputs:
|
|
|
105
105
|
|
|
106
106
|
## Workflow
|
|
107
107
|
|
|
108
|
-
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `docs/rules/xml-workflow-spec.md`
|
|
108
|
+
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md`
|
|
109
109
|
|
|
110
|
+
```xml
|
|
111
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
110
112
|
<workflow id="api-controller-analysis" status="pending" version="1.0" desc="API controller analysis workflow">
|
|
111
113
|
|
|
112
114
|
<!-- ==================== INPUT PARAMETERS ==================== -->
|
|
@@ -616,6 +618,7 @@ Before executing the workflow, verify the following inputs:
|
|
|
616
618
|
</block>
|
|
617
619
|
|
|
618
620
|
</workflow>
|
|
621
|
+
```
|
|
619
622
|
|
|
620
623
|
## Reference Guides
|
|
621
624
|
|
|
@@ -71,8 +71,10 @@ This skill operates in **strict sequential execution mode**:
|
|
|
71
71
|
|
|
72
72
|
## Workflow
|
|
73
73
|
|
|
74
|
-
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `docs/rules/xml-workflow-spec.md`
|
|
74
|
+
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md`
|
|
75
75
|
|
|
76
|
+
```xml
|
|
77
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
76
78
|
<workflow id="api-knowledge-graph-construction" version="1.0" status="pending" desc="API knowledge graph construction workflow">
|
|
77
79
|
|
|
78
80
|
<!-- Input Parameters -->
|
|
@@ -383,6 +385,7 @@ This skill operates in **strict sequential execution mode**:
|
|
|
383
385
|
</block>
|
|
384
386
|
|
|
385
387
|
</workflow>
|
|
388
|
+
```
|
|
386
389
|
|
|
387
390
|
## Node ID Naming Convention
|
|
388
391
|
|
|
@@ -6,7 +6,7 @@ tools: Read, Write, Task, Bash
|
|
|
6
6
|
|
|
7
7
|
> **⚠️ MANDATORY EXECUTION PROTOCOL — READ BEFORE EXECUTING ANY BLOCK**
|
|
8
8
|
>
|
|
9
|
-
> **Step 1**: Load XML workflow specification: `docs/rules/xml-workflow-spec.md` — this defines all block types and action-to-tool mappings
|
|
9
|
+
> **Step 1**: Load XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md` — this defines all block types and action-to-tool mappings
|
|
10
10
|
>
|
|
11
11
|
> **Step 2**: Execute this SKILL.md's XML workflow **block by block in document order**:
|
|
12
12
|
> - `action="run-script"` → Execute via **Terminal tool** (PowerShell/Bash)
|
|
@@ -98,6 +98,10 @@ Stage 4: System Summary
|
|
|
98
98
|
|
|
99
99
|
## XML Workflow Definition
|
|
100
100
|
|
|
101
|
+
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md`
|
|
102
|
+
|
|
103
|
+
```xml
|
|
104
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
101
105
|
<workflow id="bizs-dispatch-main" status="pending" version="1.0" desc="bizs knowledge base generation 5-stage pipeline">
|
|
102
106
|
|
|
103
107
|
<!-- ============================================================
|
|
@@ -221,9 +225,7 @@ Stage 4: System Summary
|
|
|
221
225
|
<block type="event" id="S0-E3" action="confirm" title="Confirm Platform List" type="yesno" desc="Wait for user to confirm detected platform list">
|
|
222
226
|
<field name="preview">
|
|
223
227
|
Detected ${platforms.length} platforms:
|
|
224
|
-
|
|
225
|
-
- ${platform.platformId}: ${platform.sourcePath} (${platform.platformType}/${platform.platformSubtype})
|
|
226
|
-
</loop>
|
|
228
|
+
(For each platform in ${platforms}, display: ${platform.platformId}: ${sourcePath} (${platformType}/${platformSubtype}))
|
|
227
229
|
|
|
228
230
|
Continue with knowledge base generation?
|
|
229
231
|
</field>
|
|
@@ -824,6 +826,7 @@ Requirements:
|
|
|
824
826
|
<field name="graph_root" from="${graph_root}" type="string" desc="Graph data output directory"/>
|
|
825
827
|
</block>
|
|
826
828
|
</workflow>
|
|
829
|
+
```
|
|
827
830
|
|
|
828
831
|
---
|
|
829
832
|
|
|
@@ -38,8 +38,10 @@ For each platform, generates:
|
|
|
38
38
|
|
|
39
39
|
## Workflow
|
|
40
40
|
|
|
41
|
-
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `docs/rules/xml-workflow-spec.md`
|
|
41
|
+
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md`
|
|
42
42
|
|
|
43
|
+
```xml
|
|
44
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
43
45
|
<workflow id="identify-entries-main" status="pending" version="1.0" desc="Identify business module entry directories for each platform">
|
|
44
46
|
|
|
45
47
|
<!-- ============================================================
|
|
@@ -196,6 +198,7 @@ For each platform, generates:
|
|
|
196
198
|
</block>
|
|
197
199
|
|
|
198
200
|
</workflow>
|
|
201
|
+
```
|
|
199
202
|
|
|
200
203
|
## Output JSON Format
|
|
201
204
|
|
|
@@ -76,8 +76,10 @@ Analyze one specific UI feature from source code, extract business functionality
|
|
|
76
76
|
|
|
77
77
|
## Workflow
|
|
78
78
|
|
|
79
|
-
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `docs/rules/xml-workflow-spec.md`
|
|
79
|
+
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md`
|
|
80
80
|
|
|
81
|
+
```xml
|
|
82
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
81
83
|
<workflow id="ui-feature-analysis" version="1.0" status="pending" desc="UI feature analysis workflow">
|
|
82
84
|
|
|
83
85
|
<!-- ==================== INPUT PARAMETERS ==================== -->
|
|
@@ -422,6 +424,7 @@ Analyze one specific UI feature from source code, extract business functionality
|
|
|
422
424
|
</block>
|
|
423
425
|
|
|
424
426
|
</workflow>
|
|
427
|
+
```
|
|
425
428
|
|
|
426
429
|
## Constraints
|
|
427
430
|
|
|
@@ -44,8 +44,10 @@ This skill automatically adapts to the user's input language. All documentation
|
|
|
44
44
|
|
|
45
45
|
## Workflow
|
|
46
46
|
|
|
47
|
-
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `docs/rules/xml-workflow-spec.md`
|
|
47
|
+
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md`
|
|
48
48
|
|
|
49
|
+
```xml
|
|
50
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
49
51
|
<workflow id="ui-knowledge-graph-construction" version="1.0" status="pending" desc="Construct graph data from UI analysis results">
|
|
50
52
|
|
|
51
53
|
<!-- ============================================================
|
|
@@ -300,6 +302,7 @@ This skill automatically adapts to the user's input language. All documentation
|
|
|
300
302
|
</block>
|
|
301
303
|
|
|
302
304
|
</workflow>
|
|
305
|
+
```
|
|
303
306
|
|
|
304
307
|
## Node Structure Reference
|
|
305
308
|
|
|
@@ -68,8 +68,10 @@ Extract and aggregate **UI design patterns** from bizs pipeline analyzed feature
|
|
|
68
68
|
|
|
69
69
|
## Workflow
|
|
70
70
|
|
|
71
|
-
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `docs/rules/xml-workflow-spec.md`
|
|
71
|
+
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md`
|
|
72
72
|
|
|
73
|
+
```xml
|
|
74
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
73
75
|
<workflow id="ui-style-extract-main" status="pending" version="1.0" desc="Extract and aggregate UI design patterns from feature documents">
|
|
74
76
|
|
|
75
77
|
<!-- ============================================================
|
|
@@ -330,6 +332,7 @@ Extract and aggregate **UI design patterns** from bizs pipeline analyzed feature
|
|
|
330
332
|
</block>
|
|
331
333
|
|
|
332
334
|
</workflow>
|
|
335
|
+
```
|
|
333
336
|
|
|
334
337
|
## Generation Rules
|
|
335
338
|
|
|
@@ -51,8 +51,10 @@ flowchart TD
|
|
|
51
51
|
Step6 --> End([End])
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
-
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `docs/rules/xml-workflow-spec.md`
|
|
54
|
+
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md`
|
|
55
55
|
|
|
56
|
+
```xml
|
|
57
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
56
58
|
<workflow id="module-summarize" version="1.0" status="pending" desc="Module summarization workflow">
|
|
57
59
|
|
|
58
60
|
<!-- Input Block: Define workflow inputs -->
|
|
@@ -371,6 +373,7 @@ flowchart TD
|
|
|
371
373
|
</block>
|
|
372
374
|
|
|
373
375
|
</workflow>
|
|
376
|
+
```
|
|
374
377
|
|
|
375
378
|
## Constraints
|
|
376
379
|
|
|
@@ -58,8 +58,10 @@ flowchart TD
|
|
|
58
58
|
Step8 --> End([End])
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
-
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `docs/rules/xml-workflow-spec.md`
|
|
61
|
+
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md`
|
|
62
62
|
|
|
63
|
+
```xml
|
|
64
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
63
65
|
<workflow id="system-summarize-main" status="pending" version="1.0" desc="System summarization workflow">
|
|
64
66
|
<!-- ============================================================
|
|
65
67
|
Input Parameters Definition
|
|
@@ -530,6 +532,7 @@ flowchart TD
|
|
|
530
532
|
<field name="message" value="System summarization completed with ${module_count} modules processed"/>
|
|
531
533
|
</block>
|
|
532
534
|
</workflow>
|
|
535
|
+
```
|
|
533
536
|
|
|
534
537
|
## Constraints
|
|
535
538
|
|
|
@@ -6,7 +6,7 @@ tools: Read, Write, Task, Bash
|
|
|
6
6
|
|
|
7
7
|
> **⚠️ MANDATORY EXECUTION PROTOCOL — READ BEFORE EXECUTING ANY BLOCK**
|
|
8
8
|
>
|
|
9
|
-
> **Step 1**: Load XML workflow specification: `docs/rules/xml-workflow-spec.md` — this defines all block types and action-to-tool mappings
|
|
9
|
+
> **Step 1**: Load XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md` — this defines all block types and action-to-tool mappings
|
|
10
10
|
>
|
|
11
11
|
> **Step 2**: Execute this SKILL.md's XML workflow **block by block in document order**:
|
|
12
12
|
> - `action="run-script"` → Execute via **Terminal tool** (PowerShell/Bash)
|
|
@@ -118,8 +118,10 @@ Read `speccrew-workspace/docs/configs/platform-mapping.json` for standardized pl
|
|
|
118
118
|
|
|
119
119
|
## XML Workflow Definition
|
|
120
120
|
|
|
121
|
-
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `docs/rules/xml-workflow-spec.md`
|
|
121
|
+
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md`
|
|
122
122
|
|
|
123
|
+
```xml
|
|
124
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
123
125
|
<workflow id="techs-dispatch-main" status="pending" version="1.0" desc="techs knowledge base generation 3-stage pipeline">
|
|
124
126
|
|
|
125
127
|
<!-- ============================================================
|
|
@@ -621,6 +623,7 @@ console.log('stage3-status.json written');
|
|
|
621
623
|
</block>
|
|
622
624
|
|
|
623
625
|
</workflow>
|
|
626
|
+
```
|
|
624
627
|
|
|
625
628
|
---
|
|
626
629
|
|
|
@@ -72,8 +72,10 @@ ${output_path}/
|
|
|
72
72
|
|
|
73
73
|
## Workflow
|
|
74
74
|
|
|
75
|
-
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `docs/rules/xml-workflow-spec.md`
|
|
75
|
+
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md`
|
|
76
76
|
|
|
77
|
+
```xml
|
|
78
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
77
79
|
<workflow id="platform-conventions-generation" status="pending" version="1.0" desc="Platform conventions generation workflow">
|
|
78
80
|
|
|
79
81
|
<!-- ==================== INPUT PARAMETERS ==================== -->
|
|
@@ -866,6 +868,7 @@ ${output_path}/
|
|
|
866
868
|
</block>
|
|
867
869
|
|
|
868
870
|
</workflow>
|
|
871
|
+
```
|
|
869
872
|
|
|
870
873
|
## Constraints
|
|
871
874
|
|