@girardmedia/bootspring 1.2.0 → 2.0.3
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/README.md +107 -14
- package/bin/bootspring.js +166 -27
- package/cli/agent.js +189 -17
- package/cli/analyze.js +499 -0
- package/cli/audit.js +557 -0
- package/cli/auth.js +495 -38
- package/cli/billing.js +302 -0
- package/cli/build.js +695 -0
- package/cli/business.js +109 -26
- package/cli/checkpoint-utils.js +168 -0
- package/cli/checkpoint.js +639 -0
- package/cli/cloud-sync.js +447 -0
- package/cli/content.js +198 -0
- package/cli/context.js +1 -1
- package/cli/deploy.js +543 -0
- package/cli/fundraise.js +112 -50
- package/cli/github-cmd.js +435 -0
- package/cli/health.js +477 -0
- package/cli/init.js +84 -13
- package/cli/legal.js +107 -95
- package/cli/log.js +2 -2
- package/cli/loop.js +976 -73
- package/cli/manager.js +711 -0
- package/cli/metrics.js +480 -0
- package/cli/monitor.js +812 -0
- package/cli/onboard.js +521 -0
- package/cli/orchestrator.js +12 -24
- package/cli/prd.js +594 -0
- package/cli/preseed-start.js +1483 -0
- package/cli/preseed.js +2302 -0
- package/cli/project.js +436 -0
- package/cli/quality.js +233 -0
- package/cli/security.js +913 -0
- package/cli/seed.js +1441 -5
- package/cli/skill.js +273 -211
- package/cli/suggest.js +989 -0
- package/cli/switch.js +453 -0
- package/cli/visualize.js +527 -0
- package/cli/watch.js +769 -0
- package/cli/workspace.js +607 -0
- package/core/analyze-workflow.js +1134 -0
- package/core/api-client.js +535 -22
- package/core/audit-workflow.js +1350 -0
- package/core/build-orchestrator.js +480 -0
- package/core/build-state.js +577 -0
- package/core/checkpoint-engine.js +408 -0
- package/core/config.js +1109 -26
- package/core/context-loader.js +21 -1
- package/core/deploy-workflow.js +836 -0
- package/core/entitlements.js +93 -22
- package/core/github-sync.js +610 -0
- package/core/index.js +8 -1
- package/core/ingest.js +1111 -0
- package/core/metrics-engine.js +768 -0
- package/core/onboard-workflow.js +1007 -0
- package/core/preseed-workflow.js +934 -0
- package/core/preseed.js +1617 -0
- package/core/project-context.js +325 -0
- package/core/project-state.js +694 -0
- package/core/r2-sync.js +583 -0
- package/core/scaffold.js +525 -7
- package/core/session.js +258 -0
- package/core/task-extractor.js +758 -0
- package/core/telemetry.js +28 -6
- package/core/tier-enforcement.js +737 -0
- package/core/utils.js +38 -14
- package/generators/questionnaire.js +15 -12
- package/generators/sections/ai.js +7 -7
- package/generators/sections/content.js +300 -0
- package/generators/sections/index.js +3 -0
- package/generators/sections/plugins.js +7 -6
- package/generators/templates/build-planning.template.js +596 -0
- package/generators/templates/content.template.js +819 -0
- package/generators/templates/index.js +2 -1
- package/hooks/git-autopilot.js +1250 -0
- package/hooks/index.js +9 -0
- package/intelligence/agent-collab.js +2057 -0
- package/intelligence/auto-suggest.js +634 -0
- package/intelligence/content-gen.js +1589 -0
- package/intelligence/cross-project.js +1647 -0
- package/intelligence/index.js +184 -0
- package/intelligence/learning/insights.json +517 -7
- package/intelligence/learning/pattern-learner.js +1008 -14
- package/intelligence/memory/decision-tracker.js +1431 -31
- package/intelligence/memory/decisions.jsonl +0 -0
- package/intelligence/orchestrator.js +2896 -1
- package/intelligence/prd.js +92 -1
- package/intelligence/recommendation-weights.json +14 -2
- package/intelligence/recommendations.js +463 -9
- package/intelligence/workflow-composer.js +1451 -0
- package/marketplace/index.d.ts +324 -0
- package/marketplace/index.js +1921 -0
- package/mcp/contracts/mcp-contract.v1.json +342 -4
- package/mcp/registry.js +680 -3
- package/mcp/response-formatter.js +23 -0
- package/mcp/tools/assist-tool.js +78 -4
- package/mcp/tools/autopilot-tool.js +408 -0
- package/mcp/tools/content-tool.js +571 -0
- package/mcp/tools/dashboard-tool.js +251 -5
- package/mcp/tools/mvp-tool.js +344 -0
- package/mcp/tools/plugin-tool.js +23 -1
- package/mcp/tools/prd-tool.js +579 -0
- package/mcp/tools/seed-tool.js +447 -0
- package/mcp/tools/skill-tool.js +43 -14
- package/mcp/tools/suggest-tool.js +147 -0
- package/package.json +15 -6
- package/agents/README.md +0 -93
- package/agents/ai-integration-expert/context.md +0 -386
- package/agents/api-expert/context.md +0 -416
- package/agents/architecture-expert/context.md +0 -454
- package/agents/auth-expert/context.md +0 -399
- package/agents/backend-expert/context.md +0 -483
- package/agents/business-strategy-expert/context.md +0 -180
- package/agents/code-review-expert/context.md +0 -365
- package/agents/competitive-analysis-expert/context.md +0 -239
- package/agents/data-modeling-expert/context.md +0 -352
- package/agents/database-expert/context.md +0 -250
- package/agents/devops-expert/context.md +0 -446
- package/agents/email-expert/context.md +0 -379
- package/agents/financial-expert/context.md +0 -213
- package/agents/frontend-expert/context.md +0 -364
- package/agents/fundraising-expert/context.md +0 -257
- package/agents/growth-expert/context.md +0 -249
- package/agents/index.js +0 -140
- package/agents/investor-relations-expert/context.md +0 -266
- package/agents/legal-expert/context.md +0 -284
- package/agents/marketing-expert/context.md +0 -236
- package/agents/monitoring-expert/context.md +0 -362
- package/agents/operations-expert/context.md +0 -279
- package/agents/partnerships-expert/context.md +0 -286
- package/agents/payment-expert/context.md +0 -340
- package/agents/performance-expert/context.md +0 -377
- package/agents/private-equity-expert/context.md +0 -246
- package/agents/railway-expert/context.md +0 -284
- package/agents/research-expert/context.md +0 -245
- package/agents/sales-expert/context.md +0 -241
- package/agents/security-expert/context.md +0 -343
- package/agents/testing-expert/context.md +0 -414
- package/agents/ui-ux-expert/context.md +0 -448
- package/agents/vercel-expert/context.md +0 -426
- package/skills/index.js +0 -787
- package/skills/patterns/README.md +0 -163
- package/skills/patterns/ai/agents.md +0 -281
- package/skills/patterns/ai/claude.md +0 -138
- package/skills/patterns/ai/embeddings.md +0 -150
- package/skills/patterns/ai/rag.md +0 -266
- package/skills/patterns/ai/streaming.md +0 -170
- package/skills/patterns/ai/structured-output.md +0 -162
- package/skills/patterns/ai/tools.md +0 -154
- package/skills/patterns/analytics/tracking.md +0 -220
- package/skills/patterns/api/errors.md +0 -296
- package/skills/patterns/api/graphql.md +0 -440
- package/skills/patterns/api/middleware.md +0 -279
- package/skills/patterns/api/openapi.md +0 -285
- package/skills/patterns/api/rate-limiting.md +0 -231
- package/skills/patterns/api/route-handler.md +0 -217
- package/skills/patterns/api/server-action.md +0 -249
- package/skills/patterns/api/versioning.md +0 -443
- package/skills/patterns/api/webhooks.md +0 -247
- package/skills/patterns/auth/clerk.md +0 -132
- package/skills/patterns/auth/mfa.md +0 -313
- package/skills/patterns/auth/nextauth.md +0 -140
- package/skills/patterns/auth/oauth.md +0 -237
- package/skills/patterns/auth/rbac.md +0 -152
- package/skills/patterns/auth/session-management.md +0 -367
- package/skills/patterns/auth/session.md +0 -120
- package/skills/patterns/database/audit.md +0 -177
- package/skills/patterns/database/migrations.md +0 -177
- package/skills/patterns/database/pagination.md +0 -230
- package/skills/patterns/database/pooling.md +0 -357
- package/skills/patterns/database/prisma.md +0 -180
- package/skills/patterns/database/relations.md +0 -187
- package/skills/patterns/database/seeding.md +0 -246
- package/skills/patterns/database/soft-delete.md +0 -153
- package/skills/patterns/database/transactions.md +0 -162
- package/skills/patterns/deployment/ci-cd.md +0 -231
- package/skills/patterns/deployment/docker.md +0 -188
- package/skills/patterns/deployment/monitoring.md +0 -387
- package/skills/patterns/deployment/vercel.md +0 -160
- package/skills/patterns/email/resend.md +0 -143
- package/skills/patterns/email/templates.md +0 -245
- package/skills/patterns/email/transactional.md +0 -503
- package/skills/patterns/email/verification.md +0 -176
- package/skills/patterns/files/download.md +0 -243
- package/skills/patterns/files/upload.md +0 -239
- package/skills/patterns/i18n/nextintl.md +0 -188
- package/skills/patterns/logging/structured.md +0 -292
- package/skills/patterns/notifications/email-queue.md +0 -248
- package/skills/patterns/notifications/push.md +0 -279
- package/skills/patterns/payments/checkout.md +0 -303
- package/skills/patterns/payments/invoices.md +0 -287
- package/skills/patterns/payments/portal.md +0 -245
- package/skills/patterns/payments/stripe.md +0 -272
- package/skills/patterns/payments/subscriptions.md +0 -300
- package/skills/patterns/payments/usage.md +0 -279
- package/skills/patterns/performance/caching.md +0 -276
- package/skills/patterns/performance/code-splitting.md +0 -233
- package/skills/patterns/performance/edge.md +0 -254
- package/skills/patterns/performance/isr.md +0 -266
- package/skills/patterns/performance/lazy-loading.md +0 -281
- package/skills/patterns/realtime/sse.md +0 -327
- package/skills/patterns/realtime/websockets.md +0 -336
- package/skills/patterns/search/filtering.md +0 -329
- package/skills/patterns/search/fulltext.md +0 -260
- package/skills/patterns/security/audit-logging.md +0 -444
- package/skills/patterns/security/csrf.md +0 -234
- package/skills/patterns/security/headers.md +0 -252
- package/skills/patterns/security/sanitization.md +0 -258
- package/skills/patterns/security/secrets.md +0 -261
- package/skills/patterns/security/validation.md +0 -268
- package/skills/patterns/security/xss.md +0 -229
- package/skills/patterns/seo/metadata.md +0 -252
- package/skills/patterns/state/context.md +0 -349
- package/skills/patterns/state/react-query.md +0 -313
- package/skills/patterns/state/url-state.md +0 -482
- package/skills/patterns/state/zustand.md +0 -262
- package/skills/patterns/testing/api.md +0 -259
- package/skills/patterns/testing/component.md +0 -233
- package/skills/patterns/testing/coverage.md +0 -207
- package/skills/patterns/testing/fixtures.md +0 -225
- package/skills/patterns/testing/integration.md +0 -436
- package/skills/patterns/testing/mocking.md +0 -177
- package/skills/patterns/testing/playwright.md +0 -162
- package/skills/patterns/testing/snapshot.md +0 -175
- package/skills/patterns/testing/vitest.md +0 -307
- package/skills/patterns/ui/accordions.md +0 -395
- package/skills/patterns/ui/cards.md +0 -299
- package/skills/patterns/ui/dropdowns.md +0 -476
- package/skills/patterns/ui/empty-states.md +0 -320
- package/skills/patterns/ui/forms.md +0 -405
- package/skills/patterns/ui/inputs.md +0 -319
- package/skills/patterns/ui/layouts.md +0 -282
- package/skills/patterns/ui/loading.md +0 -291
- package/skills/patterns/ui/modals.md +0 -338
- package/skills/patterns/ui/navigation.md +0 -374
- package/skills/patterns/ui/tables.md +0 -407
- package/skills/patterns/ui/toasts.md +0 -300
- package/skills/patterns/ui/tooltips.md +0 -396
- package/skills/patterns/utils/dates.md +0 -435
- package/skills/patterns/utils/errors.md +0 -451
- package/skills/patterns/utils/formatting.md +0 -345
- package/skills/patterns/utils/validation.md +0 -434
- package/templates/bootspring.config.js +0 -83
- package/templates/business/business-model-canvas.md +0 -246
- package/templates/business/business-plan.md +0 -266
- package/templates/business/competitive-analysis.md +0 -312
- package/templates/fundraising/data-room-checklist.md +0 -300
- package/templates/fundraising/investor-research.md +0 -243
- package/templates/fundraising/pitch-deck-outline.md +0 -253
- package/templates/legal/gdpr-checklist.md +0 -339
- package/templates/legal/privacy-policy.md +0 -285
- package/templates/legal/terms-of-service.md +0 -222
- package/templates/mcp.json +0 -9
|
@@ -1,246 +0,0 @@
|
|
|
1
|
-
# Business Model Canvas: {{PROJECT_NAME}}
|
|
2
|
-
|
|
3
|
-
> **Version**: 1.0 | **Created**: {{DATE}}
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
## Canvas Overview
|
|
8
|
-
|
|
9
|
-
```
|
|
10
|
-
┌─────────────────┬─────────────────┬─────────────────┬─────────────────┬─────────────────┐
|
|
11
|
-
│ │ │ │ │ │
|
|
12
|
-
│ KEY PARTNERS │ KEY ACTIVITIES │ VALUE │ CUSTOMER │ CUSTOMER │
|
|
13
|
-
│ │ │ PROPOSITIONS │ RELATIONSHIPS │ SEGMENTS │
|
|
14
|
-
│ ├─────────────────┤ ├─────────────────┤ │
|
|
15
|
-
│ │ │ │ │ │
|
|
16
|
-
│ │ KEY RESOURCES │ │ CHANNELS │ │
|
|
17
|
-
│ │ │ │ │ │
|
|
18
|
-
├─────────────────┴─────────────────┴─────────────────┴─────────────────┴─────────────────┤
|
|
19
|
-
│ │
|
|
20
|
-
│ COST STRUCTURE REVENUE STREAMS │
|
|
21
|
-
│ │
|
|
22
|
-
└─────────────────────────────────────────────────────────────────────────────────────────┘
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
---
|
|
26
|
-
|
|
27
|
-
## 1. Customer Segments
|
|
28
|
-
|
|
29
|
-
*Who are your most important customers?*
|
|
30
|
-
|
|
31
|
-
### Primary Segments
|
|
32
|
-
- **Segment A**: [Description]
|
|
33
|
-
- Demographics: [Age, location, income]
|
|
34
|
-
- Needs: [What they need]
|
|
35
|
-
- Size: [Market size]
|
|
36
|
-
|
|
37
|
-
- **Segment B**: [Description]
|
|
38
|
-
- Demographics: [Age, location, income]
|
|
39
|
-
- Needs: [What they need]
|
|
40
|
-
- Size: [Market size]
|
|
41
|
-
|
|
42
|
-
### Segment Characteristics
|
|
43
|
-
| Segment | Size | Willingness to Pay | Acquisition Difficulty |
|
|
44
|
-
|---------|------|-------------------|----------------------|
|
|
45
|
-
| A | | | |
|
|
46
|
-
| B | | | |
|
|
47
|
-
|
|
48
|
-
---
|
|
49
|
-
|
|
50
|
-
## 2. Value Propositions
|
|
51
|
-
|
|
52
|
-
*What value do you deliver to customers?*
|
|
53
|
-
|
|
54
|
-
### Core Value Proposition
|
|
55
|
-
[One sentence describing your unique value]
|
|
56
|
-
|
|
57
|
-
### Value by Segment
|
|
58
|
-
| Segment | Problem Solved | Benefits | Why Us? |
|
|
59
|
-
|---------|---------------|----------|---------|
|
|
60
|
-
| A | | | |
|
|
61
|
-
| B | | | |
|
|
62
|
-
|
|
63
|
-
### Differentiators
|
|
64
|
-
- [ ] Newness
|
|
65
|
-
- [ ] Performance
|
|
66
|
-
- [ ] Customization
|
|
67
|
-
- [ ] Design
|
|
68
|
-
- [ ] Brand/Status
|
|
69
|
-
- [ ] Price
|
|
70
|
-
- [ ] Cost Reduction
|
|
71
|
-
- [ ] Risk Reduction
|
|
72
|
-
- [ ] Accessibility
|
|
73
|
-
- [ ] Convenience
|
|
74
|
-
|
|
75
|
-
---
|
|
76
|
-
|
|
77
|
-
## 3. Channels
|
|
78
|
-
|
|
79
|
-
*How do you reach and deliver value to customers?*
|
|
80
|
-
|
|
81
|
-
### Channel Phases
|
|
82
|
-
| Phase | Channels | Strategy |
|
|
83
|
-
|-------|----------|----------|
|
|
84
|
-
| Awareness | | |
|
|
85
|
-
| Evaluation | | |
|
|
86
|
-
| Purchase | | |
|
|
87
|
-
| Delivery | | |
|
|
88
|
-
| After Sales | | |
|
|
89
|
-
|
|
90
|
-
### Channel Types
|
|
91
|
-
- [ ] Direct: Sales team, website
|
|
92
|
-
- [ ] Indirect: Partners, affiliates
|
|
93
|
-
- [ ] Own: Retail, online store
|
|
94
|
-
- [ ] Partner: Distributors, resellers
|
|
95
|
-
|
|
96
|
-
---
|
|
97
|
-
|
|
98
|
-
## 4. Customer Relationships
|
|
99
|
-
|
|
100
|
-
*What type of relationship does each segment expect?*
|
|
101
|
-
|
|
102
|
-
### Relationship Types
|
|
103
|
-
| Segment | Relationship Type | How Maintained |
|
|
104
|
-
|---------|------------------|----------------|
|
|
105
|
-
| A | | |
|
|
106
|
-
| B | | |
|
|
107
|
-
|
|
108
|
-
### Relationship Categories
|
|
109
|
-
- [ ] Personal Assistance
|
|
110
|
-
- [ ] Dedicated Personal Assistance
|
|
111
|
-
- [ ] Self-Service
|
|
112
|
-
- [ ] Automated Services
|
|
113
|
-
- [ ] Communities
|
|
114
|
-
- [ ] Co-creation
|
|
115
|
-
|
|
116
|
-
---
|
|
117
|
-
|
|
118
|
-
## 5. Revenue Streams
|
|
119
|
-
|
|
120
|
-
*How do you generate revenue from each segment?*
|
|
121
|
-
|
|
122
|
-
### Revenue Model
|
|
123
|
-
| Stream | Type | Pricing | % of Total |
|
|
124
|
-
|--------|------|---------|------------|
|
|
125
|
-
| Primary | | | |
|
|
126
|
-
| Secondary | | | |
|
|
127
|
-
|
|
128
|
-
### Pricing Mechanisms
|
|
129
|
-
- [ ] Fixed: List price, feature-dependent, segment-dependent, volume-dependent
|
|
130
|
-
- [ ] Dynamic: Negotiation, yield management, real-time market, auctions
|
|
131
|
-
|
|
132
|
-
### Revenue Types
|
|
133
|
-
- [ ] Asset Sale
|
|
134
|
-
- [ ] Usage Fee
|
|
135
|
-
- [ ] Subscription
|
|
136
|
-
- [ ] Lending/Renting/Leasing
|
|
137
|
-
- [ ] Licensing
|
|
138
|
-
- [ ] Brokerage Fees
|
|
139
|
-
- [ ] Advertising
|
|
140
|
-
|
|
141
|
-
---
|
|
142
|
-
|
|
143
|
-
## 6. Key Resources
|
|
144
|
-
|
|
145
|
-
*What assets are essential to deliver your value proposition?*
|
|
146
|
-
|
|
147
|
-
### Physical Resources
|
|
148
|
-
- [Resource 1]
|
|
149
|
-
- [Resource 2]
|
|
150
|
-
|
|
151
|
-
### Intellectual Resources
|
|
152
|
-
- [Patents, copyrights, data]
|
|
153
|
-
- [Brand, proprietary knowledge]
|
|
154
|
-
|
|
155
|
-
### Human Resources
|
|
156
|
-
- [Key roles/expertise needed]
|
|
157
|
-
|
|
158
|
-
### Financial Resources
|
|
159
|
-
- [Capital, credit lines]
|
|
160
|
-
|
|
161
|
-
---
|
|
162
|
-
|
|
163
|
-
## 7. Key Activities
|
|
164
|
-
|
|
165
|
-
*What must you do to deliver your value proposition?*
|
|
166
|
-
|
|
167
|
-
### Production
|
|
168
|
-
- [Activity 1]
|
|
169
|
-
- [Activity 2]
|
|
170
|
-
|
|
171
|
-
### Problem Solving
|
|
172
|
-
- [Activity 1]
|
|
173
|
-
- [Activity 2]
|
|
174
|
-
|
|
175
|
-
### Platform/Network
|
|
176
|
-
- [Activity 1]
|
|
177
|
-
- [Activity 2]
|
|
178
|
-
|
|
179
|
-
---
|
|
180
|
-
|
|
181
|
-
## 8. Key Partnerships
|
|
182
|
-
|
|
183
|
-
*Who are your key partners and suppliers?*
|
|
184
|
-
|
|
185
|
-
### Strategic Alliances
|
|
186
|
-
| Partner | What They Provide | What We Provide |
|
|
187
|
-
|---------|------------------|-----------------|
|
|
188
|
-
| | | |
|
|
189
|
-
|
|
190
|
-
### Partnership Types
|
|
191
|
-
- [ ] Optimization (reduce cost/risk)
|
|
192
|
-
- [ ] Reduction of risk/uncertainty
|
|
193
|
-
- [ ] Acquisition of resources/activities
|
|
194
|
-
- [ ] Buyer-supplier relationships
|
|
195
|
-
|
|
196
|
-
---
|
|
197
|
-
|
|
198
|
-
## 9. Cost Structure
|
|
199
|
-
|
|
200
|
-
*What are your major costs?*
|
|
201
|
-
|
|
202
|
-
### Cost Categories
|
|
203
|
-
| Category | Fixed/Variable | % of Total | Notes |
|
|
204
|
-
|----------|---------------|------------|-------|
|
|
205
|
-
| Development | | | |
|
|
206
|
-
| Operations | | | |
|
|
207
|
-
| Marketing | | | |
|
|
208
|
-
| Sales | | | |
|
|
209
|
-
| Support | | | |
|
|
210
|
-
|
|
211
|
-
### Cost Characteristics
|
|
212
|
-
- [ ] Cost-Driven (lean, low price, automation)
|
|
213
|
-
- [ ] Value-Driven (premium, personalization)
|
|
214
|
-
|
|
215
|
-
### Key Cost Drivers
|
|
216
|
-
1. [Driver 1]
|
|
217
|
-
2. [Driver 2]
|
|
218
|
-
3. [Driver 3]
|
|
219
|
-
|
|
220
|
-
---
|
|
221
|
-
|
|
222
|
-
## Validation Checklist
|
|
223
|
-
|
|
224
|
-
### Customer Segments
|
|
225
|
-
- [ ] Identified and validated primary segments
|
|
226
|
-
- [ ] Understood their jobs-to-be-done
|
|
227
|
-
- [ ] Quantified market size
|
|
228
|
-
|
|
229
|
-
### Value Propositions
|
|
230
|
-
- [ ] Clear differentiation from alternatives
|
|
231
|
-
- [ ] Validated with customer interviews
|
|
232
|
-
- [ ] Tested with MVP/prototype
|
|
233
|
-
|
|
234
|
-
### Channels
|
|
235
|
-
- [ ] Identified most effective channels
|
|
236
|
-
- [ ] Cost-effective customer acquisition
|
|
237
|
-
- [ ] Scalable distribution
|
|
238
|
-
|
|
239
|
-
### Revenue Streams
|
|
240
|
-
- [ ] Validated pricing with customers
|
|
241
|
-
- [ ] Sustainable unit economics
|
|
242
|
-
- [ ] Multiple revenue streams (if applicable)
|
|
243
|
-
|
|
244
|
-
---
|
|
245
|
-
|
|
246
|
-
*Generated with Bootspring*
|
|
@@ -1,266 +0,0 @@
|
|
|
1
|
-
# Business Plan: {{PROJECT_NAME}}
|
|
2
|
-
|
|
3
|
-
> **Version**: 1.0 | **Created**: {{DATE}} | **Status**: Draft
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
## Executive Summary
|
|
8
|
-
|
|
9
|
-
### Company Overview
|
|
10
|
-
[2-3 sentence description of what your company does]
|
|
11
|
-
|
|
12
|
-
### Problem
|
|
13
|
-
[What problem are you solving? Who has this problem?]
|
|
14
|
-
|
|
15
|
-
### Solution
|
|
16
|
-
[How does your product/service solve this problem?]
|
|
17
|
-
|
|
18
|
-
### Target Market
|
|
19
|
-
[Who is your ideal customer? What's the market size?]
|
|
20
|
-
|
|
21
|
-
### Business Model
|
|
22
|
-
[How do you make money?]
|
|
23
|
-
|
|
24
|
-
### Traction
|
|
25
|
-
[What have you achieved so far? Users, revenue, partnerships?]
|
|
26
|
-
|
|
27
|
-
### Team
|
|
28
|
-
[Who are the founders? What's their relevant experience?]
|
|
29
|
-
|
|
30
|
-
### Funding
|
|
31
|
-
[How much are you raising? What will you use it for?]
|
|
32
|
-
|
|
33
|
-
---
|
|
34
|
-
|
|
35
|
-
## Problem Statement
|
|
36
|
-
|
|
37
|
-
### The Problem
|
|
38
|
-
[Detailed description of the problem you're solving]
|
|
39
|
-
|
|
40
|
-
### Current Solutions
|
|
41
|
-
[How do people currently solve this problem?]
|
|
42
|
-
|
|
43
|
-
### Why Now?
|
|
44
|
-
[What's changed that makes this the right time?]
|
|
45
|
-
|
|
46
|
-
### Pain Points
|
|
47
|
-
- [ ] Pain point 1
|
|
48
|
-
- [ ] Pain point 2
|
|
49
|
-
- [ ] Pain point 3
|
|
50
|
-
|
|
51
|
-
---
|
|
52
|
-
|
|
53
|
-
## Solution
|
|
54
|
-
|
|
55
|
-
### Product Overview
|
|
56
|
-
[What is your product/service?]
|
|
57
|
-
|
|
58
|
-
### Key Features
|
|
59
|
-
| Feature | Description | Benefit |
|
|
60
|
-
|---------|-------------|---------|
|
|
61
|
-
| Feature 1 | | |
|
|
62
|
-
| Feature 2 | | |
|
|
63
|
-
| Feature 3 | | |
|
|
64
|
-
|
|
65
|
-
### Unique Value Proposition
|
|
66
|
-
[What makes you different from alternatives?]
|
|
67
|
-
|
|
68
|
-
### Product Roadmap
|
|
69
|
-
| Phase | Timeline | Features |
|
|
70
|
-
|-------|----------|----------|
|
|
71
|
-
| MVP | Q1 | |
|
|
72
|
-
| V1.0 | Q2 | |
|
|
73
|
-
| V2.0 | Q3-Q4 | |
|
|
74
|
-
|
|
75
|
-
---
|
|
76
|
-
|
|
77
|
-
## Market Analysis
|
|
78
|
-
|
|
79
|
-
### Target Market
|
|
80
|
-
**Primary Segment**: [Description]
|
|
81
|
-
**Secondary Segment**: [Description]
|
|
82
|
-
|
|
83
|
-
### Market Size
|
|
84
|
-
| Metric | Size | Source |
|
|
85
|
-
|--------|------|--------|
|
|
86
|
-
| TAM (Total Addressable Market) | $X | |
|
|
87
|
-
| SAM (Serviceable Addressable Market) | $X | |
|
|
88
|
-
| SOM (Serviceable Obtainable Market) | $X | |
|
|
89
|
-
|
|
90
|
-
### Market Trends
|
|
91
|
-
- Trend 1: [Description]
|
|
92
|
-
- Trend 2: [Description]
|
|
93
|
-
- Trend 3: [Description]
|
|
94
|
-
|
|
95
|
-
### Customer Segments
|
|
96
|
-
| Segment | Description | Size | Priority |
|
|
97
|
-
|---------|-------------|------|----------|
|
|
98
|
-
| Segment A | | | High |
|
|
99
|
-
| Segment B | | | Medium |
|
|
100
|
-
| Segment C | | | Low |
|
|
101
|
-
|
|
102
|
-
---
|
|
103
|
-
|
|
104
|
-
## Competitive Analysis
|
|
105
|
-
|
|
106
|
-
### Competitive Landscape
|
|
107
|
-
| Competitor | Strengths | Weaknesses | Positioning |
|
|
108
|
-
|------------|-----------|------------|-------------|
|
|
109
|
-
| Competitor 1 | | | |
|
|
110
|
-
| Competitor 2 | | | |
|
|
111
|
-
| Competitor 3 | | | |
|
|
112
|
-
|
|
113
|
-
### Competitive Advantages
|
|
114
|
-
1. [Advantage 1]
|
|
115
|
-
2. [Advantage 2]
|
|
116
|
-
3. [Advantage 3]
|
|
117
|
-
|
|
118
|
-
### Barriers to Entry
|
|
119
|
-
- [Barrier 1]
|
|
120
|
-
- [Barrier 2]
|
|
121
|
-
|
|
122
|
-
---
|
|
123
|
-
|
|
124
|
-
## Business Model
|
|
125
|
-
|
|
126
|
-
### Revenue Streams
|
|
127
|
-
| Stream | Description | Pricing | % of Revenue |
|
|
128
|
-
|--------|-------------|---------|--------------|
|
|
129
|
-
| Primary | | | |
|
|
130
|
-
| Secondary | | | |
|
|
131
|
-
|
|
132
|
-
### Pricing Strategy
|
|
133
|
-
[How do you price your product? Why?]
|
|
134
|
-
|
|
135
|
-
### Unit Economics
|
|
136
|
-
| Metric | Value | Notes |
|
|
137
|
-
|--------|-------|-------|
|
|
138
|
-
| Customer Acquisition Cost (CAC) | $ | |
|
|
139
|
-
| Lifetime Value (LTV) | $ | |
|
|
140
|
-
| LTV:CAC Ratio | X:1 | |
|
|
141
|
-
| Gross Margin | % | |
|
|
142
|
-
| Payback Period | X months | |
|
|
143
|
-
|
|
144
|
-
### Sales Strategy
|
|
145
|
-
[How will you sell? Direct, partners, self-serve?]
|
|
146
|
-
|
|
147
|
-
---
|
|
148
|
-
|
|
149
|
-
## Go-to-Market Strategy
|
|
150
|
-
|
|
151
|
-
### Launch Plan
|
|
152
|
-
| Phase | Timeline | Activities | Goals |
|
|
153
|
-
|-------|----------|------------|-------|
|
|
154
|
-
| Pre-launch | | | |
|
|
155
|
-
| Launch | | | |
|
|
156
|
-
| Post-launch | | | |
|
|
157
|
-
|
|
158
|
-
### Marketing Channels
|
|
159
|
-
| Channel | Strategy | Budget | Expected ROI |
|
|
160
|
-
|---------|----------|--------|--------------|
|
|
161
|
-
| Content | | | |
|
|
162
|
-
| Paid | | | |
|
|
163
|
-
| Social | | | |
|
|
164
|
-
| PR | | | |
|
|
165
|
-
|
|
166
|
-
### Customer Acquisition
|
|
167
|
-
[How will you acquire customers?]
|
|
168
|
-
|
|
169
|
-
### Partnerships
|
|
170
|
-
[Key partnerships needed]
|
|
171
|
-
|
|
172
|
-
---
|
|
173
|
-
|
|
174
|
-
## Operations
|
|
175
|
-
|
|
176
|
-
### Team Structure
|
|
177
|
-
| Role | Name | Responsibilities |
|
|
178
|
-
|------|------|------------------|
|
|
179
|
-
| CEO | | |
|
|
180
|
-
| CTO | | |
|
|
181
|
-
| | | |
|
|
182
|
-
|
|
183
|
-
### Key Hires
|
|
184
|
-
| Role | Timeline | Priority |
|
|
185
|
-
|------|----------|----------|
|
|
186
|
-
| | | |
|
|
187
|
-
|
|
188
|
-
### Technology Stack
|
|
189
|
-
[Overview of your tech stack]
|
|
190
|
-
|
|
191
|
-
### Key Metrics (KPIs)
|
|
192
|
-
| Metric | Current | Target (6mo) | Target (12mo) |
|
|
193
|
-
|--------|---------|--------------|---------------|
|
|
194
|
-
| MRR | | | |
|
|
195
|
-
| Users | | | |
|
|
196
|
-
| Churn | | | |
|
|
197
|
-
|
|
198
|
-
---
|
|
199
|
-
|
|
200
|
-
## Financial Projections
|
|
201
|
-
|
|
202
|
-
### Revenue Forecast
|
|
203
|
-
| Year | Revenue | Growth |
|
|
204
|
-
|------|---------|--------|
|
|
205
|
-
| Year 1 | $ | - |
|
|
206
|
-
| Year 2 | $ | % |
|
|
207
|
-
| Year 3 | $ | % |
|
|
208
|
-
|
|
209
|
-
### Expense Forecast
|
|
210
|
-
| Category | Year 1 | Year 2 | Year 3 |
|
|
211
|
-
|----------|--------|--------|--------|
|
|
212
|
-
| Salaries | | | |
|
|
213
|
-
| Marketing | | | |
|
|
214
|
-
| Operations | | | |
|
|
215
|
-
| Total | | | |
|
|
216
|
-
|
|
217
|
-
### Funding Requirements
|
|
218
|
-
| Round | Amount | Timeline | Use of Funds |
|
|
219
|
-
|-------|--------|----------|--------------|
|
|
220
|
-
| Current | $ | | |
|
|
221
|
-
| Next | $ | | |
|
|
222
|
-
|
|
223
|
-
---
|
|
224
|
-
|
|
225
|
-
## Risk Analysis
|
|
226
|
-
|
|
227
|
-
### Key Risks
|
|
228
|
-
| Risk | Likelihood | Impact | Mitigation |
|
|
229
|
-
|------|------------|--------|------------|
|
|
230
|
-
| Market Risk | | | |
|
|
231
|
-
| Technical Risk | | | |
|
|
232
|
-
| Competitive Risk | | | |
|
|
233
|
-
| Regulatory Risk | | | |
|
|
234
|
-
|
|
235
|
-
---
|
|
236
|
-
|
|
237
|
-
## Milestones
|
|
238
|
-
|
|
239
|
-
### Achieved
|
|
240
|
-
- [x] Milestone 1 (Date)
|
|
241
|
-
- [x] Milestone 2 (Date)
|
|
242
|
-
|
|
243
|
-
### Upcoming
|
|
244
|
-
- [ ] Milestone 3 (Target Date)
|
|
245
|
-
- [ ] Milestone 4 (Target Date)
|
|
246
|
-
- [ ] Milestone 5 (Target Date)
|
|
247
|
-
|
|
248
|
-
---
|
|
249
|
-
|
|
250
|
-
## Appendix
|
|
251
|
-
|
|
252
|
-
### Team Bios
|
|
253
|
-
[Detailed founder/team bios]
|
|
254
|
-
|
|
255
|
-
### Product Screenshots
|
|
256
|
-
[Include product images]
|
|
257
|
-
|
|
258
|
-
### Customer Testimonials
|
|
259
|
-
[Include quotes from customers]
|
|
260
|
-
|
|
261
|
-
### Press Coverage
|
|
262
|
-
[Links to press mentions]
|
|
263
|
-
|
|
264
|
-
---
|
|
265
|
-
|
|
266
|
-
*Generated with Bootspring*
|