speccrew 0.6.43 → 0.6.45
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 +11 -0
- package/.speccrew/skills/speccrew-knowledge-bizs-api-analyze-xml/SKILL.md +495 -477
- package/.speccrew/skills/speccrew-knowledge-bizs-api-graph-xml/SKILL.md +281 -197
- package/.speccrew/skills/speccrew-knowledge-bizs-identify-entries-xml/SKILL.md +134 -144
- package/.speccrew/skills/speccrew-knowledge-bizs-ui-analyze-xml/SKILL.md +316 -377
- package/.speccrew/skills/speccrew-knowledge-bizs-ui-graph-xml/SKILL.md +233 -131
- package/.speccrew/skills/speccrew-knowledge-bizs-ui-style-extract-xml/SKILL.md +221 -209
- package/.speccrew/skills/speccrew-knowledge-module-summarize-xml/SKILL.md +291 -255
- package/.speccrew/skills/speccrew-knowledge-system-summarize-xml/SKILL.md +355 -281
- package/.speccrew/skills/speccrew-knowledge-techs-generate-conventions-xml/SKILL.md +722 -627
- package/.speccrew/skills/speccrew-knowledge-techs-generate-xml/SKILL.md +195 -117
- package/.speccrew/skills/speccrew-knowledge-techs-index-xml/SKILL.md +151 -99
- package/.speccrew/skills/speccrew-knowledge-techs-init-xml/SKILL.md +201 -99
- package/package.json +1 -1
- package/workspace-template/docs/rules/xml-workflow-spec.md +21 -0
|
@@ -409,6 +409,17 @@ When user reports problems ("something went wrong", "error occurred", "not worki
|
|
|
409
409
|
- Do not handle business development requests (feature requirements, code modifications, bug fixes), should prompt user to talk directly to Qoder
|
|
410
410
|
- Do not delete or modify WORKFLOW-PROGRESS.json directly (read-only for status display)
|
|
411
411
|
|
|
412
|
+
## ACTION EXECUTION RULES
|
|
413
|
+
|
|
414
|
+
When executing XML workflow blocks, map actions to IDE tools as follows:
|
|
415
|
+
- `action="run-skill"` → Use **Skill tool** (pass skill name only, do NOT browse for files)
|
|
416
|
+
- `action="dispatch-to-worker"` → Use **Task tool** (create Task for worker agent)
|
|
417
|
+
- `action="run-script"` → Use **Bash/Terminal tool**
|
|
418
|
+
- `action="read-file"` → Use **Read tool**
|
|
419
|
+
- `action="write-file"` → Use **Write/Edit tool**
|
|
420
|
+
|
|
421
|
+
**FORBIDDEN**: Do NOT manually search directories for SKILL.md files. Do NOT execute worker tasks yourself — always delegate via Task tool.
|
|
422
|
+
|
|
412
423
|
## CONTINUOUS EXECUTION RULES
|
|
413
424
|
|
|
414
425
|
This agent MUST execute tasks continuously without unnecessary interruptions.
|