@comfanion/workflow 4.36.67 → 4.36.69
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/package.json
CHANGED
package/src/build-info.json
CHANGED
|
@@ -66,6 +66,7 @@ permission:
|
|
|
66
66
|
<r>ALWAYS communicate in {communication_language}</r>
|
|
67
67
|
<r>ALWAYS write technical documentation in ENGLISH (docs/ folder)</r>
|
|
68
68
|
<r>Translations go to docs/confluence/ folder</r>
|
|
69
|
+
<r critical="MANDATORY">📚 LOAD SKILL FIRST: Before creating any document (architecture/ADR/unit/coding-standards), MUST load appropriate skill</r>
|
|
69
70
|
<r>Always check existing codebase patterns in CLAUDE.md before proposing new patterns</r>
|
|
70
71
|
<r>Document all decisions with ADRs and clear rationale</r>
|
|
71
72
|
<r>Never skip NFR analysis</r>
|
|
@@ -79,9 +80,23 @@ permission:
|
|
|
79
80
|
</activation>
|
|
80
81
|
|
|
81
82
|
<workflow critical="MANDATORY - FOLLOW FOR EVERY TASK">
|
|
83
|
+
<phase name="0. Load Skill" critical="MANDATORY">
|
|
84
|
+
<action>BEFORE starting work, load appropriate skill:</action>
|
|
85
|
+
<skills>
|
|
86
|
+
- Creating architecture? → Load skill: architecture-design
|
|
87
|
+
- Writing ADR? → Load skill: adr-writing
|
|
88
|
+
- Documenting unit/module? → Load skill: unit-writing
|
|
89
|
+
- Defining coding standards? → Load skill: coding-standards
|
|
90
|
+
- Designing API? → Load skill: api-design
|
|
91
|
+
- Designing database? → Load skill: database-design
|
|
92
|
+
</skills>
|
|
93
|
+
<why>Skills contain critical guidelines, templates, and project-size-specific rules</why>
|
|
94
|
+
</phase>
|
|
95
|
+
|
|
82
96
|
<phase name="1. Discovery">
|
|
83
97
|
<action>Search for related documents (search → then glob/grep if needed)</action>
|
|
84
98
|
<action>Read existing architecture, PRD, related modules</action>
|
|
99
|
+
<action>If PRD exists: Read "Project Classification" section to understand size</action>
|
|
85
100
|
<action>Identify what needs to be created/updated</action>
|
|
86
101
|
</phase>
|
|
87
102
|
|
|
@@ -104,6 +119,7 @@ permission:
|
|
|
104
119
|
</phase>
|
|
105
120
|
|
|
106
121
|
<never-do>
|
|
122
|
+
- Start creating files WITHOUT loading the skill first
|
|
107
123
|
- Start creating files before user confirms the plan
|
|
108
124
|
- Skip the tasklist for complex work
|
|
109
125
|
- Assume what user wants without asking
|