aiblueprint-cli 1.4.59 → 1.4.61

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 (184) hide show
  1. package/README.md +16 -36
  2. package/agents-config/agents/action.md +1 -1
  3. package/agents-config/agents/explore-codebase.md +53 -53
  4. package/agents-config/agents/explore-docs.md +50 -69
  5. package/agents-config/agents/websearch.md +36 -40
  6. package/agents-config/claude-config/scripts/.claude/skills/fix-on-my-computer/SKILL.md +81 -0
  7. package/agents-config/claude-config/scripts/CLAUDE.md +10 -4
  8. package/agents-config/claude-config/scripts/bun.lockb +0 -0
  9. package/agents-config/claude-config/scripts/package.json +22 -30
  10. package/agents-config/claude-config/scripts/statusline/CLAUDE.md +37 -155
  11. package/agents-config/claude-config/scripts/statusline/README.md +18 -94
  12. package/agents-config/claude-config/scripts/statusline/defaults.json +13 -10
  13. package/agents-config/claude-config/scripts/statusline/fixtures/mock-transcript.jsonl +4 -4
  14. package/agents-config/claude-config/scripts/statusline/fixtures/test-input.json +4 -4
  15. package/agents-config/claude-config/scripts/statusline/src/commands/interactive-config.ts +403 -0
  16. package/agents-config/claude-config/scripts/statusline/src/index.ts +33 -82
  17. package/agents-config/claude-config/scripts/statusline/src/lib/config-types.ts +7 -1
  18. package/agents-config/claude-config/scripts/statusline/src/lib/formatters.ts +40 -0
  19. package/agents-config/claude-config/scripts/statusline/src/lib/presets.ts +13 -13
  20. package/agents-config/claude-config/scripts/statusline/src/lib/render-pure.ts +24 -5
  21. package/agents-config/claude-config/scripts/statusline/statusline.config.free.json +79 -0
  22. package/agents-config/claude-config/scripts/statusline/statusline.config.json +77 -77
  23. package/agents-config/codex-config/config.toml +9 -0
  24. package/agents-config/codex-config/hooks/command-deny-list.ts +203 -0
  25. package/agents-config/commands/prompts/create-vitejs-app.md +272 -0
  26. package/agents-config/commands/prompts/nextjs-add-prisma-db.md +136 -0
  27. package/agents-config/commands/prompts/nextjs-setup-better-auth.md +173 -0
  28. package/agents-config/commands/prompts/nextjs-setup-project.md +200 -0
  29. package/agents-config/commands/prompts/prompt.md +55 -0
  30. package/agents-config/commands/prompts/saas-challenge-idea.md +135 -0
  31. package/agents-config/commands/prompts/saas-create-architecture.md +242 -0
  32. package/agents-config/commands/prompts/saas-create-headline.md +132 -0
  33. package/agents-config/commands/prompts/saas-create-landing-copywritting.md +267 -0
  34. package/agents-config/commands/prompts/saas-create-legals-docs.md +176 -0
  35. package/agents-config/commands/prompts/saas-create-logos.md +240 -0
  36. package/agents-config/commands/prompts/saas-create-prd.md +195 -0
  37. package/agents-config/commands/prompts/saas-create-tasks.md +240 -0
  38. package/agents-config/commands/prompts/saas-define-pricing.md +293 -0
  39. package/agents-config/commands/prompts/saas-find-domain-name.md +190 -0
  40. package/agents-config/commands/prompts/saas-implement-landing-page.md +257 -0
  41. package/agents-config/commands/prompts/setup-tmux.md +160 -0
  42. package/agents-config/commands/prompts/tools.md +148 -0
  43. package/agents-config/scripts/.claude/skills/fix-on-my-computer/SKILL.md +81 -0
  44. package/agents-config/scripts/CLAUDE.md +37 -0
  45. package/agents-config/scripts/biome.json +37 -0
  46. package/agents-config/scripts/bun.lockb +0 -0
  47. package/agents-config/scripts/package.json +24 -0
  48. package/agents-config/scripts/statusline/CLAUDE.md +87 -0
  49. package/agents-config/scripts/statusline/README.md +117 -0
  50. package/agents-config/scripts/statusline/__tests__/context.test.ts +229 -0
  51. package/agents-config/scripts/statusline/__tests__/formatters.test.ts +108 -0
  52. package/agents-config/scripts/statusline/__tests__/statusline.test.ts +309 -0
  53. package/agents-config/scripts/statusline/defaults.json +82 -0
  54. package/agents-config/scripts/statusline/fixtures/mock-transcript.jsonl +4 -0
  55. package/agents-config/scripts/statusline/fixtures/test-input.json +35 -0
  56. package/agents-config/scripts/statusline/src/commands/interactive-config.ts +403 -0
  57. package/agents-config/scripts/statusline/src/index.ts +141 -0
  58. package/agents-config/scripts/statusline/src/lib/config-types.ts +110 -0
  59. package/agents-config/scripts/statusline/src/lib/config.ts +21 -0
  60. package/agents-config/scripts/statusline/src/lib/context.ts +103 -0
  61. package/agents-config/scripts/statusline/src/lib/formatters.ts +426 -0
  62. package/agents-config/scripts/statusline/src/lib/git.ts +100 -0
  63. package/agents-config/scripts/statusline/src/lib/menu-factories.ts +224 -0
  64. package/agents-config/scripts/statusline/src/lib/presets.ts +177 -0
  65. package/agents-config/scripts/statusline/src/lib/render-pure.ts +516 -0
  66. package/agents-config/scripts/statusline/src/lib/types.ts +36 -0
  67. package/agents-config/scripts/statusline/src/lib/utils.ts +15 -0
  68. package/agents-config/scripts/statusline/statusline.config.free.json +79 -0
  69. package/agents-config/scripts/statusline/statusline.config.json +79 -0
  70. package/agents-config/scripts/statusline/test-with-fixtures.ts +37 -0
  71. package/agents-config/scripts/statusline/test.ts +20 -0
  72. package/agents-config/scripts/statusline/tsconfig.json +27 -0
  73. package/agents-config/scripts/tsconfig.json +27 -0
  74. package/agents-config/skills/{subagent-creator → agents-managers}/SKILL.md +47 -47
  75. package/agents-config/skills/{subagent-creator/references/subagents.md → agents-managers/references/agents.md} +45 -45
  76. package/agents-config/skills/{subagent-creator → agents-managers}/references/context-management.md +20 -20
  77. package/agents-config/skills/{subagent-creator → agents-managers}/references/debugging-agents.md +27 -27
  78. package/agents-config/skills/{subagent-creator → agents-managers}/references/error-handling-and-recovery.md +19 -19
  79. package/agents-config/skills/{subagent-creator → agents-managers}/references/evaluation-and-testing.md +29 -29
  80. package/agents-config/skills/{subagent-creator → agents-managers}/references/orchestration-patterns.md +5 -5
  81. package/agents-config/skills/{subagent-creator/references/writing-subagent-prompts.md → agents-managers/references/writing-agent-prompts.md} +23 -23
  82. package/agents-config/skills/codex-environment/SKILL.md +2 -0
  83. package/agents-config/skills/commit/SKILL.md +2 -0
  84. package/agents-config/skills/create-pr/SKILL.md +2 -0
  85. package/agents-config/skills/environments-manager/SKILL.md +271 -0
  86. package/agents-config/skills/environments-manager/examples/claude/.worktreeinclude +3 -0
  87. package/agents-config/skills/environments-manager/examples/claude/commands/dev.md +5 -0
  88. package/agents-config/skills/environments-manager/examples/claude/commands/lint.md +5 -0
  89. package/agents-config/skills/environments-manager/examples/claude/commands/test.md +5 -0
  90. package/agents-config/skills/environments-manager/examples/claude/commands/typecheck.md +5 -0
  91. package/agents-config/skills/environments-manager/examples/claude/settings.json +24 -0
  92. package/agents-config/skills/environments-manager/examples/codex/environments/environment.toml +29 -0
  93. package/agents-config/skills/environments-manager/examples/cursor/worktrees.json +3 -0
  94. package/agents-config/skills/environments-manager/examples/scripts/claude-worktree-create.sh +96 -0
  95. package/agents-config/skills/environments-manager/examples/scripts/claude-worktree-remove.sh +66 -0
  96. package/agents-config/skills/environments-manager/examples/scripts/dev.sh +15 -0
  97. package/agents-config/skills/environments-manager/examples/scripts/worktree-down.sh +22 -0
  98. package/agents-config/skills/environments-manager/examples/scripts/worktree-up.sh +50 -0
  99. package/agents-config/skills/environments-manager/references/claude.md +156 -0
  100. package/agents-config/skills/environments-manager/references/codex.md +97 -0
  101. package/agents-config/skills/environments-manager/references/cursor.md +88 -0
  102. package/agents-config/skills/fix-pr-comments/SKILL.md +2 -0
  103. package/agents-config/skills/grill-me/SKILL.md +10 -0
  104. package/agents-config/skills/merge/SKILL.md +2 -0
  105. package/agents-config/skills/rules-manager/SKILL.md +191 -0
  106. package/agents-config/skills/rules-manager/references/agents-vs-claude.md +66 -0
  107. package/agents-config/skills/rules-manager/references/examples.md +117 -0
  108. package/agents-config/skills/skill-manager/SKILL.md +101 -0
  109. package/agents-config/skills/skill-manager/references/claude-code.md +81 -0
  110. package/agents-config/skills/skill-manager/references/codex.md +288 -0
  111. package/agents-config/skills/skill-manager/references/cursor.md +125 -0
  112. package/agents-config/skills/skill-manager/references/description-recommandation.md +97 -0
  113. package/agents-config/skills/skill-manager/scripts/inspect-description.ts +743 -0
  114. package/agents-config/skills/ultrathink/SKILL.md +2 -0
  115. package/dist/cli.js +581 -299
  116. package/package.json +1 -1
  117. package/agents-config/claude-config/scripts/statusline/data/.gitignore +0 -8
  118. package/agents-config/claude-config/scripts/statusline/data/.gitkeep +0 -0
  119. package/agents-config/claude-config/scripts/statusline/docs/ARCHITECTURE.md +0 -166
  120. package/agents-config/claude-config/scripts/statusline/src/tests/spend-v2.test.ts +0 -306
  121. package/agents-config/skills/apex/SKILL.md +0 -261
  122. package/agents-config/skills/apex/scripts/setup-templates.sh +0 -100
  123. package/agents-config/skills/apex/scripts/update-progress.sh +0 -80
  124. package/agents-config/skills/apex/steps/step-00-init.md +0 -267
  125. package/agents-config/skills/apex/steps/step-00b-branch.md +0 -126
  126. package/agents-config/skills/apex/steps/step-00b-economy.md +0 -244
  127. package/agents-config/skills/apex/steps/step-00b-interactive.md +0 -153
  128. package/agents-config/skills/apex/steps/step-01-analyze.md +0 -361
  129. package/agents-config/skills/apex/steps/step-02-plan.md +0 -264
  130. package/agents-config/skills/apex/steps/step-03-execute.md +0 -239
  131. package/agents-config/skills/apex/steps/step-04-validate.md +0 -251
  132. package/agents-config/skills/apex/templates/00-context.md +0 -43
  133. package/agents-config/skills/apex/templates/01-analyze.md +0 -10
  134. package/agents-config/skills/apex/templates/02-plan.md +0 -10
  135. package/agents-config/skills/apex/templates/03-execute.md +0 -10
  136. package/agents-config/skills/apex/templates/04-validate.md +0 -10
  137. package/agents-config/skills/apex/templates/README.md +0 -176
  138. package/agents-config/skills/apex/templates/step-complete.md +0 -7
  139. package/agents-config/skills/claude-memory/SKILL.md +0 -293
  140. package/agents-config/skills/claude-memory/references/comprehensive-example.md +0 -175
  141. package/agents-config/skills/claude-memory/references/optimize-guide.md +0 -300
  142. package/agents-config/skills/claude-memory/references/project-patterns.md +0 -334
  143. package/agents-config/skills/claude-memory/references/prompting-techniques.md +0 -411
  144. package/agents-config/skills/claude-memory/references/rules-directory-guide.md +0 -298
  145. package/agents-config/skills/claude-memory/references/section-templates.md +0 -347
  146. package/agents-config/skills/fix-errors/SKILL.md +0 -61
  147. package/agents-config/skills/fix-grammar/SKILL.md +0 -59
  148. package/agents-config/skills/ralph-loop/SKILL.md +0 -117
  149. package/agents-config/skills/ralph-loop/scripts/setup.sh +0 -278
  150. package/agents-config/skills/ralph-loop/steps/step-00-init.md +0 -215
  151. package/agents-config/skills/ralph-loop/steps/step-01-interactive-prd.md +0 -366
  152. package/agents-config/skills/ralph-loop/steps/step-02-create-stories.md +0 -273
  153. package/agents-config/skills/ralph-loop/steps/step-03-finish.md +0 -245
  154. package/agents-config/skills/skill-creator/LICENSE.txt +0 -202
  155. package/agents-config/skills/skill-creator/SKILL.md +0 -421
  156. package/agents-config/skills/skill-creator/package.json +0 -5
  157. package/agents-config/skills/skill-creator/references/output-patterns.md +0 -82
  158. package/agents-config/skills/skill-creator/references/progressive-disclosure-patterns.md +0 -374
  159. package/agents-config/skills/skill-creator/references/prompting-integration.md +0 -363
  160. package/agents-config/skills/skill-creator/references/real-world-examples.md +0 -513
  161. package/agents-config/skills/skill-creator/references/script-patterns.md +0 -385
  162. package/agents-config/skills/skill-creator/references/workflows.md +0 -28
  163. package/agents-config/skills/skill-creator/references/xml-tag-guide.md +0 -606
  164. package/agents-config/skills/skill-creator/scripts/init-skill.ts +0 -214
  165. package/agents-config/skills/skill-creator/scripts/package-skill.ts +0 -146
  166. package/agents-config/skills/skill-creator/scripts/validate.ts +0 -138
  167. package/agents-config/skills/workflow-apex-free/SKILL.md +0 -261
  168. package/agents-config/skills/workflow-apex-free/scripts/setup-templates.sh +0 -100
  169. package/agents-config/skills/workflow-apex-free/scripts/update-progress.sh +0 -80
  170. package/agents-config/skills/workflow-apex-free/steps/step-00-init.md +0 -267
  171. package/agents-config/skills/workflow-apex-free/steps/step-00b-branch.md +0 -126
  172. package/agents-config/skills/workflow-apex-free/steps/step-00b-economy.md +0 -244
  173. package/agents-config/skills/workflow-apex-free/steps/step-00b-interactive.md +0 -153
  174. package/agents-config/skills/workflow-apex-free/steps/step-01-analyze.md +0 -361
  175. package/agents-config/skills/workflow-apex-free/steps/step-02-plan.md +0 -264
  176. package/agents-config/skills/workflow-apex-free/steps/step-03-execute.md +0 -239
  177. package/agents-config/skills/workflow-apex-free/steps/step-04-validate.md +0 -251
  178. package/agents-config/skills/workflow-apex-free/templates/00-context.md +0 -43
  179. package/agents-config/skills/workflow-apex-free/templates/01-analyze.md +0 -10
  180. package/agents-config/skills/workflow-apex-free/templates/02-plan.md +0 -10
  181. package/agents-config/skills/workflow-apex-free/templates/03-execute.md +0 -10
  182. package/agents-config/skills/workflow-apex-free/templates/04-validate.md +0 -10
  183. package/agents-config/skills/workflow-apex-free/templates/README.md +0 -176
  184. package/agents-config/skills/workflow-apex-free/templates/step-complete.md +0 -7
