@codihaus/claude-skills 1.6.27 → 1.6.28

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codihaus/claude-skills",
3
- "version": "1.6.27",
3
+ "version": "1.6.28",
4
4
  "description": "Claude Code skills for software development workflow",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: debrief
3
3
  description: Customer requirements → questionnaire (default) or BRD (with --answers flag)
4
- version: 5.3.0
4
+ version: 5.3.1
5
5
  ---
6
6
 
7
7
  # /debrief - Business Requirements Document
@@ -95,12 +95,17 @@ version: 5.3.0
95
95
  ```bash
96
96
  python .claude/skills/debrief/scripts/generate_questionnaire.py questionnaire-{YYYY-MM-DD}.xlsx -
97
97
  ```
98
- Pipe JSON to stdin with research data (see `references/workflow.md` for JSON format).
98
+ Pipe JSON to stdin with research data (see `references/workflow.md` for full JSON format).
99
+
100
+ **CRITICAL: Populate with real data**:
101
+ - **questions array**: 2-5 questions per feature (validation + open questions)
102
+ - **references object**: URLs by feature (comparison, reviews, ecosystems)
103
+ - **research object**: Feature counts, tier breakdown, source counts
99
104
 
100
105
  **3 sheets generated**:
101
106
  - Summary (features count, tier breakdown, research stats)
102
- - Questions (validation + open)
103
- - References (URLs, evidence per feature)
107
+ - Questions (validation + open questions with context)
108
+ - References (URLs by feature, organized by source type)
104
109
 
105
110
  **Purpose**: User reviews evidence, makes decisions, validates with customer.
106
111
 
@@ -185,19 +185,33 @@ Per feature, collect:
185
185
 
186
186
  ## Questionnaire Strategy
187
187
 
188
- **Always generate questionnaire** with:
189
-
190
- **Validation questions** (customer confirms research):
191
- - "We found 9/10 competitors offer {feature}. Confirm you need this?"
192
- - "Market shows {feature} is {tier}. Agree with priority?"
193
-
194
- **Open questions** (genuine unknowns):
195
- - Business rules needing clarification
196
- - Integration requirements
197
- - Constraints and limits
188
+ **Always generate questionnaire** with **2-5 questions per feature**:
189
+
190
+ **Type 1: Validation questions** (customer confirms research):
191
+ - Category: "Validation"
192
+ - Priority: "Required"
193
+ - Examples:
194
+ - "We found 9/10 competitors offer {feature}. Do you need this?"
195
+ - "Market shows {feature} is {tier}. Agree with priority?"
196
+ - "80% of {category} tools include {feature} in free tier. Include in MVP?"
197
+
198
+ **Type 2: Open questions** (genuine unknowns from research):
199
+ - Category: "Requirements" / "Business Rules" / "Integrations" / "Constraints"
200
+ - Priority: "Required" (blockers) or "Optional" (nice to know)
201
+ - Examples:
202
+ - "What is the expected user load?" (Requirements)
203
+ - "Should users be able to delete their account?" (Business Rules)
204
+ - "Which third-party services must integrate?" (Integrations)
205
+ - "Are there compliance requirements (GDPR, HIPAA)?" (Constraints)
198
206
 
199
207
  **Purpose**: Customer validates assumptions + fills gaps
200
208
 
209
+ **CRITICAL**: Every question must have:
210
+ - Clear category
211
+ - Priority (Required/Optional)
212
+ - Context (why we're asking)
213
+ - Source (which feature/UC)
214
+
201
215
  ---
202
216
 
203
217
  ## Common Patterns
@@ -67,6 +67,13 @@
67
67
 
68
68
  **Output**: Features with tier classification and multi-source evidence
69
69
 
70
+ **CRITICAL: Collect URLs during research** for references section:
71
+ - Comparison pages (e.g., "vs Alternative A")
72
+ - G2/Capterra reviews
73
+ - Chrome/WordPress/GitHub ecosystem pages
74
+ - Reddit/forum discussions
75
+ - Competitor feature pages
76
+
70
77
  ---
71
78
 
72
79
  ### STEP 3: Generate Questionnaire (ALWAYS)
@@ -78,10 +85,28 @@
78
85
  2. Call Python script: `python .claude/skills/debrief/scripts/generate_questionnaire.py questionnaire-{YYYY-MM-DD}.xlsx -`
79
86
  3. Pipe JSON to stdin or save as file
80
87
 
88
+ **CRITICAL: Populate questions array with TWO types:**
89
+
90
+ **Type 1: Validation questions** (confirm research findings):
91
+ - Category: "Validation"
92
+ - Priority: "Required"
93
+ - Question: "We found {X}/10 competitors offer {feature}. Do you need this?"
94
+ - Context: "Tier: {MVP/Standard/Advanced}, Evidence: {brief summary}"
95
+ - Source: Feature name
96
+
97
+ **Type 2: Open questions** (unknowns from research):
98
+ - Category: "Requirements" / "Business Rules" / "Integrations" / "Constraints"
99
+ - Priority: "Required" (blockers) or "Optional" (nice to know)
100
+ - Question: Specific question needing customer input
101
+ - Context: Why this matters / what it affects
102
+ - Source: Feature name or "General"
103
+
104
+ **Generate 2-5 questions per feature** (1-2 validation, 1-3 open questions).
105
+
81
106
  **JSON format**:
82
107
  ```json
83
108
  {
84
- "project_name": "Project Name",
109
+ "project_name": "Project Management Tool",
85
110
  "date": "2026-01-25",
86
111
  "research": {
87
112
  "depth": "Deep",
@@ -90,18 +115,36 @@
90
115
  "sources_count": 23
91
116
  },
92
117
  "references": {
93
- "Feature Name": [
118
+ "Task Management": [
94
119
  {"type": "Comparison", "url": "https://..."},
95
- {"type": "G2 Reviews", "url": "https://..."}
120
+ {"type": "G2 Reviews", "url": "https://..."},
121
+ {"type": "Chrome Extension", "url": "https://..."}
122
+ ],
123
+ "Team Collaboration": [
124
+ {"type": "Comparison", "url": "https://..."}
96
125
  ]
97
126
  },
98
127
  "questions": [
99
128
  {
100
- "category": "Requirements",
101
- "question": "Question text?",
129
+ "category": "Validation",
130
+ "question": "We found 9/10 competitors offer real-time task updates. Do you need this feature?",
131
+ "priority": "Required",
132
+ "context": "Tier: MVP, 90% competitor presence, high user demand in reviews",
133
+ "source": "Task Management"
134
+ },
135
+ {
136
+ "category": "Business Rules",
137
+ "question": "What is the maximum team size you expect to support?",
102
138
  "priority": "Required",
103
- "context": "Why we're asking",
104
- "source": "UC-XXX-NNN"
139
+ "context": "Affects pricing model and infrastructure planning",
140
+ "source": "Team Collaboration"
141
+ },
142
+ {
143
+ "category": "Integrations",
144
+ "question": "Which third-party tools must integrate with this system?",
145
+ "priority": "Optional",
146
+ "context": "Common integrations: Slack, Google Calendar, GitHub",
147
+ "source": "General"
105
148
  }
106
149
  ]
107
150
  }