@riligar/agents-kit 1.4.0 → 1.5.1

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.
Files changed (27) hide show
  1. package/.agent/skills/riligar-business-startup-analyst/SKILL.md +546 -0
  2. package/.agent/skills/riligar-business-startup-financial/SKILL.md +392 -0
  3. package/.agent/skills/riligar-business-startup-market/SKILL.md +266 -0
  4. package/.agent/skills/riligar-dev-architecture/SKILL.md +12 -12
  5. package/.agent/skills/riligar-dev-backend/SKILL.md +82 -0
  6. package/.agent/skills/riligar-dev-clean-code/SKILL.md +104 -116
  7. package/.agent/skills/riligar-dev-code-review/SKILL.md +12 -4
  8. package/.agent/skills/riligar-dev-database/SKILL.md +10 -10
  9. package/.agent/skills/riligar-dev-frontend/SKILL.md +198 -0
  10. package/.agent/skills/riligar-marketing-email/SKILL.md +1051 -0
  11. package/.agent/skills/riligar-marketing-seo/SKILL.md +351 -0
  12. package/.agent/skills/riligar-plan-writing/SKILL.md +32 -21
  13. package/README.md +8 -1
  14. package/package.json +1 -1
  15. package/.agent/skills/riligar-dev-api/SKILL.md +0 -81
  16. package/.agent/skills/riligar-dev-react/SKILL.md +0 -198
  17. /package/.agent/skills/{riligar-dev-api → riligar-dev-backend}/api-style.md +0 -0
  18. /package/.agent/skills/{riligar-dev-api → riligar-dev-backend}/auth.md +0 -0
  19. /package/.agent/skills/{riligar-dev-api → riligar-dev-backend}/documentation.md +0 -0
  20. /package/.agent/skills/{riligar-dev-api → riligar-dev-backend}/graphql.md +0 -0
  21. /package/.agent/skills/{riligar-dev-api → riligar-dev-backend}/rate-limiting.md +0 -0
  22. /package/.agent/skills/{riligar-dev-api → riligar-dev-backend}/response.md +0 -0
  23. /package/.agent/skills/{riligar-dev-api → riligar-dev-backend}/rest.md +0 -0
  24. /package/.agent/skills/{riligar-dev-api → riligar-dev-backend}/scripts/api_validator.py +0 -0
  25. /package/.agent/skills/{riligar-dev-api → riligar-dev-backend}/security-testing.md +0 -0
  26. /package/.agent/skills/{riligar-dev-api → riligar-dev-backend}/trpc.md +0 -0
  27. /package/.agent/skills/{riligar-dev-api → riligar-dev-backend}/versioning.md +0 -0
