@c0x12c/spartan-ai-toolkit 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (166) hide show
  1. package/.claude-plugin/marketplace.json +16 -0
  2. package/.claude-plugin/plugin.json +12 -0
  3. package/README.md +300 -0
  4. package/VERSION +1 -0
  5. package/agents/idea-killer.md +72 -0
  6. package/agents/micronaut-backend-expert.md +45 -0
  7. package/agents/research-planner.md +70 -0
  8. package/agents/solution-architect-cto.md +49 -0
  9. package/bin/cli.js +589 -0
  10. package/claude-md/00-header.md +39 -0
  11. package/claude-md/01-core.md +94 -0
  12. package/claude-md/05-database.md +20 -0
  13. package/claude-md/11-backend-micronaut.md +36 -0
  14. package/claude-md/20-frontend-react.md +23 -0
  15. package/claude-md/30-project-mgmt.md +91 -0
  16. package/claude-md/40-product.md +36 -0
  17. package/claude-md/50-ops.md +34 -0
  18. package/claude-md/60-research.md +75 -0
  19. package/claude-md/90-footer.md +21 -0
  20. package/commands/spartan/brainstorm.md +134 -0
  21. package/commands/spartan/brownfield.md +157 -0
  22. package/commands/spartan/careful.md +94 -0
  23. package/commands/spartan/content.md +17 -0
  24. package/commands/spartan/context-save.md +161 -0
  25. package/commands/spartan/daily.md +42 -0
  26. package/commands/spartan/debug.md +156 -0
  27. package/commands/spartan/deep-dive.md +55 -0
  28. package/commands/spartan/deploy.md +207 -0
  29. package/commands/spartan/e2e.md +264 -0
  30. package/commands/spartan/env-setup.md +166 -0
  31. package/commands/spartan/fe-review.md +134 -0
  32. package/commands/spartan/figma-to-code.md +244 -0
  33. package/commands/spartan/forensics.md +46 -0
  34. package/commands/spartan/freeze.md +84 -0
  35. package/commands/spartan/full-run.md +78 -0
  36. package/commands/spartan/fundraise.md +53 -0
  37. package/commands/spartan/gsd-upgrade.md +376 -0
  38. package/commands/spartan/guard.md +42 -0
  39. package/commands/spartan/init-project.md +178 -0
  40. package/commands/spartan/interview.md +154 -0
  41. package/commands/spartan/kickoff.md +52 -0
  42. package/commands/spartan/kotlin-service.md +109 -0
  43. package/commands/spartan/lean-canvas.md +222 -0
  44. package/commands/spartan/map-codebase.md +72 -0
  45. package/commands/spartan/migration.md +82 -0
  46. package/commands/spartan/next-app.md +317 -0
  47. package/commands/spartan/next-feature.md +197 -0
  48. package/commands/spartan/outreach.md +16 -0
  49. package/commands/spartan/phase.md +119 -0
  50. package/commands/spartan/pitch.md +18 -0
  51. package/commands/spartan/pr-ready.md +200 -0
  52. package/commands/spartan/project.md +106 -0
  53. package/commands/spartan/quickplan.md +122 -0
  54. package/commands/spartan/research.md +19 -0
  55. package/commands/spartan/review.md +102 -0
  56. package/commands/spartan/teardown.md +161 -0
  57. package/commands/spartan/testcontainer.md +97 -0
  58. package/commands/spartan/think.md +221 -0
  59. package/commands/spartan/unfreeze.md +13 -0
  60. package/commands/spartan/update.md +81 -0
  61. package/commands/spartan/validate.md +193 -0
  62. package/commands/spartan/workstreams.md +109 -0
  63. package/commands/spartan/write.md +16 -0
  64. package/commands/spartan.md +222 -0
  65. package/frameworks/00-framework-comparison-guide.md +317 -0
  66. package/frameworks/01-lean-canvas.md +196 -0
  67. package/frameworks/02-design-sprint.md +304 -0
  68. package/frameworks/03-foundation-sprint.md +337 -0
  69. package/frameworks/04-business-model-canvas.md +391 -0
  70. package/frameworks/05-customer-development.md +426 -0
  71. package/frameworks/06-jobs-to-be-done.md +358 -0
  72. package/frameworks/07-mom-test.md +392 -0
  73. package/frameworks/08-value-proposition-canvas.md +488 -0
  74. package/frameworks/09-javelin-board.md +428 -0
  75. package/frameworks/10-build-measure-learn.md +467 -0
  76. package/frameworks/11-mvp-approaches.md +533 -0
  77. package/frameworks/think-before-build.md +593 -0
  78. package/lib/assembler.js +52 -0
  79. package/lib/packs.js +16 -0
  80. package/lib/resolver.js +144 -0
  81. package/lib/resolver.test.js +140 -0
  82. package/package.json +48 -0
  83. package/packs/backend-micronaut.yaml +34 -0
  84. package/packs/backend-nodejs.yaml +15 -0
  85. package/packs/backend-python.yaml +15 -0
  86. package/packs/core.yaml +25 -0
  87. package/packs/database.yaml +21 -0
  88. package/packs/frontend-react.yaml +23 -0
  89. package/packs/ops.yaml +16 -0
  90. package/packs/packs.compiled.json +281 -0
  91. package/packs/product.yaml +20 -0
  92. package/packs/project-mgmt.yaml +21 -0
  93. package/packs/research.yaml +39 -0
  94. package/packs/shared-backend.yaml +14 -0
  95. package/rules/backend-micronaut/API_DESIGN.md +250 -0
  96. package/rules/backend-micronaut/CONTROLLERS.md +755 -0
  97. package/rules/backend-micronaut/KOTLIN.md +483 -0
  98. package/rules/backend-micronaut/RETROFIT_PLACEMENT.md +258 -0
  99. package/rules/backend-micronaut/SERVICES_AND_BEANS.md +673 -0
  100. package/rules/core/NAMING_CONVENTIONS.md +208 -0
  101. package/rules/database/ORM_AND_REPO.md +393 -0
  102. package/rules/database/SCHEMA.md +146 -0
  103. package/rules/database/TRANSACTIONS.md +311 -0
  104. package/rules/frontend-react/FRONTEND.md +344 -0
  105. package/rules/shared-backend/ARCHITECTURE.md +46 -0
  106. package/skills/api-endpoint-creator/SKILL.md +560 -0
  107. package/skills/api-endpoint-creator/error-handling-guide.md +244 -0
  108. package/skills/api-endpoint-creator/examples.md +522 -0
  109. package/skills/api-endpoint-creator/testing-patterns.md +302 -0
  110. package/skills/article-writing/SKILL.md +95 -0
  111. package/skills/backend-api-design/SKILL.md +187 -0
  112. package/skills/brainstorm/SKILL.md +85 -0
  113. package/skills/competitive-teardown/SKILL.md +105 -0
  114. package/skills/content-engine/SKILL.md +101 -0
  115. package/skills/database-patterns/SKILL.md +145 -0
  116. package/skills/database-table-creator/SKILL.md +588 -0
  117. package/skills/database-table-creator/examples.md +552 -0
  118. package/skills/database-table-creator/migration-template.sql +68 -0
  119. package/skills/database-table-creator/validation-checklist.md +337 -0
  120. package/skills/deep-research/SKILL.md +94 -0
  121. package/skills/idea-validation/SKILL.md +115 -0
  122. package/skills/investor-materials/SKILL.md +115 -0
  123. package/skills/investor-outreach/SKILL.md +98 -0
  124. package/skills/kotlin-best-practices/SKILL.md +145 -0
  125. package/skills/market-research/SKILL.md +113 -0
  126. package/skills/security-checklist/SKILL.md +150 -0
  127. package/skills/startup-pipeline/SKILL.md +125 -0
  128. package/skills/testing-strategies/SKILL.md +156 -0
  129. package/skills/ui-ux-pro-max/SKILL.md +377 -0
  130. package/skills/ui-ux-pro-max/data/charts.csv +26 -0
  131. package/skills/ui-ux-pro-max/data/colors.csv +97 -0
  132. package/skills/ui-ux-pro-max/data/icons.csv +101 -0
  133. package/skills/ui-ux-pro-max/data/landing.csv +31 -0
  134. package/skills/ui-ux-pro-max/data/products.csv +97 -0
  135. package/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  136. package/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
  137. package/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  138. package/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  139. package/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  140. package/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  141. package/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  142. package/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  143. package/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  144. package/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  145. package/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  146. package/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  147. package/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  148. package/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  149. package/skills/ui-ux-pro-max/data/styles.csv +68 -0
  150. package/skills/ui-ux-pro-max/data/typography.csv +58 -0
  151. package/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  152. package/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  153. package/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
  154. package/skills/ui-ux-pro-max/scripts/core.py +253 -0
  155. package/skills/ui-ux-pro-max/scripts/design_system.py +1067 -0
  156. package/skills/ui-ux-pro-max/scripts/search.py +114 -0
  157. package/templates/competitor-analysis.md +60 -0
  158. package/templates/content/AGENT_TEMPLATE.md +47 -0
  159. package/templates/content/COMMAND_TEMPLATE.md +27 -0
  160. package/templates/content/RULE_TEMPLATE.md +40 -0
  161. package/templates/content/SKILL_TEMPLATE.md +41 -0
  162. package/templates/idea-canvas.md +47 -0
  163. package/templates/prd-template.md +84 -0
  164. package/templates/project-readme.md +35 -0
  165. package/templates/user-interview.md +69 -0
  166. package/templates/validation-checklist.md +108 -0
