speccrew 0.6.50 → 0.6.51
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 -0
- package/.speccrew/skills/speccrew-knowledge-bizs-dispatch-xml/SKILL.md +2 -0
- package/.speccrew/skills/speccrew-knowledge-techs-dispatch-xml/SKILL.md +2 -0
- package/package.json +1 -1
- package/workspace-template/docs/rules/xml-workflow-spec.md +7 -6
|
@@ -76,6 +76,8 @@ You understand the complete AI engineering closed loop: **speccrew-pm → speccr
|
|
|
76
76
|
# Workflow (XML Block Definition)
|
|
77
77
|
|
|
78
78
|
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md`
|
|
79
|
+
>
|
|
80
|
+
> After reading the specification, parse the XML workflow below and **strictly execute each `<block>` in document order**. Every `<block type="task">` is a literal tool-call instruction — use the `action` attribute to determine which IDE tool to invoke, and pass the `<field name="command">` or `<field name="skill">` value **exactly as written**. Do NOT interpret the workflow as a goal description or improvise your own approach.
|
|
79
81
|
|
|
80
82
|
```xml
|
|
81
83
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
@@ -99,6 +99,8 @@ Stage 4: System Summary
|
|
|
99
99
|
## XML Workflow Definition
|
|
100
100
|
|
|
101
101
|
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md`
|
|
102
|
+
>
|
|
103
|
+
> After reading the specification, parse the XML workflow below and **strictly execute each `<block>` in document order**. Every `<block type="task">` is a literal tool-call instruction — use the `action` attribute to determine which IDE tool to invoke, and pass the `<field name="command">` or `<field name="skill">` value **exactly as written**. Do NOT interpret the workflow as a goal description or improvise your own approach.
|
|
102
104
|
|
|
103
105
|
```xml
|
|
104
106
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
@@ -119,6 +119,8 @@ Read `speccrew-workspace/docs/configs/platform-mapping.json` for standardized pl
|
|
|
119
119
|
## XML Workflow Definition
|
|
120
120
|
|
|
121
121
|
> **REQUIRED**: Before executing this workflow, read the XML workflow specification: `speccrew-workspace/docs/rules/xml-workflow-spec.md`
|
|
122
|
+
>
|
|
123
|
+
> After reading the specification, parse the XML workflow below and **strictly execute each `<block>` in document order**. Every `<block type="task">` is a literal tool-call instruction — use the `action` attribute to determine which IDE tool to invoke, and pass the `<field name="command">` or `<field name="skill">` value **exactly as written**. Do NOT interpret the workflow as a goal description or improvise your own approach.
|
|
122
124
|
|
|
123
125
|
```xml
|
|
124
126
|
<?xml version="1.0" encoding="UTF-8"?>
|
package/package.json
CHANGED
|
@@ -393,9 +393,10 @@ When executing `<block type="task">` blocks, the `action` attribute determines w
|
|
|
393
393
|
## Execution Rules
|
|
394
394
|
|
|
395
395
|
1. **NEVER skip a block** — execute every block in document order
|
|
396
|
-
2. **
|
|
397
|
-
3.
|
|
398
|
-
4. **`
|
|
399
|
-
5. **`
|
|
400
|
-
6. **`
|
|
401
|
-
7.
|
|
396
|
+
2. **Literal execution** — each `<block type="task">` is a direct tool-call instruction, NOT a goal description. Pass `<field name="command">` values to the terminal **exactly as written**. Pass `<field name="skill">` values to the Skill tool **exactly as written**. Do NOT rephrase, combine, or improvise alternative commands.
|
|
397
|
+
3. **Read `rule` blocks as constraints** — check them continuously during execution
|
|
398
|
+
4. **`checkpoint` blocks** = persist progress before continuing
|
|
399
|
+
5. **`gateway mode="exclusive"`** = only execute the first matching branch
|
|
400
|
+
6. **`loop parallel="true"`** = dispatch all iterations concurrently
|
|
401
|
+
7. **`rule level="forbidden"`** = immediate stop if violated
|
|
402
|
+
8. **Input/Output blocks** define the contract — respect required parameters
|