@@ -0,0 +1,392 @@
1
+ ---
2
+ name: riligar-business-startup-financial
3
+ description: Create detailed 3-5 year financial model with revenue, costs, cash
4
+ flow, and scenarios
5
+ allowed-tools: Read Write Edit Glob Grep Bash WebSearch WebFetch
6
+ ---
7
+
8
+ # Financial Projections
9
+
10
+ Create a comprehensive 3-5 year financial model with revenue projections, cost structure, headcount planning, cash flow analysis, and three-scenario modeling (conservative, base, optimistic) for startup financial planning and fundraising.
11
+
12
+ ## Use this skill when
13
+
14
+ - Working on financial projections tasks or workflows
15
+ - Needing guidance, best practices, or checklists for financial projections
16
+
17
+ ## Do not use this skill when
18
+
19
+ - The task is unrelated to financial projections
20
+ - You need a different domain or tool outside this scope
21
+
22
+ ## Instructions
23
+
24
+ - Clarify goals, constraints, and required inputs.
25
+ - Apply relevant best practices and validate outcomes.
26
+ - Provide actionable steps and verification.
27
+ - If detailed examples are required, open `resources/implementation-playbook.md`.
28
+
29
+ ## What This Command Does
30
+
31
+ This command builds a complete financial model including:
32
+
33
+ 1. Cohort-based revenue projections
34
+ 2. Detailed cost structure (COGS, S&M, R&D, G&A)
35
+ 3. Headcount planning by role
36
+ 4. Monthly cash flow analysis
37
+ 5. Key metrics (CAC, LTV, burn rate, runway)
38
+ 6. Three-scenario analysis
39
+
40
+ ## Instructions for Claude
41
+
42
+ When this command is invoked, follow these steps:
43
+
44
+ ### Step 1: Gather Model Inputs
45
+
46
+ Ask the user for essential information:
47
+
48
+ **Business Model:**
49
+
50
+ - Revenue model (SaaS, marketplace, transaction, etc.)
51
+ - Pricing structure (tiers, average price)
52
+ - Target customer segments
53
+
54
+ **Starting Point:**
55
+
56
+ - Current MRR/ARR (if any)
57
+ - Current customer count
58
+ - Current team size
59
+ - Current cash balance
60
+
61
+ **Growth Assumptions:**
62
+
63
+ - Expected monthly customer acquisition
64
+ - Customer retention/churn rate
65
+ - Average contract value (ACV)
66
+ - Sales cycle length
67
+
68
+ **Cost Assumptions:**
69
+
70
+ - Gross margin or COGS %
71
+ - S&M budget or CAC target
72
+ - Current burn rate (if applicable)
73
+
74
+ **Funding:**
75
+
76
+ - Planned fundraising (amount, timing)
77
+ - Pre/post-money valuation
78
+
79
+ ### Step 2: Activate startup-financial-modeling Skill
80
+
81
+ The startup-financial-modeling skill provides frameworks. Reference it for:
82
+
83
+ - Revenue modeling approaches
84
+ - Cost structure templates
85
+ - Headcount planning guidance
86
+ - Scenario analysis methods
87
+
88
+ ### Step 3: Build Revenue Model
89
+
90
+ **Use Cohort-Based Approach:**
91
+
92
+ For each month, track:
93
+
94
+ 1. New customers acquired
95
+ 2. Existing customers retained (apply churn)
96
+ 3. Revenue per cohort (customers × ARPU)
97
+ 4. Expansion revenue (upsells)
98
+
99
+ **Formula:**
100
+
101
+ ```
102
+ MRR (Month N) = Σ across all cohorts:
103
+ (Cohort Size × Retention Rate × ARPU) + Expansion
104
+ ```
105
+
106
+ **Project:**
107
+
108
+ - Monthly detail for Year 1-2
109
+ - Quarterly detail for Year 3
110
+ - Annual for Years 4-5
111
+
112
+ ### Step 4: Model Cost Structure
113
+
114
+ Break down operating expenses:
115
+
116
+ **1. Cost of Goods Sold (COGS)**
117
+
118
+ - Hosting/infrastructure (% of revenue or fixed)
119
+ - Payment processing (% of revenue)
120
+ - Variable customer support
121
+ - Third-party services
122
+
123
+ Target gross margin:
124
+
125
+ - SaaS: 75-85%
126
+ - Marketplace: 60-70%
127
+ - E-commerce: 40-60%
128
+
129
+ **2. Sales & Marketing (S&M)**
130
+
131
+ - Sales team compensation
132
+ - Marketing programs
133
+ - Tools and software
134
+ - Target: 40-60% of revenue (early stage)
135
+
136
+ **3. Research & Development (R&D)**
137
+
138
+ - Engineering team
139
+ - Product management
140
+ - Design
141
+ - Target: 30-40% of revenue
142
+
143
+ **4. General & Administrative (G&A)**
144
+
145
+ - Executive team
146
+ - Finance, legal, HR
147
+ - Office and facilities
148
+ - Target: 15-25% of revenue
149
+
150
+ ### Step 5: Plan Headcount
151
+
152
+ Create role-by-role hiring plan:
153
+
154
+ **Reference team-composition-analysis skill for:**
155
+
156
+ - Roles by stage
157
+ - Compensation benchmarks
158
+ - Hiring velocity assumptions
159
+
160
+ **For each role:**
161
+
162
+ - Title and department
163
+ - Start date (month/quarter)
164
+ - Base salary
165
+ - Fully-loaded cost (salary × 1.3-1.4)
166
+ - Equity grant
167
+
168
+ **Track departmental ratios:**
169
+
170
+ - Engineering: 40-50% of team
171
+ - Sales & Marketing: 25-35%
172
+ - G&A: 10-15%
173
+ - Product/CS: 10-15%
174
+
175
+ ### Step 6: Calculate Cash Flow
176
+
177
+ Monthly cash flow projection:
178
+
179
+ ```
180
+ Beginning Cash Balance
181
+ + Cash Collected (revenue, consider payment terms)
182
+ - Operating Expenses
183
+ - CapEx
184
+ = Ending Cash Balance
185
+
186
+ Monthly Burn = Revenue - Expenses (if negative)
187
+ Runway = Cash Balance / Monthly Burn Rate
188
+ ```
189
+
190
+ **Include Funding Events:**
191
+
192
+ - Timing of raises
193
+ - Amount raised
194
+ - Use of proceeds
195
+ - Impact on cash balance
196
+
197
+ ### Step 7: Compute Key Metrics
198
+
199
+ Calculate monthly/quarterly:
200
+
201
+ **Unit Economics:**
202
+
203
+ - CAC (S&M spend / new customers)
204
+ - LTV (ARPU × margin% / churn rate)
205
+ - LTV:CAC ratio (target > 3.0)
206
+ - CAC payback period (target < 18 months)
207
+
208
+ **Efficiency Metrics:**
209
+
210
+ - Burn multiple (net burn / net new ARR) - target < 2.0
211
+ - Magic number (net new ARR / S&M spend) - target > 0.5
212
+ - Rule of 40 (growth% + margin%) - target > 40%
213
+
214
+ **Cash Metrics:**
215
+
216
+ - Monthly burn rate
217
+ - Runway in months
218
+ - Cash efficiency
219
+
220
+ ### Step 8: Create Three Scenarios
221
+
222
+ Build conservative, base, and optimistic projections:
223
+
224
+ **Conservative (P10):**
225
+
226
+ - New customers: -30% vs. base
227
+ - Churn: +20% vs. base
228
+ - Pricing: -15% vs. base
229
+ - CAC: +25% vs. base
230
+
231
+ **Base (P50):**
232
+
233
+ - Most likely assumptions
234
+ - Primary planning scenario
235
+
236
+ **Optimistic (P90):**
237
+
238
+ - New customers: +30% vs. base
239
+ - Churn: -20% vs. base
240
+ - Pricing: +15% vs. base
241
+ - CAC: -25% vs. base
242
+
243
+ ### Step 9: Generate Financial Model Report
244
+
245
+ Create comprehensive markdown report with tables:
246
+
247
+ **Section 1: Executive Summary**
248
+
249
+ - 3-5 year financial snapshot
250
+ - Key metrics at scale
251
+ - Funding requirements
252
+
253
+ **Section 2: Model Assumptions**
254
+
255
+ - Revenue model and pricing
256
+ - Growth assumptions
257
+ - Cost structure assumptions
258
+ - Headcount plan summary
259
+
260
+ **Section 3: Revenue Projections**
261
+ Monthly/quarterly tables showing:
262
+
263
+ ```
264
+ | Month | New Customers | Total Customers | MRR | ARR | Growth % |
265
+ |-------|---------------|-----------------|-----|-----|----------|
266
+ ```
267
+
268
+ **Section 4: Cost Breakdown**
269
+
270
+ ```
271
+ | Department | Year 1 | Year 2 | Year 3 | % Revenue |
272
+ |------------|--------|--------|--------|-----------|
273
+ | COGS | $X | $Y | $Z | XX% |
274
+ | S&M | $X | $Y | $Z | XX% |
275
+ | R&D | $X | $Y | $Z | XX% |
276
+ | G&A | $X | $Y | $Z | XX% |
277
+ ```
278
+
279
+ **Section 5: Headcount Plan**
280
+
281
+ ```
282
+ | Department | Current | Year 1 | Year 2 | Year 3 |
283
+ |------------|---------|--------|--------|--------|
284
+ | Engineering| X | Y | Z | W |
285
+ ```
286
+
287
+ **Section 6: Cash Flow Analysis**
288
+
289
+ ```
290
+ | Quarter | Revenue | Expenses | Net Burn | Cash Balance | Runway |
291
+ |---------|---------|----------|----------|--------------|--------|
292
+ ```
293
+
294
+ **Section 7: Key Metrics**
295
+
296
+ ```
297
+ | Metric | Year 1 | Year 2 | Year 3 | Target |
298
+ |--------|--------|--------|--------|--------|
299
+ | CAC | $X | $Y | $Z | <$A |
300
+ | LTV | $X | $Y | $Z | >$B |
301
+ | Burn Multiple | X | Y | Z | <2.0 |
302
+ ```
303
+
304
+ **Section 8: Scenario Analysis**
305
+
306
+ ```
307
+ | Scenario | Year 3 ARR | Customers | Burn | Runway |
308
+ |----------|------------|-----------|------|--------|
309
+ | Conservative | $Xم | Y | $Z | W mo |
310
+ | Base | $X | Y | $Z | W mo |
311
+ | Optimistic | $X | Y | $Z | W mo |
312
+ ```
313
+
314
+ **Section 9: Funding Requirements**
315
+
316
+ - Amount needed
317
+ - Use of proceeds breakdown
318
+ - Milestones to achieve
319
+ - Expected valuation impact
320
+
321
+ **Section 10: Validation**
322
+
323
+ - Sanity checks performed
324
+ - Benchmark comparisons
325
+ - Risk factors
326
+ - Assumptions to monitor
327
+
328
+ ### Step 10: Save Model
329
+
330
+ Offer to save as markdown file:
331
+
332
+ - Suggest filename: `financial-projections-YYYY-MM-DD.md`
333
+ - Include note that user can convert to Excel/Sheets
334
+ - Provide formulas for key calculations
335
+
336
+ ## Financial Model Best Practices
337
+
338
+ **Do:**
339
+
340
+ - Use cohort-based revenue model
341
+ - Include 3 scenarios
342
+ - Show monthly detail (Year 1-2)
343
+ - Calculate key metrics
344
+ - Validate against benchmarks
345
+ - Document all assumptions
346
+ - Show cash flow and runway
347
+ - Include fundraising milestones
348
+
349
+ **Don't:**
350
+
351
+ - Be overly optimistic on growth
352
+ - Underestimate costs
353
+ - Forget fully-loaded compensation
354
+ - Ignore cash timing
355
+ - Skip scenario analysis
356
+ - Use static headcount
357
+ - Forget to validate
358
+
359
+ ## Integration with Other Commands
360
+
361
+ Pairs well with:
362
+
363
+ - `/market-opportunity` - Use SOM for revenue ceiling
364
+ - `/business-case` - Include projections in business case
365
+
366
+ ## Example Usage
367
+
368
+ ```
369
+ User: /financial-projections
370
+
371
+ Claude: I'll create a comprehensive financial model for your startup. Let me gather the key inputs.
372
+
373
+ What's your business model?
374
+ → "B2B SaaS, subscription-based"
375
+
376
+ Current state?
377
+ → "$50K MRR, 100 customers, 5-person team, $500K cash"
378
+
379
+ Growth assumptions?
380
+ → "Expect 15% MoM growth, 10% monthly churn, $500 ACV"
381
+
382
+ [Claude builds complete model with all sections]
383
+ ```
384
+
385
+ ## Notes
386
+
387
+ - Model building takes 45-90 minutes
388
+ - Results in comprehensive planning tool
389
+ - Update monthly to track vs. actuals
390
+ - Share with investors and board
391
+ - Use for fundraising decks
392
+ - Basis for budget and hiring decisions
@@ -0,0 +1,266 @@
1
+ ---
2
+ name: riligar-business-startup-market
3
+ description: Generate comprehensive market opportunity analysis with TAM/SAM/SOM
4
+ calculations
5
+ allowed-tools: Read Write Edit Glob Grep Bash WebSearch WebFetch
6
+ ---
7
+
8
+ # Market Opportunity Analysis
9
+
10
+ Generate a comprehensive market opportunity analysis for a startup, including Total Addressable Market (TAM), Serviceable Available Market (SAM), and Serviceable Obtainable Market (SOM) calculations using both bottom-up and top-down methodologies.
11
+
12
+ ## Use this skill when
13
+
14
+ - Working on market opportunity analysis tasks or workflows
15
+ - Needing guidance, best practices, or checklists for market opportunity analysis
16
+
17
+ ## Do not use this skill when
18
+
19
+ - The task is unrelated to market opportunity analysis
20
+ - You need a different domain or tool outside this scope
21
+
22
+ ## Instructions
23
+
24
+ - Clarify goals, constraints, and required inputs.
25
+ - Apply relevant best practices and validate outcomes.
26
+ - Provide actionable steps and verification.
27
+ - If detailed examples are required, open `resources/implementation-playbook.md`.
28
+
29
+ ## What This Command Does
30
+
31
+ This command guides through an interactive market sizing process to:
32
+
33
+ 1. Define the target market and customer segments
34
+ 2. Gather relevant market data
35
+ 3. Calculate TAM using bottom-up methodology
36
+ 4. Validate with top-down analysis
37
+ 5. Narrow to SAM with appropriate filters
38
+ 6. Estimate realistic SOM (3-5 year opportunity)
39
+ 7. Present findings in a formatted report
40
+
41
+ ## Instructions for Claude
42
+
43
+ When this command is invoked, follow these steps:
44
+
45
+ ### Step 1: Gather Context
46
+
47
+ Ask the user for essential information:
48
+
49
+ - **Product/Service Description:** What problem is being solved?
50
+ - **Target Customers:** Who is the ideal customer? (industry, size, geography)
51
+ - **Business Model:** How does pricing work? (subscription, transaction, etc.)
52
+ - **Stage:** What stage is the company? (pre-launch, seed, Series A)
53
+ - **Geography:** Initial target market (US, North America, Global)
54
+
55
+ ### Step 2: Activate market-sizing-analysis Skill
56
+
57
+ The market-sizing-analysis skill provides comprehensive methodologies. Reference it for:
58
+
59
+ - Bottom-up calculation frameworks
60
+ - Top-down validation approaches
61
+ - Industry-specific templates
62
+ - Data source recommendations
63
+
64
+ ### Step 3: Conduct Bottom-Up Analysis
65
+
66
+ **For B2B/SaaS:**
67
+
68
+ 1. Define customer segments (company size, industry, use case)
69
+ 2. Estimate number of companies in each segment
70
+ 3. Determine average contract value (ACV) per segment
71
+ 4. Calculate TAM: Σ (Segment Size × ACV)
72
+
73
+ **For Consumer/Marketplace:**
74
+
75
+ 1. Define target user demographics
76
+ 2. Estimate total addressable users
77
+ 3. Determine average revenue per user (ARPU)
78
+ 4. Calculate TAM: Total Users × ARPU × Frequency
79
+
80
+ **For Transactions/E-commerce:**
81
+
82
+ 1. Estimate total transaction volume (GMV)
83
+ 2. Determine take rate or margin
84
+ 3. Calculate TAM: Total GMV × Take Rate
85
+
86
+ ### Step 4: Gather Market Data
87
+
88
+ Use available tools to research:
89
+
90
+ - **WebSearch:** Find industry reports, market size estimates, public company data
91
+ - **Cite all sources** with URLs and publication dates
92
+ - **Document assumptions** clearly
93
+
94
+ Recommended data sources (from skill):
95
+
96
+ - Government data (Census, BLS)
97
+ - Industry reports (Gartner, Forrester, Statista)
98
+ - Public company filings (10-K reports)
99
+ - Trade associations
100
+ - Academic research
101
+
102
+ ### Step 5: Top-Down Validation
103
+
104
+ Validate bottom-up calculation:
105
+
106
+ 1. Find total market category size from research
107
+ 2. Apply geographic filters
108
+ 3. Apply segment/product filters
109
+ 4. Compare to bottom-up TAM (should be within 30%)
110
+
111
+ If variance > 30%, investigate and explain differences.
112
+
113
+ ### Step 6: Calculate SAM
114
+
115
+ Apply realistic filters to narrow TAM:
116
+
117
+ - **Geographic:** Regions actually serviceable
118
+ - **Product Capability:** Features needed to serve
119
+ - **Market Readiness:** Customers ready to adopt
120
+ - **Addressable Switching:** Can reach and convert
121
+
122
+ Formula:
123
+
124
+ ```
125
+ SAM = TAM × Geographic % × Product Fit % × Market Readiness %
126
+ ```
127
+
128
+ ### Step 7: Estimate SOM
129
+
130
+ Calculate realistic obtainable market share:
131
+
132
+ **Conservative Approach (Recommended):**
133
+
134
+ - Year 3: 2-3% of SAM
135
+ - Year 5: 4-6% of SAM
136
+
137
+ **Consider:**
138
+
139
+ - Competitive intensity
140
+ - Available resources (funding, team)
141
+ - Go-to-market effectiveness
142
+ - Differentiation strength
143
+
144
+ ### Step 8: Create Market Sizing Report
145
+
146
+ Generate a comprehensive markdown report with:
147
+
148
+ **Section 1: Executive Summary**
149
+
150
+ - Market opportunity in one paragraph
151
+ - TAM/SAM/SOM headline numbers
152
+
153
+ **Section 2: Market Definition**
154
+
155
+ - Problem being solved
156
+ - Target customer profile
157
+ - Geographic scope
158
+ - Time horizon
159
+
160
+ **Section 3: Bottom-Up Analysis**
161
+
162
+ - Customer segment breakdown
163
+ - Segment sizing with sources
164
+ - TAM calculation with formula
165
+ - Assumptions documented
166
+
167
+ **Section 4: Top-Down Validation**
168
+
169
+ - Industry category and size
170
+ - Filter application
171
+ - Validated TAM
172
+ - Comparison to bottom-up
173
+
174
+ **Section 5: SAM Calculation**
175
+
176
+ - Filters applied with rationale
177
+ - SAM formula and result
178
+ - Segment-level breakdown
179
+
180
+ **Section 6: SOM Projection**
181
+
182
+ - Market share assumptions
183
+ - Year 3 and Year 5 estimates
184
+ - Customer count implications
185
+ - Revenue projections
186
+
187
+ **Section 7: Market Growth**
188
+
189
+ - Industry growth rate (CAGR)
190
+ - Key growth drivers
191
+ - 5-year market evolution
192
+
193
+ **Section 8: Validation and Sanity Checks**
194
+
195
+ - Public company comparisons
196
+ - Customer count validation
197
+ - Competitive context
198
+
199
+ **Section 9: Investment Thesis**
200
+
201
+ - Market opportunity assessment
202
+ - Key positives and risks
203
+ - Venture-scale potential
204
+ - Next steps
205
+
206
+ ### Step 9: Save Report
207
+
208
+ Offer to save the report as a markdown file:
209
+
210
+ - Suggest filename: `market-opportunity-analysis-YYYY-MM-DD.md`
211
+ - Use Write tool to create file
212
+ - Confirm file location with user
213
+
214
+ ## Tips for Best Results
215
+
216
+ **Do:**
217
+
218
+ - Start with bottom-up (most credible)
219
+ - Always triangulate with top-down
220
+ - Cite all data sources
221
+ - Document every assumption
222
+ - Be conservative on SOM
223
+ - Compare to public company benchmarks
224
+ - Explain any data gaps or limitations
225
+
226
+ **Don't:**
227
+
228
+ - Rely solely on top-down
229
+ - Cherry-pick optimistic data
230
+ - Claim >10% SOM without strong justification
231
+ - Mix methodologies inappropriately
232
+ - Ignore competitive context
233
+ - Skip validation steps
234
+
235
+ ## Example Usage
236
+
237
+ ```
238
+ User: /market-opportunity
239
+
240
+ Claude: I'll help you create a comprehensive market opportunity analysis. Let me start by gathering some context.
241
+
242
+ What product or service are you analyzing?
243
+ → "AI-powered email marketing for e-commerce companies"
244
+
245
+ Who are your target customers?
246
+ → "E-commerce companies with $1M+ annual revenue in North America"
247
+
248
+ What's your pricing model?
249
+ → "Subscription: $50-500/month based on email volume, average $300/month"
250
+
251
+ [Claude proceeds with analysis, gathering data, calculating TAM/SAM/SOM, and generating report]
252
+ ```
253
+
254
+ ## Integration with Other Commands
255
+
256
+ This command pairs well with:
257
+
258
+ - `/financial-projections` - Use SOM to build revenue model
259
+ - `/business-case` - Include market sizing in business case
260
+
261
+ ## Notes
262
+
263
+ - Market sizing typically takes 30-60 minutes for thorough analysis
264
+ - Quality depends on data availability - explain limitations
265
+ - Update annually as market evolves
266
+ - Conservative estimates build credibility with investors
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: architecture
2
+ name: riligar-dev-architecture
3
3
  description: Architectural decision-making framework. Requirements analysis, trade-off evaluation, ADR documentation. Use when making architecture decisions or analyzing system design.
