speccrew 0.6.47 → 0.6.49
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/skills/speccrew-knowledge-bizs-api-analyze-xml/SKILL.md +4 -1
- package/.speccrew/skills/speccrew-knowledge-bizs-api-graph-xml/SKILL.md +11 -8
- package/.speccrew/skills/speccrew-knowledge-bizs-dispatch-xml/SKILL.md +33 -26
- package/.speccrew/skills/speccrew-knowledge-bizs-identify-entries-xml/SKILL.md +10 -3
- package/.speccrew/skills/speccrew-knowledge-bizs-ui-analyze-xml/SKILL.md +17 -14
- package/.speccrew/skills/speccrew-knowledge-bizs-ui-graph-xml/SKILL.md +9 -6
- package/.speccrew/skills/speccrew-knowledge-bizs-ui-style-extract-xml/SKILL.md +13 -4
- package/.speccrew/skills/speccrew-knowledge-module-summarize-xml/SKILL.md +11 -8
- package/.speccrew/skills/speccrew-knowledge-system-summarize-xml/SKILL.md +12 -9
- package/.speccrew/skills/speccrew-knowledge-techs-dispatch-xml/SKILL.md +23 -20
- package/.speccrew/skills/speccrew-knowledge-techs-generate-conventions-xml/SKILL.md +4 -1
- package/.speccrew/skills/speccrew-knowledge-techs-generate-quality-xml/SKILL.md +136 -228
- package/.speccrew/skills/speccrew-knowledge-techs-generate-ui-style-xml/SKILL.md +132 -159
- package/.speccrew/skills/speccrew-knowledge-techs-generate-xml/SKILL.md +8 -5
- package/.speccrew/skills/speccrew-knowledge-techs-index-xml/SKILL.md +6 -3
- package/.speccrew/skills/speccrew-knowledge-techs-init-xml/SKILL.md +4 -1
- package/package.json +1 -1
- package/workspace-template/docs/rules/xml-workflow-spec.md +13 -5
|
@@ -106,7 +106,9 @@ Conditional branching and guard checks.
|
|
|
106
106
|
<block type="task" action="run-skill" desc="Run full initialization">...</block>
|
|
107
107
|
</branch>
|
|
108
108
|
<branch default="true" name="Fallback">
|
|
109
|
-
<block type="event" action="log" level="error">
|
|
109
|
+
<block type="event" action="log" level="error">
|
|
110
|
+
<field name="message">Unknown state</field>
|
|
111
|
+
</block>
|
|
110
112
|
</branch>
|
|
111
113
|
</block>
|
|
112
114
|
```
|
|
@@ -164,7 +166,7 @@ Logging, confirmation, and signaling.
|
|
|
164
166
|
```xml
|
|
165
167
|
<!-- Log event -->
|
|
166
168
|
<block type="event" action="log" level="info" desc="Log progress">
|
|
167
|
-
Processing ${tasks.length} tasks
|
|
169
|
+
<field name="message">Processing ${tasks.length} tasks</field>
|
|
168
170
|
</block>
|
|
169
171
|
|
|
170
172
|
<!-- Confirm event (pauses for user input) -->
|
|
@@ -194,13 +196,19 @@ Try/catch/finally error handling.
|
|
|
194
196
|
</block>
|
|
195
197
|
</try>
|
|
196
198
|
<catch error-type="timeout">
|
|
197
|
-
<block type="event" action="log" level="error">
|
|
199
|
+
<block type="event" action="log" level="error">
|
|
200
|
+
<field name="message">Timeout: ${error.taskId}</field>
|
|
201
|
+
</block>
|
|
198
202
|
</catch>
|
|
199
203
|
<catch>
|
|
200
|
-
<block type="event" action="log" level="error">
|
|
204
|
+
<block type="event" action="log" level="error">
|
|
205
|
+
<field name="message">Unexpected: ${error.message}</field>
|
|
206
|
+
</block>
|
|
201
207
|
</catch>
|
|
202
208
|
<finally>
|
|
203
|
-
<block type="event" action="log" level="info">
|
|
209
|
+
<block type="event" action="log" level="info">
|
|
210
|
+
<field name="message">Batch completed</field>
|
|
211
|
+
</block>
|
|
204
212
|
</finally>
|
|
205
213
|
</block>
|
|
206
214
|
```
|