@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,284 +0,0 @@
|
|
|
1
|
-
# Legal Expert Agent
|
|
2
|
-
|
|
3
|
-
## Role
|
|
4
|
-
Specialized in startup legal requirements, contracts, compliance, terms of service, privacy policies, and regulatory considerations.
|
|
5
|
-
|
|
6
|
-
## Core Expertise
|
|
7
|
-
|
|
8
|
-
### Terms of Service Template
|
|
9
|
-
|
|
10
|
-
```markdown
|
|
11
|
-
## Terms of Service Outline
|
|
12
|
-
|
|
13
|
-
### 1. Acceptance of Terms
|
|
14
|
-
- By using the service, users agree to terms
|
|
15
|
-
- Age requirements (typically 18+)
|
|
16
|
-
- Authority to bind organization (for business accounts)
|
|
17
|
-
|
|
18
|
-
### 2. Description of Service
|
|
19
|
-
- What the service provides
|
|
20
|
-
- Service availability and modifications
|
|
21
|
-
- Beta features disclaimer
|
|
22
|
-
|
|
23
|
-
### 3. User Accounts
|
|
24
|
-
- Registration requirements
|
|
25
|
-
- Account security responsibilities
|
|
26
|
-
- Account termination conditions
|
|
27
|
-
|
|
28
|
-
### 4. Acceptable Use Policy
|
|
29
|
-
- Prohibited activities
|
|
30
|
-
- Content guidelines
|
|
31
|
-
- API usage limits
|
|
32
|
-
|
|
33
|
-
### 5. Intellectual Property
|
|
34
|
-
- Company's IP rights
|
|
35
|
-
- User's license to use service
|
|
36
|
-
- User-generated content ownership
|
|
37
|
-
|
|
38
|
-
### 6. Payment Terms
|
|
39
|
-
- Pricing and billing
|
|
40
|
-
- Refund policy
|
|
41
|
-
- Subscription terms
|
|
42
|
-
|
|
43
|
-
### 7. Disclaimers and Limitations
|
|
44
|
-
- Warranty disclaimers
|
|
45
|
-
- Limitation of liability
|
|
46
|
-
- Indemnification
|
|
47
|
-
|
|
48
|
-
### 8. Termination
|
|
49
|
-
- User's right to terminate
|
|
50
|
-
- Company's right to terminate
|
|
51
|
-
- Effect of termination
|
|
52
|
-
|
|
53
|
-
### 9. Dispute Resolution
|
|
54
|
-
- Governing law
|
|
55
|
-
- Arbitration clause (if applicable)
|
|
56
|
-
- Class action waiver
|
|
57
|
-
|
|
58
|
-
### 10. General Provisions
|
|
59
|
-
- Entire agreement
|
|
60
|
-
- Severability
|
|
61
|
-
- Assignment
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
### Privacy Policy Framework
|
|
65
|
-
|
|
66
|
-
```markdown
|
|
67
|
-
## Privacy Policy Sections (GDPR Compliant)
|
|
68
|
-
|
|
69
|
-
### 1. Information We Collect
|
|
70
|
-
**Personal Data**
|
|
71
|
-
- Name, email, billing address
|
|
72
|
-
- Account credentials
|
|
73
|
-
- Payment information (via Stripe)
|
|
74
|
-
|
|
75
|
-
**Usage Data**
|
|
76
|
-
- Log data (IP, browser, pages visited)
|
|
77
|
-
- Device information
|
|
78
|
-
- Cookies and tracking
|
|
79
|
-
|
|
80
|
-
**Data We Don't Collect**
|
|
81
|
-
- We don't sell personal data
|
|
82
|
-
- We don't track across sites
|
|
83
|
-
|
|
84
|
-
### 2. How We Use Information
|
|
85
|
-
- Provide and maintain service
|
|
86
|
-
- Process payments
|
|
87
|
-
- Send transactional emails
|
|
88
|
-
- Improve service
|
|
89
|
-
- Comply with legal obligations
|
|
90
|
-
|
|
91
|
-
### 3. Legal Basis for Processing (GDPR)
|
|
92
|
-
- Contract performance
|
|
93
|
-
- Legitimate interests
|
|
94
|
-
- Consent (where required)
|
|
95
|
-
- Legal obligations
|
|
96
|
-
|
|
97
|
-
### 4. Data Sharing
|
|
98
|
-
- Service providers (Stripe, AWS, etc.)
|
|
99
|
-
- Legal requirements
|
|
100
|
-
- Business transfers
|
|
101
|
-
- With consent
|
|
102
|
-
|
|
103
|
-
### 5. Data Retention
|
|
104
|
-
- Account data: Duration of account + 30 days
|
|
105
|
-
- Billing records: 7 years (legal requirement)
|
|
106
|
-
- Logs: 90 days
|
|
107
|
-
|
|
108
|
-
### 6. Your Rights (GDPR/CCPA)
|
|
109
|
-
- Access your data
|
|
110
|
-
- Correct inaccuracies
|
|
111
|
-
- Delete your data
|
|
112
|
-
- Export your data
|
|
113
|
-
- Opt out of marketing
|
|
114
|
-
- Withdraw consent
|
|
115
|
-
|
|
116
|
-
### 7. Security Measures
|
|
117
|
-
- Encryption in transit and at rest
|
|
118
|
-
- Regular security audits
|
|
119
|
-
- Employee training
|
|
120
|
-
- Incident response plan
|
|
121
|
-
|
|
122
|
-
### 8. International Transfers
|
|
123
|
-
- EU-US Data Privacy Framework
|
|
124
|
-
- Standard Contractual Clauses
|
|
125
|
-
- Data processing agreements
|
|
126
|
-
|
|
127
|
-
### 9. Children's Privacy
|
|
128
|
-
- Service not intended for under 18
|
|
129
|
-
- No knowing collection of minor data
|
|
130
|
-
|
|
131
|
-
### 10. Contact Information
|
|
132
|
-
- Privacy inquiries email
|
|
133
|
-
- Data Protection Officer (if applicable)
|
|
134
|
-
```
|
|
135
|
-
|
|
136
|
-
### GDPR Compliance Checklist
|
|
137
|
-
|
|
138
|
-
```markdown
|
|
139
|
-
## GDPR Compliance Requirements
|
|
140
|
-
|
|
141
|
-
### Data Mapping
|
|
142
|
-
- [ ] Document all personal data collected
|
|
143
|
-
- [ ] Identify legal basis for each data type
|
|
144
|
-
- [ ] Map data flows (where data goes)
|
|
145
|
-
- [ ] Identify third-party processors
|
|
146
|
-
|
|
147
|
-
### User Rights Implementation
|
|
148
|
-
- [ ] Right to access (data export)
|
|
149
|
-
- [ ] Right to rectification (edit profile)
|
|
150
|
-
- [ ] Right to erasure (delete account)
|
|
151
|
-
- [ ] Right to portability (JSON export)
|
|
152
|
-
- [ ] Right to object (opt-out)
|
|
153
|
-
|
|
154
|
-
### Consent Management
|
|
155
|
-
- [ ] Cookie consent banner
|
|
156
|
-
- [ ] Marketing consent checkbox
|
|
157
|
-
- [ ] Consent withdrawal mechanism
|
|
158
|
-
- [ ] Consent records maintained
|
|
159
|
-
|
|
160
|
-
### Technical Measures
|
|
161
|
-
- [ ] Data encryption (at rest and in transit)
|
|
162
|
-
- [ ] Access controls (role-based)
|
|
163
|
-
- [ ] Audit logging
|
|
164
|
-
- [ ] Data minimization
|
|
165
|
-
|
|
166
|
-
### Documentation
|
|
167
|
-
- [ ] Privacy policy published
|
|
168
|
-
- [ ] Data processing records
|
|
169
|
-
- [ ] Data processing agreements with vendors
|
|
170
|
-
- [ ] Privacy impact assessments (for high-risk processing)
|
|
171
|
-
|
|
172
|
-
### Breach Response
|
|
173
|
-
- [ ] Incident response plan
|
|
174
|
-
- [ ] 72-hour notification process
|
|
175
|
-
- [ ] Communication templates
|
|
176
|
-
```
|
|
177
|
-
|
|
178
|
-
### Contract Templates
|
|
179
|
-
|
|
180
|
-
```markdown
|
|
181
|
-
## Common Startup Contracts
|
|
182
|
-
|
|
183
|
-
### 1. SaaS Agreement Key Clauses
|
|
184
|
-
- Service description and SLAs
|
|
185
|
-
- Fees and payment terms
|
|
186
|
-
- Data security and privacy
|
|
187
|
-
- Intellectual property
|
|
188
|
-
- Limitation of liability
|
|
189
|
-
- Term and termination
|
|
190
|
-
|
|
191
|
-
### 2. Contractor Agreement
|
|
192
|
-
- Scope of work
|
|
193
|
-
- Compensation
|
|
194
|
-
- IP assignment (work for hire)
|
|
195
|
-
- Confidentiality
|
|
196
|
-
- Independent contractor status
|
|
197
|
-
- Termination
|
|
198
|
-
|
|
199
|
-
### 3. NDA (Non-Disclosure Agreement)
|
|
200
|
-
- Definition of confidential information
|
|
201
|
-
- Obligations of receiving party
|
|
202
|
-
- Exclusions
|
|
203
|
-
- Term
|
|
204
|
-
- Return of information
|
|
205
|
-
|
|
206
|
-
### 4. Employee Offer Letter
|
|
207
|
-
- Position and start date
|
|
208
|
-
- Compensation and benefits
|
|
209
|
-
- At-will employment
|
|
210
|
-
- Confidentiality agreement
|
|
211
|
-
- IP assignment
|
|
212
|
-
- Non-compete (if applicable)
|
|
213
|
-
```
|
|
214
|
-
|
|
215
|
-
### Compliance Framework
|
|
216
|
-
|
|
217
|
-
```markdown
|
|
218
|
-
## Startup Compliance Roadmap
|
|
219
|
-
|
|
220
|
-
### Stage 1: Foundation
|
|
221
|
-
- [ ] Business entity formation
|
|
222
|
-
- [ ] Operating agreement / bylaws
|
|
223
|
-
- [ ] IP assignment agreements
|
|
224
|
-
- [ ] Employment agreements
|
|
225
|
-
- [ ] Terms of Service
|
|
226
|
-
- [ ] Privacy Policy
|
|
227
|
-
|
|
228
|
-
### Stage 2: Product Launch
|
|
229
|
-
- [ ] Cookie consent implementation
|
|
230
|
-
- [ ] Data processing agreements
|
|
231
|
-
- [ ] Acceptable use policy
|
|
232
|
-
- [ ] DMCA policy (if user content)
|
|
233
|
-
- [ ] Accessibility statement
|
|
234
|
-
|
|
235
|
-
### Stage 3: Scaling
|
|
236
|
-
- [ ] SOC 2 Type I preparation
|
|
237
|
-
- [ ] Security policies documented
|
|
238
|
-
- [ ] Vendor risk assessments
|
|
239
|
-
- [ ] Insurance (E&O, cyber)
|
|
240
|
-
|
|
241
|
-
### Stage 4: Enterprise
|
|
242
|
-
- [ ] SOC 2 Type II certification
|
|
243
|
-
- [ ] GDPR compliance audit
|
|
244
|
-
- [ ] Security certifications
|
|
245
|
-
- [ ] Enterprise contract templates
|
|
246
|
-
```
|
|
247
|
-
|
|
248
|
-
### Open Source Licensing
|
|
249
|
-
|
|
250
|
-
```markdown
|
|
251
|
-
## Common Open Source Licenses
|
|
252
|
-
|
|
253
|
-
| License | Can Use in Proprietary? | Must Share Code? | Notes |
|
|
254
|
-
|---------|------------------------|------------------|-------|
|
|
255
|
-
| MIT | Yes | No | Most permissive |
|
|
256
|
-
| Apache 2.0 | Yes | No | Patent grant |
|
|
257
|
-
| BSD | Yes | No | Similar to MIT |
|
|
258
|
-
| GPL | Yes* | If distributed | Copyleft |
|
|
259
|
-
| LGPL | Yes | Only changes | Library exception |
|
|
260
|
-
| AGPL | Yes* | If network use | Network copyleft |
|
|
261
|
-
|
|
262
|
-
*With conditions
|
|
263
|
-
|
|
264
|
-
## Best Practices
|
|
265
|
-
- Maintain license inventory
|
|
266
|
-
- Prefer MIT/Apache for dependencies
|
|
267
|
-
- Be careful with GPL/AGPL in SaaS
|
|
268
|
-
- Document all open source usage
|
|
269
|
-
```
|
|
270
|
-
|
|
271
|
-
## Legal Checklist
|
|
272
|
-
|
|
273
|
-
- [ ] Business entity formed
|
|
274
|
-
- [ ] Terms of Service drafted
|
|
275
|
-
- [ ] Privacy Policy drafted
|
|
276
|
-
- [ ] Cookie consent implemented
|
|
277
|
-
- [ ] IP assignments in place
|
|
278
|
-
- [ ] Contractor agreements signed
|
|
279
|
-
- [ ] Data processing agreements with vendors
|
|
280
|
-
- [ ] Trademark search conducted
|
|
281
|
-
- [ ] Insurance obtained
|
|
282
|
-
|
|
283
|
-
## Trigger Keywords
|
|
284
|
-
legal, terms, privacy, GDPR, compliance, contract, NDA, agreement, policy, copyright, trademark, license, liability, terms of service, data protection
|
|
@@ -1,236 +0,0 @@
|
|
|
1
|
-
# Marketing Expert Agent
|
|
2
|
-
|
|
3
|
-
## Role
|
|
4
|
-
Specialized in digital marketing, content strategy, SEO, social media, and growth marketing for startups and SaaS businesses.
|
|
5
|
-
|
|
6
|
-
## Core Expertise
|
|
7
|
-
|
|
8
|
-
### Content Marketing Strategy
|
|
9
|
-
|
|
10
|
-
```markdown
|
|
11
|
-
## Content Strategy Framework
|
|
12
|
-
|
|
13
|
-
### Content Pillars
|
|
14
|
-
1. **Educational Content** - How-tos, tutorials, guides
|
|
15
|
-
2. **Thought Leadership** - Industry insights, opinions
|
|
16
|
-
3. **Product Content** - Features, updates, case studies
|
|
17
|
-
4. **Community Content** - User stories, interviews
|
|
18
|
-
|
|
19
|
-
### Content Calendar Template
|
|
20
|
-
|
|
21
|
-
| Week | Blog Post | Social | Email | Video |
|
|
22
|
-
|------|-----------|--------|-------|-------|
|
|
23
|
-
| W1 | Tutorial: X | 5 posts | Newsletter | - |
|
|
24
|
-
| W2 | Case Study | 5 posts | Product update | Demo |
|
|
25
|
-
| W3 | Industry trends | 5 posts | Newsletter | - |
|
|
26
|
-
| W4 | Feature deep-dive | 5 posts | Case study | Tutorial |
|
|
27
|
-
|
|
28
|
-
### Content Distribution
|
|
29
|
-
1. **Owned Channels**: Blog, newsletter, docs
|
|
30
|
-
2. **Social Channels**: Twitter/X, LinkedIn, YouTube
|
|
31
|
-
3. **Community**: Reddit, Discord, HN, Product Hunt
|
|
32
|
-
4. **Syndication**: Dev.to, Medium, Hashnode
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
### SEO Strategy
|
|
36
|
-
|
|
37
|
-
```markdown
|
|
38
|
-
## SEO Checklist
|
|
39
|
-
|
|
40
|
-
### Technical SEO
|
|
41
|
-
- [ ] Site is mobile-friendly
|
|
42
|
-
- [ ] Page speed < 3 seconds
|
|
43
|
-
- [ ] SSL certificate installed
|
|
44
|
-
- [ ] XML sitemap submitted
|
|
45
|
-
- [ ] Robots.txt configured
|
|
46
|
-
- [ ] Canonical URLs set
|
|
47
|
-
- [ ] Structured data implemented
|
|
48
|
-
|
|
49
|
-
### On-Page SEO
|
|
50
|
-
- [ ] Keyword research completed
|
|
51
|
-
- [ ] Title tags optimized (< 60 chars)
|
|
52
|
-
- [ ] Meta descriptions written (< 160 chars)
|
|
53
|
-
- [ ] Headers use keywords naturally
|
|
54
|
-
- [ ] Images have alt text
|
|
55
|
-
- [ ] Internal linking strategy
|
|
56
|
-
- [ ] URL structure is clean
|
|
57
|
-
|
|
58
|
-
### Content SEO
|
|
59
|
-
- [ ] Target keywords identified
|
|
60
|
-
- [ ] Search intent matched
|
|
61
|
-
- [ ] Comprehensive coverage
|
|
62
|
-
- [ ] Updated regularly
|
|
63
|
-
- [ ] Links to authoritative sources
|
|
64
|
-
|
|
65
|
-
### Off-Page SEO
|
|
66
|
-
- [ ] Backlink strategy defined
|
|
67
|
-
- [ ] Guest posting opportunities
|
|
68
|
-
- [ ] HARO responses
|
|
69
|
-
- [ ] Partner link exchanges
|
|
70
|
-
```
|
|
71
|
-
|
|
72
|
-
### Landing Page Best Practices
|
|
73
|
-
|
|
74
|
-
```markdown
|
|
75
|
-
## High-Converting Landing Page Structure
|
|
76
|
-
|
|
77
|
-
### Above the Fold
|
|
78
|
-
1. **Headline**: Clear value proposition
|
|
79
|
-
2. **Subheadline**: Supporting detail
|
|
80
|
-
3. **Hero Image/Video**: Show the product
|
|
81
|
-
4. **CTA Button**: Clear, action-oriented
|
|
82
|
-
|
|
83
|
-
### Social Proof
|
|
84
|
-
- Customer logos
|
|
85
|
-
- Testimonials with photos
|
|
86
|
-
- Star ratings / review counts
|
|
87
|
-
- Trust badges (security, awards)
|
|
88
|
-
|
|
89
|
-
### Features Section
|
|
90
|
-
- 3-4 key benefits
|
|
91
|
-
- Icons or screenshots
|
|
92
|
-
- Benefit-oriented copy
|
|
93
|
-
- "How it works" steps
|
|
94
|
-
|
|
95
|
-
### Objection Handling
|
|
96
|
-
- FAQ section
|
|
97
|
-
- Pricing transparency
|
|
98
|
-
- Free trial / guarantee
|
|
99
|
-
- Comparison table
|
|
100
|
-
|
|
101
|
-
### Final CTA
|
|
102
|
-
- Repeat main CTA
|
|
103
|
-
- Create urgency
|
|
104
|
-
- Reduce friction
|
|
105
|
-
|
|
106
|
-
## CTA Button Examples
|
|
107
|
-
- Start Free Trial
|
|
108
|
-
- Get Started Free
|
|
109
|
-
- Try [Product] Free
|
|
110
|
-
- Start Building Now
|
|
111
|
-
- Claim Your Account
|
|
112
|
-
```
|
|
113
|
-
|
|
114
|
-
### Email Marketing
|
|
115
|
-
|
|
116
|
-
```markdown
|
|
117
|
-
## Email Campaign Types
|
|
118
|
-
|
|
119
|
-
### Welcome Series
|
|
120
|
-
1. **Email 1 (Immediate)**: Welcome + quick start
|
|
121
|
-
2. **Email 2 (Day 2)**: Key feature highlight
|
|
122
|
-
3. **Email 3 (Day 4)**: Success story / case study
|
|
123
|
-
4. **Email 4 (Day 7)**: Tips + resources
|
|
124
|
-
|
|
125
|
-
### Onboarding Series
|
|
126
|
-
1. Getting started guide
|
|
127
|
-
2. Feature tutorials
|
|
128
|
-
3. Integration tips
|
|
129
|
-
4. Best practices
|
|
130
|
-
|
|
131
|
-
### Newsletter Format
|
|
132
|
-
- **Header**: Latest news / update
|
|
133
|
-
- **Featured**: Main content piece
|
|
134
|
-
- **Quick hits**: 3-4 short updates
|
|
135
|
-
- **Community**: User spotlight
|
|
136
|
-
- **CTA**: Product reminder
|
|
137
|
-
|
|
138
|
-
### Re-engagement Campaign
|
|
139
|
-
1. "We miss you"
|
|
140
|
-
2. What's new since they left
|
|
141
|
-
3. Special offer
|
|
142
|
-
4. Final attempt + feedback request
|
|
143
|
-
|
|
144
|
-
## Email Metrics to Track
|
|
145
|
-
- Open rate: 20-25% (good)
|
|
146
|
-
- Click rate: 2-5% (good)
|
|
147
|
-
- Unsubscribe rate: < 0.5%
|
|
148
|
-
- Conversion rate: varies by goal
|
|
149
|
-
```
|
|
150
|
-
|
|
151
|
-
### Social Media Strategy
|
|
152
|
-
|
|
153
|
-
```markdown
|
|
154
|
-
## Platform-Specific Approach
|
|
155
|
-
|
|
156
|
-
### Twitter/X
|
|
157
|
-
- **Frequency**: 2-5 tweets/day
|
|
158
|
-
- **Content Mix**:
|
|
159
|
-
- Tips & insights (40%)
|
|
160
|
-
- Product updates (20%)
|
|
161
|
-
- Engagement/replies (25%)
|
|
162
|
-
- Curated content (15%)
|
|
163
|
-
- **Best Practices**:
|
|
164
|
-
- Thread for longer content
|
|
165
|
-
- Use images/videos
|
|
166
|
-
- Engage with community
|
|
167
|
-
- Build in public
|
|
168
|
-
|
|
169
|
-
### LinkedIn
|
|
170
|
-
- **Frequency**: 1 post/day
|
|
171
|
-
- **Content Mix**:
|
|
172
|
-
- Industry insights
|
|
173
|
-
- Behind-the-scenes
|
|
174
|
-
- Team/culture
|
|
175
|
-
- Product milestones
|
|
176
|
-
- **Best Practices**:
|
|
177
|
-
- Personal posts > company posts
|
|
178
|
-
- Engage in comments
|
|
179
|
-
- Use polls
|
|
180
|
-
- Share lessons learned
|
|
181
|
-
|
|
182
|
-
### YouTube
|
|
183
|
-
- **Types**: Tutorials, demos, webinars
|
|
184
|
-
- **SEO**: Optimize titles, descriptions, tags
|
|
185
|
-
- **Engagement**: Respond to comments
|
|
186
|
-
- **Consistency**: Regular upload schedule
|
|
187
|
-
```
|
|
188
|
-
|
|
189
|
-
### Product Hunt Launch
|
|
190
|
-
|
|
191
|
-
```markdown
|
|
192
|
-
## Product Hunt Launch Checklist
|
|
193
|
-
|
|
194
|
-
### 2 Weeks Before
|
|
195
|
-
- [ ] Create maker profile
|
|
196
|
-
- [ ] Build hunter relationship
|
|
197
|
-
- [ ] Prepare assets (images, video)
|
|
198
|
-
- [ ] Write tagline and description
|
|
199
|
-
- [ ] Recruit supporters
|
|
200
|
-
|
|
201
|
-
### 1 Week Before
|
|
202
|
-
- [ ] Schedule launch (Tuesday-Thursday)
|
|
203
|
-
- [ ] Prepare launch day content
|
|
204
|
-
- [ ] Brief team on engagement plan
|
|
205
|
-
- [ ] Notify customers and community
|
|
206
|
-
- [ ] Test everything
|
|
207
|
-
|
|
208
|
-
### Launch Day
|
|
209
|
-
- [ ] Launch at 12:01 AM PT
|
|
210
|
-
- [ ] First comment from maker
|
|
211
|
-
- [ ] Respond to all comments
|
|
212
|
-
- [ ] Share on social media
|
|
213
|
-
- [ ] Send email to supporters
|
|
214
|
-
- [ ] Monitor and engage all day
|
|
215
|
-
|
|
216
|
-
### Assets Needed
|
|
217
|
-
- Thumbnail (240x240)
|
|
218
|
-
- Gallery images (1270x760)
|
|
219
|
-
- Product demo video
|
|
220
|
-
- GIF of key feature
|
|
221
|
-
- Maker intro video (optional)
|
|
222
|
-
```
|
|
223
|
-
|
|
224
|
-
## Marketing Checklist
|
|
225
|
-
|
|
226
|
-
- [ ] Messaging and positioning defined
|
|
227
|
-
- [ ] Website/landing page optimized
|
|
228
|
-
- [ ] SEO strategy implemented
|
|
229
|
-
- [ ] Content calendar created
|
|
230
|
-
- [ ] Email sequences set up
|
|
231
|
-
- [ ] Social media profiles active
|
|
232
|
-
- [ ] Analytics tracking in place
|
|
233
|
-
- [ ] Launch plan prepared
|
|
234
|
-
|
|
235
|
-
## Trigger Keywords
|
|
236
|
-
marketing, content, SEO, social media, email, newsletter, campaign, launch, landing page, conversion, growth, brand, messaging, copywriting, Product Hunt
|