@codihaus/claude-skills 1.6.8 → 1.6.9

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.8",
3
+ "version": "1.6.9",
4
4
  "description": "Claude Code skills for software development workflow",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -68,6 +68,7 @@ Depending on mode:
68
68
  **New Project:**
69
69
  - BRD with use cases grouped by feature
70
70
  - Context document (stakeholders, constraints, users)
71
+ - Market research (MVP/Standard/Advanced feature tiers)
71
72
  - Feature folders created
72
73
  - Architecture feasibility validated
73
74
  - Questionnaire for customer gaps
@@ -110,22 +111,72 @@ Detect automatically on start:
110
111
 
111
112
  ## Context Gathering
112
113
 
113
- Use `AskUserQuestion` to understand project context.
114
+ Use `AskUserQuestion` to understand project context and scope preferences.
115
+
116
+ ### For New Project
117
+
118
+ Ask 5 key questions using `AskUserQuestion`:
119
+
120
+ **Q1: Project Type & Source Code**
121
+ Options:
122
+ - New project (no existing code)
123
+ - Existing codebase (current folder)
124
+ - Existing codebase (different folder)
125
+
126
+ **Q2: Industry/Niche**
127
+ Options:
128
+ - SaaS B2B
129
+ - SaaS B2C
130
+ - E-commerce
131
+ - Marketplace
132
+ - Enterprise
133
+ - Other
134
+
135
+ **Q3: Target Users**
136
+ Options:
137
+ - Business users (B2B)
138
+ - Consumers (B2C)
139
+ - Internal users
140
+ - Mixed
141
+
142
+ **Q4: Known Constraints** (multi-select)
143
+ Options:
144
+ - Timeline constraint
145
+ - Budget constraint
146
+ - Compliance requirements
147
+ - Integration requirements
148
+ - None
149
+
150
+ **Q5: Scope Tier Preference**
151
+ Options:
152
+ - **Core (3-5 use cases)** - MVP, essential features only
153
+ - **Standard (8-12 use cases)** - Competitive parity, market standard
154
+ - **Full (15+ use cases)** - Advanced features, differentiation
155
+
156
+ This helps align on MVP vs market standard vs advanced features upfront.
157
+
158
+ ### For Add Feature
159
+
160
+ Ask 2 questions:
161
+
162
+ **Q1: Feature Name**
163
+ What to call this feature (e.g., "billing", "notifications", "analytics")
114
164
 
115
- **For New Project, ask about:**
116
- - Project type (new vs existing codebase)
117
- - Industry/niche
118
- - Target users
119
- - Known constraints
120
- - Scope tier (Core/Standard/Full)
165
+ **Q2: Scope for This Feature**
166
+ Options:
167
+ - **Core** - MVP/essential only
168
+ - **Standard** - Competitive parity
169
+ - **Full** - Advanced/differentiation features
121
170
 
122
- **For Add Feature, ask about:**
123
- - Feature name
124
- - Scope for this feature
171
+ ### For Existing Codebase
125
172
 
126
- **For Existing Codebase:**
127
- - Scan for docs, existing features, patterns
128
- - Reference `references/file-patterns.md` for scan patterns
173
+ **If user indicates existing codebase:**
174
+ - Scan for docs (CLAUDE.md, README, CONTRIBUTING)
175
+ - Scan frontend files (.vue, .tsx, .jsx) to infer existing features
176
+ - Use `references/file-patterns.md` for scan patterns
177
+ - Summarize findings in `context.md`
178
+
179
+ This codebase discovery informs which features already exist and what gaps remain.
129
180
 
130
181
  ## Duplicate Prevention
131
182
 
@@ -150,12 +201,62 @@ Use `AskUserQuestion` to understand project context.
150
201
  - Open questions
151
202
  - References from market research
152
203
 
153
- **Market research:**
154
- - Industry patterns
155
- - User flows
156
- - Compliance requirements
157
- - Documentation links
158
- - Output to `references.md`
204
+ ## Market Research
205
+
206
+ **Why research:** Understand feature tiers and competitive landscape to inform scope decisions.
207
+
208
+ **Combines with user's scope preference:**
209
+ - User chose "Core" → Focus research on MVP features
210
+ - User chose "Standard" → Research MVP + market standard features
211
+ - User chose "Full" → Research all tiers including advanced/differentiation
212
+
213
+ **What to research:**
214
+ - Industry patterns (what similar products do)
215
+ - User flows (standard UX patterns in this domain)
216
+ - Compliance requirements (regulations, standards, must-haves)
217
+ - Documentation links (references for engineers)
218
+
219
+ **Expected insights organized by tier:**
220
+ - **MVP Features (Must-Have):** Minimum to be viable product
221
+ - Example: Login, basic CRUD, core workflows
222
+ - **Market Standard (Competitive Parity):** What competitors offer
223
+ - Example: SSO, notifications, exports
224
+ - **Advanced Features (Differentiation):** What sets apart top products
225
+ - Example: AI suggestions, real-time collaboration, advanced analytics
226
+
227
+ **Output:**
228
+ - `references.md` - Organized by feature tier with links and notes
229
+ - Use insights to:
230
+ - Validate user's scope choice (Core/Standard/Full)
231
+ - Prioritize use cases (Must/Should/Could)
232
+ - Guide customer conversations ("This is standard" vs "This is premium")
233
+
234
+ **Format for references.md:**
235
+ ```markdown
236
+ ## {Feature} - Market Research
237
+
238
+ ### MVP (Must-Have)
239
+ - Login/Signup - Industry standard: email + password + OAuth
240
+ - Reference: [Auth0 best practices](link)
241
+ - Profile management - Every product has this
242
+
243
+ ### Market Standard (Competitive Parity)
244
+ - SSO integration - 80% of competitors offer this
245
+ - Reference: [SAML guide](link)
246
+ - Email notifications - User expectation
247
+
248
+ ### Advanced (Differentiation)
249
+ - AI-powered recommendations - Only Competitor X has this
250
+ - Reference: [ML recommendation patterns](link)
251
+ - Real-time collaboration - Top-tier feature
252
+ ```
253
+
254
+ **How it guides use case creation:**
255
+ - User chose "Core" → Create use cases for MVP tier only
256
+ - User chose "Standard" → Create use cases for MVP + Market Standard tiers
257
+ - User chose "Full" → Create use cases for all tiers
258
+
259
+ This alignment ensures use cases match the agreed scope.
159
260
 
160
261
  ## BRD Structure
161
262