@@ -0,0 +1,132 @@
1
+ ---
2
+ description: Generate clickbait headlines that sound too good to be true for your landing page
3
+ arguments:
4
+ - name: product-description
5
+ description: Brief description of your product and what it does
6
+ required: true
7
+ ---
8
+
9
+ <objective>
10
+ Generate 10+ headline options for a landing page that make visitors say "Wait… what?"
11
+
12
+ Headlines should sound slightly clickbait - bold enough to spark curiosity and open a loop in the reader's brain.
13
+ </objective>
14
+
15
+ <process>
16
+ ## Phase 1: Understand the Product
17
+
18
+ **Product**: #$ARGUMENTS.product-description
19
+
20
+ 1. **If project exists**, find and read:
21
+ - `**/PRD.md` or `**/*prd*.md`
22
+ - `**/*marketing*/**/*.md`
23
+ - Existing landing page files
24
+
25
+ 2. **Extract**:
26
+ - Core transformation (before → after)
27
+ - Main pain point
28
+ - Target audience
29
+ - Key differentiator
30
+
31
+ ## Phase 2: Generate Headlines
32
+
33
+ 4. **Apply the TechCrunch test**: If TechCrunch wrote an article about this product, what would the headline be?
34
+
35
+ 5. **Generate 10+ headlines** using these patterns:
36
+
37
+ **Result + Timeline**:
38
+
39
+ - "Launch your SaaS in days, not months"
40
+ - "Learn to code in weeks, not years"
41
+
42
+ **Transformation Promise**:
43
+
44
+ - "From zero to shipped in one weekend"
45
+ - "Turn your idea into a live product tonight"
46
+
47
+ **Pain Elimination**:
48
+
49
+ - "Never write boilerplate code again"
50
+ - "Stop wasting months building the same features"
51
+
52
+ **Social Proof + Promise**:
53
+
54
+ - "Join 7,000+ developers who ship faster"
55
+ - "The secret 10,000 entrepreneurs use to launch"
56
+
57
+ **Specific Number**:
58
+
59
+ - "Get 10x more done with half the work"
60
+ - "Build a $10K/month SaaS in 30 days"
61
+
62
+ **Question Format**:
63
+
64
+ - "What if you could launch this weekend?"
65
+ - "Ready to ship your startup in 48 hours?"
66
+
67
+ **Too-Good-To-Be-True**:
68
+
69
+ - "All the code you need. None of the headaches."
70
+ - "Build like a senior dev on day one."
71
+
72
+ ## Phase 3: Output
73
+
74
+ 6. **Create HEADLINE.md** with this exact format:
75
+
76
+ ```markdown
77
+ # Headline Options for [Product Name]
78
+
79
+ ## Recommended
80
+
81
+ **[Best headline]**
82
+ _Why: [One sentence explaining why this works]_
83
+
84
+ ## All Options
85
+
86
+ 1. [Headline]
87
+ 2. [Headline]
88
+ 3. [Headline]
89
+ 4. [Headline]
90
+ 5. [Headline]
91
+ 6. [Headline]
92
+ 7. [Headline]
93
+ 8. [Headline]
94
+ 9. [Headline]
95
+ 10. [Headline]
96
+
97
+ ## Testing Advice
98
+
99
+ Send to 5 friends. After 24h, ask which they remember. Pick that one.
100
+ ```
101
+
102
+ </process>
103
+
104
+ <constraints>
105
+ **GOOD HEADLINES**:
106
+ - Sound too good to be true
107
+ - Open a curiosity loop
108
+ - Focus on results, not features
109
+ - Are specific (numbers, timeframes)
110
+ - Make people scroll to learn more
111
+
112
+ **BAD HEADLINES**:
113
+
114
+ - Generic: "The best solution for X"
115
+ - Feature-focused: "We have AI-powered..."
116
+ - Boring: "Welcome to our product"
117
+ - Safe: "A tool for developers"
118
+ - Vague: "Build better software"
119
+
120
+ **NEVER**:
121
+
122
+ - Write "clean" or "safe" copy that nobody remembers
123
+ - Use corporate jargon
124
+ - Lead with features
125
+ - Be forgettable
126
+ </constraints>
127
+
128
+ <output>
129
+ **File**: HEADLINE.md in same directory as PRD (or current directory)
130
+ **Content**: 10+ headline options with clear recommendation
131
+ **Format**: Simple list, no fluff
132
+ </output>
@@ -0,0 +1,267 @@
1
+ ---
2
+ description: Generate conversion-focused landing page copywriting based on PRD and marketing context
3
+ ---
4
+
5
+ <objective>
6
+ Generate a complete, ready-to-use landing page copywriting document that converts visitors into customers.
7
+
8
+ Focus on benefits over features, emotional resonance, and proven conversion frameworks. This comes AFTER the PRD and ARCHI - the PRD defines WHAT to build, ARCHI defines HOW, this creates the COPY that sells.
9
+ </objective>
10
+
11
+ <process>
12
+ ## Phase 1: Locate Project Files
13
+
14
+ 1. **Ask for project location**:
15
+ > "Where is your project located?"
16
+
17
+ 2. **Find and read all files** (use Glob):
18
+ - `**/PRD.md` or `**/*prd*.md`
19
+ - `**/ARCHI.md` or `**/*archi*.md`
20
+ - `**/*marketing*/**/*.md`
21
+ - `**/*objection*.md`
22
+ - `**/*competitive*.md`
23
+
24
+ 3. **Save PRD directory path** - Create LANDING_PAGE.md in SAME directory as PRD
25
+
26
+ ## Phase 2: Extract Context
27
+
28
+ 4. **From PRD extract**:
29
+ - Target users and personas
30
+ - Pain points and problems
31
+ - Features and solutions
32
+ - Success metrics
33
+
34
+ 5. **From ARCHI extract**:
35
+ - Technical advantages to translate into benefits
36
+ - Unique capabilities
37
+
38
+ 6. **From marketing files extract**:
39
+ - Existing headlines and value props
40
+ - Objections that need handling
41
+ - Competitive positioning angles
42
+
43
+ ## Phase 3: Research Best Practices
44
+
45
+ 7. **Web search for**:
46
+ - "SaaS landing page copywriting 2025 best practices"
47
+ - "conversion copywriting frameworks AIDA PAS PRESTO"
48
+ - "high converting landing page examples [industry]"
49
+
50
+ 8. **Analyze 3-5 top landing pages** in same category using WebFetch
51
+
52
+ ## Phase 4: Choose Framework
53
+
54
+ 9. **Select copywriting framework**:
55
+
56
+ **AIDA** (Attention, Interest, Desire, Action):
57
+ - Use for: Broad audiences, new categories, educational sells
58
+ - Best when: Need to build interest gradually
59
+
60
+ **PAS** (Problem, Agitate, Solution):
61
+ - Use for: Strong pain points, clear problems, urgent needs
62
+ - Best when: Users actively seeking solutions
63
+
64
+ **PRESTO** (Promise, Repeat, Evidence, Stakes, Transition, Offer):
65
+ - Use for: Complex products, B2B, service-heavy SaaS
66
+ - Best when: Longer sales cycles, need credibility building
67
+
68
+ **Hybrid**: Combine frameworks for different sections
69
+
70
+ ## Phase 5: Generate Copy
71
+
72
+ 10. **Create LANDING_PAGE.md** with ALL sections:
73
+
74
+ ```markdown
75
+ # Landing Page Copywriting: [Product Name]
76
+
77
+ ## Target Audience Summary
78
+ [From PRD - who, pain points, goals]
79
+
80
+ ## Copywriting Framework
81
+ **Primary**: [AIDA/PAS/PRESTO/Hybrid]
82
+ **Strategy**: [Brief explanation]
83
+
84
+ ---
85
+
86
+ ## HERO SECTION
87
+
88
+ ### Headline (H1)
89
+ **Option 1**: [Benefit-focused]
90
+ **Option 2**: [Timeline/result-focused]
91
+ **Option 3**: [Transformation-focused]
92
+ **Recommended**: [Which and why]
93
+
94
+ ### Subheadline (H2)
95
+ [Supporting detail that clarifies the promise]
96
+
97
+ ### Primary CTA
98
+ **Button**: [Action-oriented text]
99
+ **Micro-copy**: [Trust-building text under button]
100
+
101
+ ### Social Proof Snippet
102
+ [Quick credibility: "Join 10,000+ creators"]
103
+
104
+ ---
105
+
106
+ ## PROBLEM SECTION
107
+
108
+ ### Section Headline
109
+ [Empathetic headline calling out the pain]
110
+
111
+ ### Pain Points
112
+ - **[Pain 1]**: [Emotional description]
113
+ - **[Pain 2]**: [Emotional description]
114
+ - **[Pain 3]**: [Emotional description]
115
+
116
+ ### Agitation Paragraph
117
+ [2-3 sentences deepening the pain]
118
+
119
+ ---
120
+
121
+ ## SOLUTION SECTION
122
+
123
+ ### Headline
124
+ [How your product solves the problem]
125
+
126
+ ### Value Proposition
127
+ [2-3 sentences on unique approach]
128
+
129
+ ### Benefits (3-4 cards)
130
+ **Benefit 1**: [Headline]
131
+ - Copy: [2-3 sentences]
132
+ - Icon: [Suggestion]
133
+
134
+ [Repeat for each benefit]
135
+
136
+ ---
137
+
138
+ ## FEATURES SECTION
139
+
140
+ ### Section Headline
141
+ [Features presented as benefits]
142
+
143
+ ### Feature 1: [Name]
144
+ **Headline**: [Benefit-focused]
145
+ **Description**: [2-3 sentences - benefit + how it works]
146
+
147
+ [Repeat for each feature]
148
+
149
+ ---
150
+
151
+ ## SOCIAL PROOF
152
+
153
+ ### Section Headline
154
+ [Trust-building headline]
155
+
156
+ ### Testimonials
157
+ **Quote 1**: "[Specific result achieved]"
158
+ - Author: [Name, Role, Company]
159
+ - Result: [Specific metric]
160
+
161
+ [Repeat 2-3 more]
162
+
163
+ ### Trust Indicators
164
+ - [Number of users]
165
+ - [Notable clients]
166
+ - [Recognition/awards]
167
+
168
+ ---
169
+
170
+ ## OBJECTION HANDLING
171
+
172
+ ### Objection 1: [Common concern]
173
+ **Response**: [How you address it]
174
+
175
+ [Repeat for each objection]
176
+
177
+ ---
178
+
179
+ ## FAQ
180
+
181
+ ### Q: [Most common question]
182
+ **A**: [Clear answer]
183
+
184
+ [5-8 FAQs covering blockers]
185
+
186
+ ---
187
+
188
+ ## PRICING (if applicable)
189
+
190
+ ### Section Headline
191
+ [Value-focused]
192
+
193
+ ### Tier 1: [Name] - $X/mo
194
+ **For**: [Who]
195
+ **Features**: [List]
196
+ **CTA**: [Button text]
197
+
198
+ [Repeat for each tier]
199
+
200
+ ### Guarantee
201
+ [Money-back guarantee text]
202
+
203
+ ---
204
+
205
+ ## FINAL CTA
206
+
207
+ ### Headline
208
+ [Compelling call to action]
209
+
210
+ ### Supporting Copy
211
+ [2-3 sentences creating urgency]
212
+
213
+ ### CTA
214
+ **Button**: [Strong action verb]
215
+ **Trust**: [Final reassurance]
216
+
217
+ ---
218
+
219
+ ## TONE & VOICE
220
+
221
+ **Overall**: [Professional/Casual/Technical]
222
+ **Words to use**: [Power words]
223
+ **Words to avoid**: [Jargon to skip]
224
+ ```
225
+ </process>
226
+
227
+ <constraints>
228
+ **BENEFIT TRANSLATION FORMULA**:
229
+ - Feature: "We have X"
230
+ - Function: "X does Y"
231
+ - Benefit: "So you can Z" ← ALWAYS get here
232
+
233
+ **HEADLINE PATTERNS**:
234
+ - [Benefit] in [Timeframe]: "Create your SaaS in 30 days"
235
+ - [Transformation] for [Audience]: "From Zero to Developer for Entrepreneurs"
236
+ - [Promise] without [Pain]: "Build apps without coding headaches"
237
+
238
+ **CTA RULES**:
239
+ - Use action verbs: Start, Create, Build, Launch, Join, Get
240
+ - Add value context: "Start Building Free" vs "Sign Up"
241
+ - Create urgency: "Join 500 Early Users"
242
+
243
+ **NEVER**:
244
+ - Write generic copy that fits any product
245
+ - Lead with features instead of benefits
246
+ - Skip the research phase
247
+ - Use placeholder text instead of real copy
248
+ - Save file in wrong location
249
+ </constraints>
250
+
251
+ <output>
252
+ **File**: LANDING_PAGE.md in same directory as PRD
253
+ **Content**: Complete copy for all sections (not placeholders)
254
+ **Headlines**: 3 options for hero with recommendation
255
+ **Benefits**: All features translated using benefit formula
256
+ **Objections**: All objections from files addressed
257
+ </output>
258
+
259
+ <success_criteria>
260
+ - Hero section has 3 headline options with clear recommendation
261
+ - ALL sections have benefit-focused copy (not feature-focused)
262
+ - CTAs are action-oriented and specific
263
+ - All objections from files are addressed
264
+ - Copy aligns with PRD target users and pain points
265
+ - Technical advantages from ARCHI translated to benefits
266
+ - File saved in same directory as PRD
267
+ </success_criteria>
@@ -0,0 +1,176 @@
1
+ ---
2
+ description: Generate GDPR-compliant Privacy Policy and Terms of Service based on product and data practices
3
+ ---
4
+
5
+ <objective>
6
+ Generate comprehensive, GDPR-compliant legal documentation for a SaaS application.
7
+
8
+ Create a Privacy Policy and Terms of Service that are understandable by regular users while being legally sound. These documents protect both the business and users while building trust.
9
+ </objective>
10
+
11
+ <process>
12
+ ## Phase 1: Locate PRD
13
+
14
+ 1. **Ask for PRD location**:
15
+ > "Where is your PRD? Please provide the file path."
16
+
17
+ 2. **Extract from PRD**:
18
+ - Product name and company name
19
+ - What data is collected (user input, analytics, files)
20
+ - Third-party integrations (Stripe, analytics, email)
21
+ - Target regions (EU, US, global)
22
+ - User account features
23
+
24
+ 3. **Save output path** - Legal docs go in same directory as PRD
25
+
26
+ ## Phase 2: Information Gathering
27
+
28
+ 4. **Collect required information** (ask in batches, not all at once):
29
+
30
+ **Company Information**:
31
+ - Legal company name and structure (LLC, Inc, SARL)
32
+ - Jurisdiction (State/Country)
33
+ - Registration number (EIN for US, SIRET for France)
34
+ - Complete legal address
35
+ - Contact email for legal/privacy matters
36
+
37
+ **For French Companies** (CGV required):
38
+ - Numéro SIRET
39
+ - Numéro de TVA intracommunautaire
40
+ - Capital social (if SARL/SAS)
41
+ - RCS (Registre du Commerce et des Sociétés)
42
+
43
+ **Data Collection**:
44
+ - Account data: email, name, profile info?
45
+ - Payment data: credit cards via Stripe/LemonSqueezy?
46
+ - Content data: what user-created content is stored?
47
+ - Usage data: analytics, logs, interaction data?
48
+ - Cookies: essential only, or analytics/marketing too?
49
+
50
+ **Third-Party Services** (check which apply):
51
+ - Payment: Stripe / LemonSqueezy / Other
52
+ - Analytics: PostHog / Plausible / Google Analytics
53
+ - Email: Resend / SendGrid / Other
54
+ - Hosting: Vercel / AWS / Other
55
+ - AI: OpenAI / Anthropic / Other
56
+ - Error tracking: Sentry / Other
57
+
58
+ **Data Practices**:
59
+ - Data retention: How long is data kept?
60
+ - Data deletion: Can users delete their account/data?
61
+ - Data export: Can users export their data?
62
+ - Data sharing: Shared with anyone beyond service providers?
63
+
64
+ **Terms Specifics**:
65
+ - Free tier available? Limitations?
66
+ - Paid tiers? Refund policy?
67
+ - User-generated content? Moderation?
68
+ - API access? Rate limits?
69
+ - Prohibited uses? (spam, illegal, abuse)
70
+
71
+ **Dispute Resolution**:
72
+ - Preferred governing law? (Delaware common for US)
73
+ - Mandatory arbitration? (faster, cheaper than court)
74
+ - Class action waiver? (individual claims only)
75
+
76
+ **Languages Needed**:
77
+ - English version?
78
+ - French version (CGV)?
79
+ - Both?
80
+
81
+ ## Phase 3: Generate Privacy Policy
82
+
83
+ 5. **Create PRIVACY_POLICY.md** with these sections:
84
+
85
+ - **Introduction**: Company name, what the policy covers
86
+ - **Information We Collect**:
87
+ - Information provided (account, payment, content)
88
+ - Information collected automatically (usage, device, cookies)
89
+ - **How We Use Information**: Provide service, process payments, improve, legal compliance
90
+ - **Data Sharing**: Service providers listed by name, legal requirements, business transfers
91
+ - **Data Retention**: How long for each data type
92
+ - **Your Rights**:
93
+ - All users: access, correct, delete, export
94
+ - EU users (GDPR): erasure, portability, restrict, object
95
+ - California users (CCPA): know, delete, opt-out, non-discrimination
96
+ - **Data Security**: Encryption, access controls, limitations
97
+ - **International Transfers**: Where data stored, safeguards
98
+ - **Cookies**: Essential, analytics, marketing - with opt-out info
99
+ - **Children's Privacy**: Not for under 16
100
+ - **Changes to Policy**: How updates are communicated
101
+ - **Contact**: Privacy email and address
102
+
103
+ ## Phase 4: Generate Terms of Service
104
+
105
+ 6. **Create TERMS_OF_SERVICE.md** with these sections:
106
+
107
+ - **Agreement to Terms**: Using service = agreeing
108
+ - **Description of Service**: What the product does
109
+ - **Accounts**: Creation, security, termination
110
+ - **Subscription and Payment** (if paid):
111
+ - Pricing and billing
112
+ - Refund policy
113
+ - Cancellation
114
+ - Free tier limitations
115
+ - **Acceptable Use**: What users must NOT do
116
+ - **Intellectual Property**: Company owns service, user owns their content, limited license
117
+ - **Third-Party Services**: Not responsible for integrations
118
+ - **Disclaimer of Warranties**: AS IS, no guarantees
119
+ - **Limitation of Liability**: No indirect damages, liability cap
120
+ - **Indemnification**: User holds company harmless
121
+ - **Governing Law**: Jurisdiction
122
+ - **Dispute Resolution**: Informal first, then arbitration/courts
123
+ - **Changes to Terms**: How updates work
124
+ - **Miscellaneous**: Entire agreement, severability, waiver, assignment
125
+ - **Contact**: Legal email
126
+
127
+ ## Phase 5: Generate French CGV (if needed)
128
+
129
+ 7. **Create CGV.md** if French market - includes:
130
+ - Required company information (SIRET, RCS, TVA)
131
+ - Article structure required by French law
132
+ - Droit de rétractation (14-day withdrawal right)
133
+ - Exception for digital content accessed immediately
134
+ - Médiation de la consommation (required mediator info)
135
+ - Garantie légale de conformité
136
+ </process>
137
+
138
+ <output>
139
+ **Files created**:
140
+ - `PRIVACY_POLICY.md` - Complete privacy policy
141
+ - `TERMS_OF_SERVICE.md` - Complete terms of service
142
+ - `CGV.md` - French conditions générales de vente (if requested)
143
+
144
+ All saved in same directory as PRD.
145
+ </output>
146
+
147
+ <constraints>
148
+ **CRITICAL NOTES**:
149
+ - These are templates, NOT legal advice
150
+ - Recommend professional legal review before production use
151
+ - Adapt based on actual business practices and jurisdiction
152
+ - Keep language understandable to regular users
153
+
154
+ **DO NOT**:
155
+ - Generate with placeholders - fill in ALL details from gathered info
156
+ - Skip GDPR requirements if serving EU users
157
+ - Omit required disclosures for third-party services
158
+ - Generate without asking for required company information first
159
+ - Skip French-specific requirements if CGV requested
160
+
161
+ **LEGAL PROTECTION PRIORITY**:
162
+ - Include liability caps and disclaimers
163
+ - Clearly define prohibited uses
164
+ - Specify governing law and venue
165
+ - Include arbitration clause if requested
166
+ </constraints>
167
+
168
+ <success_criteria>
169
+ - All company and product details filled in (no [brackets])
170
+ - All third-party services disclosed in privacy policy
171
+ - Data practices match actual product features
172
+ - User rights section complete (GDPR, CCPA if applicable)
173
+ - Terms cover payment, refunds, acceptable use
174
+ - Documents saved in same directory as PRD
175
+ - Clear recommendation for professional legal review included
176
+ </success_criteria>