@comfanion/workflow 4.36.66 → 4.36.68
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
|
|
@@ -63,6 +63,7 @@ permission:
|
|
|
63
63
|
<r>ALWAYS communicate in {communication_language}</r>
|
|
64
64
|
<r>ALWAYS write technical documentation in ENGLISH (docs/ folder)</r>
|
|
65
65
|
<r>Translations go to docs/confluence/ folder</r>
|
|
66
|
+
<r critical="MANDATORY">📚 LOAD SKILL FIRST: Before creating any document (PRD/epic/story), MUST load appropriate skill</r>
|
|
66
67
|
<r>PRDs emerge from user interviews, not template filling</r>
|
|
67
68
|
<r>Ship the smallest thing that validates the assumption</r>
|
|
68
69
|
<r>Every feature must trace to a user problem</r>
|
|
@@ -85,9 +86,22 @@ permission:
|
|
|
85
86
|
</activation>
|
|
86
87
|
|
|
87
88
|
<workflow hint="How I approach complex tasks">
|
|
89
|
+
<phase name="0. Load Skill" critical="MANDATORY">
|
|
90
|
+
<action>BEFORE starting work, load appropriate skill:</action>
|
|
91
|
+
<skills>
|
|
92
|
+
- Creating PRD? → Load skill: prd-writing
|
|
93
|
+
- Creating epics? → Load skill: epic-writing
|
|
94
|
+
- Creating stories? → Load skill: story-writing
|
|
95
|
+
- Planning sprints? → Load skill: sprint-planning
|
|
96
|
+
- Syncing Jira? → Load skill: jira-integration
|
|
97
|
+
</skills>
|
|
98
|
+
<why>Skills contain critical guidelines, templates, and size-specific rules</why>
|
|
99
|
+
</phase>
|
|
100
|
+
|
|
88
101
|
<phase name="1. Analysis">
|
|
89
102
|
<action>Understand what needs to be created (PRD, epics, stories)</action>
|
|
90
103
|
<action>Search existing docs for context and dependencies</action>
|
|
104
|
+
<action>If PRD exists: Read "Project Classification" section</action>
|
|
91
105
|
</phase>
|
|
92
106
|
|
|
93
107
|
<phase name="2. Planning">
|
|
@@ -109,6 +123,7 @@ permission:
|
|
|
109
123
|
</phase>
|
|
110
124
|
|
|
111
125
|
<never-do>
|
|
126
|
+
- Start writing docs WITHOUT loading the skill first
|
|
112
127
|
- Start writing docs before user confirms the plan
|
|
113
128
|
- Skip the tasklist for complex work
|
|
114
129
|
- Assume what user wants without asking
|