4
4
  allowed-tools: Read, Glob, Grep
5
5
  ---
@@ -12,22 +12,22 @@ allowed-tools: Read, Glob, Grep
12
12
 
13
13
  **Read ONLY files relevant to the request!** Check the content map, find what you need.
14
14
 
15
- | File | Description | When to Read |
16
- |------|-------------|--------------|
17
- | `context-discovery.md` | Questions to ask, project classification | Starting architecture design |
18
- | `trade-off-analysis.md` | ADR templates, trade-off framework | Documenting decisions |
19
- | `pattern-selection.md` | Decision trees, anti-patterns | Choosing patterns |
20
- | `examples.md` | MVP, SaaS, Enterprise examples | Reference implementations |
21
- | `patterns-reference.md` | Quick lookup for patterns | Pattern comparison |
15
+ | File | Description | When to Read |
16
+ | ----------------------- | ---------------------------------------- | ---------------------------- |
17
+ | `context-discovery.md` | Questions to ask, project classification | Starting architecture design |
18
+ | `trade-off-analysis.md` | ADR templates, trade-off framework | Documenting decisions |
19
+ | `pattern-selection.md` | Decision trees, anti-patterns | Choosing patterns |
20
+ | `examples.md` | MVP, SaaS, Enterprise examples | Reference implementations |
21
+ | `patterns-reference.md` | Quick lookup for patterns | Pattern comparison |
22
22
 
23
23
  ---
24
24
 
25
25
  ## 🔗 Related Skills
26
26
 
27
- | Skill | Use For |
28
- |-------|---------|
29
- | `@[skills/database-design]` | Database schema design |
30
- | `@[skills/api-patterns]` | API design patterns |
27
+ | Skill | Use For |
28
+ | --------------------------------- | ----------------------- |
29
+ | `@[skills/database-design]` | Database schema design |
30
+ | `@[skills/api-patterns]` | API design patterns |
31
31
  | `@[skills/deployment-procedures]` | Deployment architecture |
32
32
 
33
33
  ---