@@ -0,0 +1,114 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ """
4
+ UI/UX Pro Max Search - BM25 search engine for UI/UX style guides
5
+ Usage: python search.py "<query>" [--domain <domain>] [--stack <stack>] [--max-results 3]
6
+ python search.py "<query>" --design-system [-p "Project Name"]
7
+ python search.py "<query>" --design-system --persist [-p "Project Name"] [--page "dashboard"]
8
+
9
+ Domains: style, prompt, color, chart, landing, product, ux, typography
10
+ Stacks: html-tailwind, react, nextjs
11
+
12
+ Persistence (Master + Overrides pattern):
13
+ --persist Save design system to design-system/MASTER.md
14
+ --page Also create a page-specific override file in design-system/pages/
15
+ """
16
+
17
+ import argparse
18
+ import sys
19
+ import io
20
+ from core import CSV_CONFIG, AVAILABLE_STACKS, MAX_RESULTS, search, search_stack
21
+ from design_system import generate_design_system, persist_design_system
22
+
23
+ # Force UTF-8 for stdout/stderr to handle emojis on Windows (cp1252 default)
24
+ if sys.stdout.encoding and sys.stdout.encoding.lower() != 'utf-8':
25
+ sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
26
+ if sys.stderr.encoding and sys.stderr.encoding.lower() != 'utf-8':
27
+ sys.stderr = io.TextIOWrapper(sys.stderr.buffer, encoding='utf-8')
28
+
29
+
30
+ def format_output(result):
31
+ """Format results for Claude consumption (token-optimized)"""
32
+ if "error" in result:
33
+ return f"Error: {result['error']}"
34
+
35
+ output = []
36
+ if result.get("stack"):
37
+ output.append(f"## UI Pro Max Stack Guidelines")
38
+ output.append(f"**Stack:** {result['stack']} | **Query:** {result['query']}")
39
+ else:
40
+ output.append(f"## UI Pro Max Search Results")
41
+ output.append(f"**Domain:** {result['domain']} | **Query:** {result['query']}")
42
+ output.append(f"**Source:** {result['file']} | **Found:** {result['count']} results\n")
43
+
44
+ for i, row in enumerate(result['results'], 1):
45
+ output.append(f"### Result {i}")
46
+ for key, value in row.items():
47
+ value_str = str(value)
48
+ if len(value_str) > 300:
49
+ value_str = value_str[:300] + "..."
50
+ output.append(f"- **{key}:** {value_str}")
51
+ output.append("")
52
+
53
+ return "\n".join(output)
54
+
55
+
56
+ if __name__ == "__main__":
57
+ parser = argparse.ArgumentParser(description="UI Pro Max Search")
58
+ parser.add_argument("query", help="Search query")
59
+ parser.add_argument("--domain", "-d", choices=list(CSV_CONFIG.keys()), help="Search domain")
60
+ parser.add_argument("--stack", "-s", choices=AVAILABLE_STACKS, help="Stack-specific search (html-tailwind, react, nextjs)")
61
+ parser.add_argument("--max-results", "-n", type=int, default=MAX_RESULTS, help="Max results (default: 3)")
62
+ parser.add_argument("--json", action="store_true", help="Output as JSON")
63
+ # Design system generation
64
+ parser.add_argument("--design-system", "-ds", action="store_true", help="Generate complete design system recommendation")
65
+ parser.add_argument("--project-name", "-p", type=str, default=None, help="Project name for design system output")
66
+ parser.add_argument("--format", "-f", choices=["ascii", "markdown"], default="ascii", help="Output format for design system")
67
+ # Persistence (Master + Overrides pattern)
68
+ parser.add_argument("--persist", action="store_true", help="Save design system to design-system/MASTER.md (creates hierarchical structure)")
69
+ parser.add_argument("--page", type=str, default=None, help="Create page-specific override file in design-system/pages/")
70
+ parser.add_argument("--output-dir", "-o", type=str, default=None, help="Output directory for persisted files (default: current directory)")
71
+
72
+ args = parser.parse_args()
73
+
74
+ # Design system takes priority
75
+ if args.design_system:
76
+ result = generate_design_system(
77
+ args.query,
78
+ args.project_name,
79
+ args.format,
80
+ persist=args.persist,
81
+ page=args.page,
82
+ output_dir=args.output_dir
83
+ )
84
+ print(result)
85
+
86
+ # Print persistence confirmation
87
+ if args.persist:
88
+ project_slug = args.project_name.lower().replace(' ', '-') if args.project_name else "default"
89
+ print("\n" + "=" * 60)
90
+ print(f"✅ Design system persisted to design-system/{project_slug}/")
91
+ print(f" 📄 design-system/{project_slug}/MASTER.md (Global Source of Truth)")
92
+ if args.page:
93
+ page_filename = args.page.lower().replace(' ', '-')
94
+ print(f" 📄 design-system/{project_slug}/pages/{page_filename}.md (Page Overrides)")
95
+ print("")
96
+ print(f"📖 Usage: When building a page, check design-system/{project_slug}/pages/[page].md first.")
97
+ print(f" If exists, its rules override MASTER.md. Otherwise, use MASTER.md.")
98
+ print("=" * 60)
99
+ # Stack search
100
+ elif args.stack:
101
+ result = search_stack(args.query, args.stack, args.max_results)
102
+ if args.json:
103
+ import json
104
+ print(json.dumps(result, indent=2, ensure_ascii=False))
105
+ else:
106
+ print(format_output(result))
107
+ # Domain search
108
+ else:
109
+ result = search(args.query, args.domain, args.max_results)
110
+ if args.json:
111
+ import json
112
+ print(json.dumps(result, indent=2, ensure_ascii=False))
113
+ else:
114
+ print(format_output(result))
@@ -0,0 +1,60 @@
1
+ # Competitor Analysis: [Competitor Name]
2
+
3
+ **URL:**
4
+ **Analyzed:** YYYY-MM-DD
5
+
6
+ ## Overview
7
+ What do they do? Who are they for?
8
+
9
+ ## Pricing
10
+ | Plan | Price | What You Get |
11
+ |------|-------|--------------|
12
+ | Free | $0 | |
13
+ | Pro | $X/mo | |
14
+ | Enterprise | $X/mo | |
15
+
16
+ ## Features
17
+ | Feature | Have it? | Notes |
18
+ |---------|----------|-------|
19
+ | | Yes/No | |
20
+ | | Yes/No | |
21
+ | | Yes/No | |
22
+
23
+ ## What They Do Well
24
+ 1.
25
+ 2.
26
+ 3.
27
+
28
+ ## What They Do Poorly
29
+ 1.
30
+ 2.
31
+ 3.
32
+
33
+ ## User Reviews (G2, Capterra, Reddit, etc.)
34
+ ### What users love:
35
+ -
36
+
37
+ ### What users hate:
38
+ -
39
+
40
+ ## Traffic / Traction
41
+ - Monthly visits (SimilarWeb):
42
+ - Social followers:
43
+ - Reviews count:
44
+ - Founded:
45
+ - Funding:
46
+
47
+ ## How They Get Users
48
+ - [ ] SEO
49
+ - [ ] Paid ads
50
+ - [ ] Social media
51
+ - [ ] Referrals
52
+ - [ ] Partnerships
53
+ - [ ] Content marketing
54
+ - [ ] Other: ___
55
+
56
+ ## Positioning
57
+ How do they describe themselves? What's their main message?
58
+
59
+ ## Our Opportunity
60
+ What gap can we fill? How can we be different/better?
@@ -0,0 +1,47 @@
1
+ ---
2
+ name: agent-name
3
+ description: What this agent does. When to use it.
4
+ tools: ["Read", "Grep", "Glob"]
5
+ model: sonnet
6
+ ---
7
+
8
+ You are [identity]. Your job is [mission].
9
+
10
+ ## Your Job
11
+
12
+ - Thing 1
13
+ - Thing 2
14
+ - Thing 3
15
+
16
+ ## How You Think
17
+
18
+ [1-2 sentences on experience and approach]
19
+
20
+ Patterns you watch for:
21
+ - Pattern 1
22
+ - Pattern 2
23
+ - Pattern 3
24
+
25
+ ## Process
26
+
27
+ 1. **Step** - What happens
28
+ 2. **Step** - What happens
29
+ 3. **Step** - What happens
30
+
31
+ ## Output Format
32
+
33
+ ### Section Name
34
+ - [What goes here]
35
+
36
+ ### Section Name
37
+ - [What goes here]
38
+
39
+ ### Verdict
40
+ [FORMAT]
41
+ [Explanation format]
42
+
43
+ ## Rules
44
+
45
+ - Rule 1
46
+ - Rule 2
47
+ - Rule 3
@@ -0,0 +1,27 @@
1
+ ---
2
+ name: spartan:COMMAND-NAME
3
+ description: What this command does in one line
4
+ argument-hint: "[what the user passes]"
5
+ ---
6
+
7
+ # Command Title: {{ args[0] | default: "fallback" }}
8
+
9
+ One sentence — what this does and when to use it.
10
+
11
+ ## Steps
12
+
13
+ ### Phase Name
14
+ 1. First action
15
+ 2. Second action
16
+ 3. Third action
17
+
18
+ ### Next Phase
19
+ 4. Action
20
+ 5. Action
21
+ 6. Action
22
+
23
+ ## Rules
24
+
25
+ - Rule 1
26
+ - Rule 2
27
+ - Rule 3
@@ -0,0 +1,40 @@
1
+ # Rule Name
2
+
3
+ > Full guide: use `/skill-name` skill
4
+
5
+ ## The Rule
6
+
7
+ State the rule clearly in 1-2 sentences.
8
+
9
+ ### WRONG
10
+
11
+ ```kotlin
12
+ // bad code example
13
+ ```
14
+
15
+ ### CORRECT
16
+
17
+ ```kotlin
18
+ // good code example
19
+ ```
20
+
21
+ ## Section 2 (if needed)
22
+
23
+ ### WRONG
24
+
25
+ ```kotlin
26
+ // bad code
27
+ ```
28
+
29
+ ### CORRECT
30
+
31
+ ```kotlin
32
+ // good code
33
+ ```
34
+
35
+ ## Quick Reference
36
+
37
+ | Situation | Do This | Not This |
38
+ |-----------|---------|----------|
39
+ | Case 1 | Good | Bad |
40
+ | Case 2 | Good | Bad |
@@ -0,0 +1,41 @@
1
+ ---
2
+ name: skill-name
3
+ description: What this skill does. When to use it.
4
+ ---
5
+
6
+ # Skill Name
7
+
8
+ One sentence — what this turns input into.
9
+
10
+ ## When to Use
11
+
12
+ - Situation 1
13
+ - Situation 2
14
+ - Situation 3
15
+
16
+ ## Process
17
+
18
+ ### 1. First Step
19
+ What to do. What to ask.
20
+
21
+ ### 2. Second Step
22
+ What to produce.
23
+
24
+ ### 3. Third Step
25
+ What to check.
26
+
27
+ ## Interaction Style
28
+
29
+ How the skill talks to the user.
30
+ - What it always does
31
+ - What it never does
32
+
33
+ ## Rules
34
+
35
+ - Rule 1
36
+ - Rule 2
37
+ - Rule 3
38
+
39
+ ## Output
40
+
41
+ Where to save results. What format.
@@ -0,0 +1,47 @@
1
+ # Idea Canvas: [Name]
2
+
3
+ **Date:** YYYY-MM-DD
4
+
5
+ ## The Problem
6
+ > What's broken? What sucks? What takes too long?
7
+
8
+ ## Who Has This Problem?
9
+ > Be specific. "Everyone" is not an answer.
10
+
11
+ ## How Do They Solve It Now?
12
+ > What workarounds exist? What competitors are there?
13
+
14
+ ## Your Solution (30 seconds)
15
+ > Explain it like you're texting a friend.
16
+
17
+ ## Why You?
18
+ > What do you know that others don't? Any unfair advantages?
19
+
20
+ ## How Big Is This?
21
+ - How many people have this problem?
22
+ - How often do they have it?
23
+ - How much would they pay to fix it?
24
+
25
+ ## Risks
26
+ > What could kill this idea?
27
+
28
+ 1.
29
+ 2.
30
+ 3.
31
+
32
+ ## First Experiment
33
+ > What's the cheapest way to test if this works?
34
+
35
+ ## Gut Check
36
+ - [ ] I've seen this problem myself
37
+ - [ ] I know at least 3 people with this problem
38
+ - [ ] They've tried to solve it before
39
+ - [ ] I could build v1 in 2 weeks
40
+ - [ ] I'd use this product myself
41
+
42
+ **Score:** _/5 boxes checked
43
+
44
+ ## Decision
45
+ - [ ] Worth exploring
46
+ - [ ] Kill it
47
+ - [ ] Need more info on: ___________
@@ -0,0 +1,84 @@
1
+ # PRD: [Feature/Product Name]
2
+
3
+ **Author:**
4
+ **Date:**
5
+ **Status:** Draft / Review / Approved
6
+
7
+ ---
8
+
9
+ ## TL;DR
10
+ What are we building and why? (2-3 sentences max)
11
+
12
+ ## Problem
13
+ What problem does this solve? Include evidence from user research.
14
+
15
+ ## Goals
16
+ What does success look like?
17
+
18
+ | Goal | Metric | Target |
19
+ |------|--------|--------|
20
+ | | | |
21
+ | | | |
22
+
23
+ ## Non-Goals
24
+ What are we NOT doing?
25
+
26
+ -
27
+
28
+ ## User Stories
29
+ | As a... | I want to... | So that... |
30
+ |---------|--------------|------------|
31
+ | | | |
32
+ | | | |
33
+
34
+ ## Solution
35
+
36
+ ### Overview
37
+ How does it work? (simple explanation)
38
+
39
+ ### User Flow
40
+ 1. User does X
41
+ 2. System shows Y
42
+ 3. User clicks Z
43
+ 4. ...
44
+
45
+ ### Wireframes
46
+ (Link to designs or paste images)
47
+
48
+ ## Technical Notes
49
+ Anything the dev team needs to know?
50
+
51
+ ## Open Questions
52
+ | Question | Answer | Owner |
53
+ |----------|--------|-------|
54
+ | | | |
55
+
56
+ ## Scope
57
+
58
+ ### MVP (Must Have)
59
+ -
60
+
61
+ ### Nice to Have
62
+ -
63
+
64
+ ### Future
65
+ -
66
+
67
+ ## Timeline
68
+ | Milestone | Target Date |
69
+ |-----------|-------------|
70
+ | Design complete | |
71
+ | Dev complete | |
72
+ | Launch | |
73
+
74
+ ## Risks
75
+ | Risk | Likelihood | Impact | Mitigation |
76
+ |------|------------|--------|------------|
77
+ | | | | |
78
+
79
+ ## Success Criteria
80
+ How do we know this worked?
81
+
82
+ 1.
83
+ 2.
84
+ 3.
@@ -0,0 +1,35 @@
1
+ # [Project Name]
2
+
3
+ ## One-liner
4
+ What is this in one sentence?
5
+
6
+ ## Problem
7
+ What problem are you solving? Who has this problem?
8
+
9
+ ## Solution
10
+ How does your product solve it?
11
+
12
+ ## Status
13
+ - [ ] Brainstorming
14
+ - [ ] Research
15
+ - [ ] Validation
16
+ - [ ] Building
17
+
18
+ ## Key Links
19
+ - [Idea Canvas](./01-brainstorm/idea-canvas.md)
20
+ - [Competitor Research](./02-research/)
21
+ - [User Interviews](./03-validation/)
22
+ - [PRD](./04-build/)
23
+
24
+ ## Quick Stats
25
+ | Metric | Value |
26
+ |--------|-------|
27
+ | Target users | ? |
28
+ | Competitors found | ? |
29
+ | Interviews done | ? |
30
+ | Validation score | ?/10 |
31
+
32
+ ## Next Steps
33
+ 1. ...
34
+ 2. ...
35
+ 3. ...
@@ -0,0 +1,69 @@
1
+ # User Interview
2
+
3
+ **Person:**
4
+ **Date:**
5
+ **Context:** How do you know them? What do they do?
6
+
7
+ ---
8
+
9
+ ## Rules (Mom Test)
10
+ 1. Talk about their life, not your idea
11
+ 2. Ask about the past, not the future
12
+ 3. Talk less, listen more
13
+ 4. Bad news is good news
14
+ 5. Never pitch during the interview
15
+
16
+ ---
17
+
18
+ ## Opening
19
+ > "Tell me about the last time you [did the thing you're solving for]"
20
+
21
+ ## Questions
22
+
23
+ ### Understanding the Problem
24
+ 1. Walk me through how you currently handle [problem]?
25
+ 2. What's the hardest part about [problem]?
26
+ 3. Why is that hard?
27
+ 4. How often does this happen?
28
+ 5. What have you tried to fix it?
29
+ 6. What happened?
30
+
31
+ ### Finding Pain
32
+ 7. What does it cost you? (time, money, stress)
33
+ 8. How do you work around it now?
34
+ 9. If you could wave a magic wand, what would change?
35
+
36
+ ### Validating Importance
37
+ 10. When was the last time this happened?
38
+ 11. What did you do?
39
+ 12. Have you looked for solutions?
40
+ 13. What did you find?
41
+ 14. Why didn't you use them?
42
+
43
+ ---
44
+
45
+ ## Notes
46
+ > Write their actual words, not your interpretation
47
+
48
+ ## Key Quotes
49
+ > Exact quotes that prove pain
50
+
51
+ ## Insights
52
+ > What did you learn?
53
+
54
+ ## Red Flags
55
+ > Anything that suggests they don't really care?
56
+
57
+ ## Follow-ups
58
+ > What should you ask next time?
59
+
60
+ ---
61
+
62
+ ## Score
63
+ | Question | Answer |
64
+ |----------|--------|
65
+ | Real problem? | Yes / Maybe / No |
66
+ | Happens often? | Daily / Weekly / Monthly / Rarely |
67
+ | Currently pays to solve? | Yes ($___) / No |
68
+ | Would pay for solution? | Yes ($___) / Maybe / No |
69
+ | Warm intro potential? | Yes / No |
@@ -0,0 +1,108 @@
1
+ # Validation Checklist
2
+
3
+ **Project:**
4
+ **Date:**
5
+
6
+ ---
7
+
8
+ ## Problem Validation
9
+
10
+ ### Do people have this problem?
11
+ - [ ] Talked to 5+ potential users
12
+ - [ ] Found 3+ people actively trying to solve it
13
+ - [ ] Problem happens at least weekly
14
+ - [ ] Problem costs them real time/money/stress
15
+
16
+ **Evidence:**
17
+
18
+ ### Is the problem big enough?
19
+ - [ ] Market has 10,000+ potential users
20
+ - [ ] They currently spend money on solutions
21
+ - [ ] Problem is getting worse, not better
22
+
23
+ **Evidence:**
24
+
25
+ ---
26
+
27
+ ## Solution Validation
28
+
29
+ ### Does your solution make sense?
30
+ - [ ] Explained it to 5 people and they got it in 30 seconds
31
+ - [ ] At least 3 said "I'd use that"
32
+ - [ ] No one said "that already exists" (or you know why yours is different)
33
+
34
+ **Evidence:**
35
+
36
+ ### Would they pay?
37
+ - [ ] Asked about willingness to pay
38
+ - [ ] Got specific price points
39
+ - [ ] At least 1 person offered to pre-pay or sign up for beta
40
+
41
+ **Evidence:**
42
+
43
+ ---
44
+
45
+ ## Competition Check
46
+
47
+ ### Can you win?
48
+ - [ ] Analyzed 3+ competitors
49
+ - [ ] Found clear gaps in existing solutions
50
+ - [ ] Your approach is meaningfully different
51
+ - [ ] You have some unfair advantage
52
+
53
+ **Evidence:**
54
+
55
+ ---
56
+
57
+ ## Build Check
58
+
59
+ ### Can you actually build this?
60
+ - [ ] Scoped MVP to 2-4 weeks of work
61
+ - [ ] Have the skills (or know who does)
62
+ - [ ] No major technical unknowns
63
+ - [ ] Don't need permission from anyone
64
+
65
+ **Evidence:**
66
+
67
+ ---
68
+
69
+ ## Founder Fit
70
+
71
+ ### Should YOU build this?
72
+ - [ ] You understand the users personally
73
+ - [ ] You'd use this product yourself
74
+ - [ ] You can reach first 10 users without ads
75
+ - [ ] You're excited to work on this for 2+ years
76
+
77
+ **Evidence:**
78
+
79
+ ---
80
+
81
+ ## Scoring
82
+
83
+ | Category | Score (1-5) | Notes |
84
+ |----------|-------------|-------|
85
+ | Problem exists | | |
86
+ | Problem is painful | | |
87
+ | Solution makes sense | | |
88
+ | Would pay | | |
89
+ | Can beat competition | | |
90
+ | Can build it | | |
91
+ | Founder fit | | |
92
+
93
+ **Total:** /35
94
+
95
+ ### Decision Guide
96
+ - 28-35: Strong signal. Build it.
97
+ - 21-27: Promising. Do more validation.
98
+ - 14-20: Weak. Rethink the idea or pivot.
99
+ - Below 14: Kill it. Move on.
100
+
101
+ ---
102
+
103
+ ## Decision
104
+
105
+ - [ ] Build MVP
106
+ - [ ] More validation needed on: ___________
107
+ - [ ] Pivot to: ___________
108
+ - [ ] Kill and move on