startup-ideation-kit 1.0.0

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Mohamed Ameen
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,105 @@
1
+ # StartupKit
2
+
3
+ An interactive startup ideation toolkit powered by Claude Code skills. Walk through a structured brainstorming process to go from "I want to start a business" to a validated, scored business idea with a complete offer, pricing model, and go-to-market plan.
4
+
5
+ ## What This Is
6
+
7
+ StartupKit is a set of conversational AI skills that guide you through the entire business ideation process. Instead of staring at a blank page wondering what business to start, you work through a proven sequence of frameworks -- answering questions, scoring ideas, and building your offer step by step.
8
+
9
+ Each phase produces a concrete markdown artifact (worksheets, scorecards, one-pagers) that you keep, revisit, and refine.
10
+
11
+ ## Built On The Shoulders Of Giants
12
+
13
+ This toolkit synthesizes frameworks and methodologies from:
14
+
15
+ - **Alex Hormozi** -- *$100M Offers* (Grand Slam Offer framework, Value Equation, offer enhancement through Scarcity/Urgency/Bonuses/Guarantees/Naming), *$100M Money Models* (Attraction/Upsell/Downsell/Continuity offer types), *$100M Leads* (lead generation), and the *$100M Playbook* (Lead Nurture: the 4 Pillars of Availability, Speed, Personalization, and Volume)
16
+ - **Ali Abdaal** -- The Diverge/Converge/Emerge creativity process, the Holy Trinity of business ideas (Person + Problem + Product), Craft Skills auditing, the Six P's offer framework (Person/Problem/Promise/Plan/Product/Price), the 5-phase business growth roadmap, and validation through discovery calls
17
+ - **Taki Moore** -- The 3-question niche scoring framework (Do I like them? Can I help them? Will they pay?)
18
+ - **Additional influences** -- Rob Fitzpatrick's *The Mom Test* (customer interview principles), MJ DeMarco's *The Millionaire Fastlane* (wealth-building lanes), James Altucher's ideation techniques, and Shapiro's 4 viable business model categories
19
+
20
+ All credit for the underlying business frameworks goes to these creators. StartupKit simply packages their wisdom into an interactive workflow you can use with Claude.
21
+
22
+ ## The 8 Phases
23
+
24
+ | # | Phase | Command | What You Do |
25
+ |---|-------|---------|-------------|
26
+ | 0 | Start | `/startupkit` | Create or continue a brainstorming session |
27
+ | 1 | Diverge | `/sk-diverge` | Brainstorm skills, passions, and 50+ problems |
28
+ | 2 | Niche | `/sk-niche` | Score and rank niche ideas (person + problem) |
29
+ | 3 | Offer | `/sk-offer` | Build a Grand Slam Offer with the Value Equation |
30
+ | 4 | Validate | `/sk-validate` | Plan discovery calls, outreach scripts, and MVP |
31
+ | 5 | Money | `/sk-money` | Design pricing and your full money model |
32
+ | 6 | Leads | `/sk-leads` | Plan lead channels and nurture sequences |
33
+ | 7 | Skills | `/sk-skills` | Match AI-powered skills to your business |
34
+ | 8 | Export | `/sk-export` | Generate a clean one-pager summary |
35
+
36
+ You don't have to follow them in order. Jump to any phase, revisit previous ones, or skip what doesn't apply.
37
+
38
+ ## Quick Start
39
+
40
+ ### Install via npm
41
+
42
+ ```bash
43
+ npx startup-ideation-kit init
44
+ ```
45
+
46
+ This installs the skills into `.claude/skills/` and templates into `workspace/templates/` in your current directory. No cloning required.
47
+
48
+ To remove:
49
+
50
+ ```bash
51
+ npx startup-ideation-kit uninstall
52
+ ```
53
+
54
+ ### Or clone the repo
55
+
56
+ ```bash
57
+ git clone https://github.com/mohamedameen-io/StartupKit.git
58
+ cd StartupKit
59
+ ```
60
+
61
+ ### Then brainstorm
62
+
63
+ 1. Open Claude Code in the directory
64
+ 2. Run `/startupkit` to create a new brainstorming session
65
+ 3. Work through the phases at your own pace -- Claude guides you with questions and frameworks
66
+ 4. Each phase saves its output as a structured markdown file in `workspace/sessions/your-session/`
67
+ 5. When you're done, run `/sk-export` to get a clean one-pager
68
+
69
+ ### What You Get At The End
70
+
71
+ A `workspace/sessions/your-session/` folder containing:
72
+
73
+ ```
74
+ 00-session.md # Progress tracker
75
+ 01-diverge.md # Your skills, passions, and problems list
76
+ 02-niches.md # Scored and ranked niche ideas
77
+ 03-offer.md # Complete Grand Slam Offer
78
+ 04-validation.md # Validation plan with scripts and milestones
79
+ 05-money-model.md # Pricing, offer ladder, and revenue projections
80
+ 06-lead-strategy.md # Lead channels and nurture sequences
81
+ 07-skills-match.md # AI skill recommendations
82
+ 08-one-pager.md # Final exportable summary
83
+ ```
84
+
85
+ ## Project Structure
86
+
87
+ ```
88
+ StartupKit/
89
+ .claude/skills/ # Claude Code skills (the interactive prompts)
90
+ workspace/
91
+ templates/ # Blank worksheet templates for each phase
92
+ sessions/ # Your brainstorming sessions (gitignored)
93
+ resources/ # Reference materials
94
+ ```
95
+
96
+ ## Requirements
97
+
98
+ - [Claude Code](https://claude.ai/code) (CLI, desktop app, or IDE extension)
99
+ - Node.js (for `npx startup-ideation-kit init` only -- not needed if you clone the repo)
100
+
101
+ ## License
102
+
103
+ MIT License. See [LICENSE](LICENSE) for details.
104
+
105
+ The skill definitions and templates in this repository are open source. The business frameworks referenced belong to their respective creators (Alex Hormozi, Ali Abdaal, Taki Moore, etc.) and are used here for educational purposes.
package/bin/cli.js ADDED
@@ -0,0 +1,156 @@
1
+ #!/usr/bin/env node
2
+
3
+ const fs = require("fs");
4
+ const path = require("path");
5
+
6
+ const SKILLS = [
7
+ "startupkit",
8
+ "sk-diverge",
9
+ "sk-niche",
10
+ "sk-offer",
11
+ "sk-validate",
12
+ "sk-money",
13
+ "sk-leads",
14
+ "sk-skills",
15
+ "sk-export",
16
+ ];
17
+
18
+ const TEMPLATES = [
19
+ "session-template.md",
20
+ "diverge-template.md",
21
+ "niche-template.md",
22
+ "offer-template.md",
23
+ "validation-template.md",
24
+ "money-model-template.md",
25
+ "lead-strategy-template.md",
26
+ "skills-match-template.md",
27
+ "one-pager-template.md",
28
+ ];
29
+
30
+ const command = process.argv[2];
31
+
32
+ function printUsage() {
33
+ console.log(`
34
+ startupkit - Interactive startup ideation kit for Claude Code
35
+
36
+ Usage:
37
+ npx startupkit init Install skills and templates into current directory
38
+ npx startupkit uninstall Remove installed skills and templates
39
+ npx startupkit help Show this help message
40
+
41
+ After installing, open Claude Code and run /startupkit to begin.
42
+ `);
43
+ }
44
+
45
+ function copyDir(src, dest) {
46
+ fs.mkdirSync(dest, { recursive: true });
47
+ const entries = fs.readdirSync(src, { withFileTypes: true });
48
+ for (const entry of entries) {
49
+ const srcPath = path.join(src, entry.name);
50
+ const destPath = path.join(dest, entry.name);
51
+ if (entry.isDirectory()) {
52
+ copyDir(srcPath, destPath);
53
+ } else {
54
+ fs.copyFileSync(srcPath, destPath);
55
+ }
56
+ }
57
+ }
58
+
59
+ function init() {
60
+ const cwd = process.cwd();
61
+ const pkgRoot = path.resolve(__dirname, "..");
62
+ const skillsSrc = path.join(pkgRoot, "skills");
63
+ const templatesSrc = path.join(pkgRoot, "templates");
64
+
65
+ let installed = 0;
66
+ let skipped = 0;
67
+
68
+ // Install skills
69
+ for (const skill of SKILLS) {
70
+ const src = path.join(skillsSrc, skill);
71
+ const dest = path.join(cwd, ".claude", "skills", skill);
72
+ if (fs.existsSync(path.join(dest, "SKILL.md"))) {
73
+ console.log(` skip .claude/skills/${skill}/SKILL.md (already exists)`);
74
+ skipped++;
75
+ } else {
76
+ copyDir(src, dest);
77
+ console.log(` add .claude/skills/${skill}/SKILL.md`);
78
+ installed++;
79
+ }
80
+ }
81
+
82
+ // Install templates
83
+ const templatesDest = path.join(cwd, "workspace", "templates");
84
+ fs.mkdirSync(templatesDest, { recursive: true });
85
+ for (const template of TEMPLATES) {
86
+ const src = path.join(templatesSrc, template);
87
+ const dest = path.join(templatesDest, template);
88
+ if (fs.existsSync(dest)) {
89
+ console.log(` skip workspace/templates/${template} (already exists)`);
90
+ skipped++;
91
+ } else {
92
+ fs.copyFileSync(src, dest);
93
+ console.log(` add workspace/templates/${template}`);
94
+ installed++;
95
+ }
96
+ }
97
+
98
+ // Create sessions directory
99
+ const sessionsDir = path.join(cwd, "workspace", "sessions");
100
+ fs.mkdirSync(sessionsDir, { recursive: true });
101
+
102
+ console.log(`
103
+ Done! ${installed} files installed, ${skipped} skipped.
104
+
105
+ Next steps:
106
+ 1. Open Claude Code in this directory
107
+ 2. Run /startupkit to create a new brainstorming session
108
+ 3. Follow the phases: /sk-diverge -> /sk-niche -> /sk-offer -> ...
109
+ `);
110
+ }
111
+
112
+ function uninstall() {
113
+ const cwd = process.cwd();
114
+ let removed = 0;
115
+
116
+ for (const skill of SKILLS) {
117
+ const dir = path.join(cwd, ".claude", "skills", skill);
118
+ if (fs.existsSync(dir)) {
119
+ fs.rmSync(dir, { recursive: true });
120
+ console.log(` remove .claude/skills/${skill}/`);
121
+ removed++;
122
+ }
123
+ }
124
+
125
+ for (const template of TEMPLATES) {
126
+ const file = path.join(cwd, "workspace", "templates", template);
127
+ if (fs.existsSync(file)) {
128
+ fs.unlinkSync(file);
129
+ console.log(` remove workspace/templates/${template}`);
130
+ removed++;
131
+ }
132
+ }
133
+
134
+ console.log(`\n Done! ${removed} files removed.\n`);
135
+ }
136
+
137
+ switch (command) {
138
+ case "init":
139
+ console.log("\n Installing StartupKit skills and templates...\n");
140
+ init();
141
+ break;
142
+ case "uninstall":
143
+ console.log("\n Removing StartupKit skills and templates...\n");
144
+ uninstall();
145
+ break;
146
+ case "help":
147
+ case "--help":
148
+ case "-h":
149
+ case undefined:
150
+ printUsage();
151
+ break;
152
+ default:
153
+ console.log(`\n Unknown command: ${command}`);
154
+ printUsage();
155
+ process.exit(1);
156
+ }
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "startup-ideation-kit",
3
+ "version": "1.0.0",
4
+ "description": "Interactive startup ideation kit powered by Claude Code skills. Brainstorm, score, and validate business ideas using frameworks from $100M Offers, $100M Money Models, and more.",
5
+ "bin": {
6
+ "startupkit": "./bin/cli.js"
7
+ },
8
+ "keywords": [
9
+ "startup",
10
+ "ideation",
11
+ "claude-code",
12
+ "business",
13
+ "brainstorming",
14
+ "hormozi",
15
+ "offers"
16
+ ],
17
+ "author": "Mohamed Ameen",
18
+ "license": "MIT",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/mohamedameen-io/StartupKit.git"
22
+ },
23
+ "files": [
24
+ "bin/",
25
+ "skills/",
26
+ "templates/"
27
+ ]
28
+ }
@@ -0,0 +1,100 @@
1
+ ---
2
+ name: sk-diverge
3
+ description: "Phase 1: Divergent thinking. Brainstorm craft skills, passions, problems, and raw niche ideas. Goal: quantity over quality -- generate 20-50+ ideas."
4
+ ---
5
+
6
+ # Phase 1: Divergent Thinking
7
+
8
+ You are guiding the user through a divergent brainstorming session. The goal is QUANTITY over quality. No judging, no filtering, no "that won't work." We are thinking divergently.
9
+
10
+ ## Setup
11
+
12
+ 1. Identify the active session:
13
+ - Check `workspace/sessions/` for folders
14
+ - If exactly one exists, use it
15
+ - If multiple exist, ask which session to use
16
+ - If none exist, tell the user to run `/startupkit` first to create a session
17
+ 2. Read `workspace/templates/diverge-template.md` if it exists, for output structure reference
18
+ 3. Confirm with the user: "Ready to brainstorm? This will take 15-30 minutes. I'll ask questions one block at a time."
19
+
20
+ ## Interactive Flow
21
+
22
+ Guide the user through 5 blocks. Ask one block at a time. Wait for their response before moving to the next. Push for volume at every step.
23
+
24
+ ### Block A -- Craft Skills
25
+
26
+ Ask these 4 questions one at a time, collecting responses:
27
+
28
+ 1. "What does your employer currently pay you to do? List every skill, even the boring ones."
29
+ 2. "What do people come to you for help with? Think friends, family, colleagues."
30
+ 3. "What problems have you solved in your own life that others still struggle with?"
31
+ 4. "Look at your resume or LinkedIn -- what are you genuinely good at?"
32
+
33
+ After collecting answers, summarize the skills list. Push for at least 5-10 distinct skills. If the user gives fewer, prompt: "What else? Think about soft skills, technical skills, things you take for granted."
34
+
35
+ ### Block B -- Passions
36
+
37
+ Ask: "What do you do for fun, even when nobody's paying? What topics do you read about, watch videos about, or talk about at dinner parties?"
38
+
39
+ Collect the list. No minimum, but encourage breadth.
40
+
41
+ ### Block C -- Skills to Learn
42
+
43
+ Ask: "If time and money weren't constraints, what would you learn? What courses would you take? What skills do you wish you had?"
44
+
45
+ Collect the list.
46
+
47
+ ### Block D -- Problems List
48
+
49
+ This is the big one. Use these 5 problem-finding questions, asking one at a time:
50
+
51
+ 1. "What tasks in your life or work are annoying and take 5x too long?"
52
+ 2. "What expensive thing do people want but can't afford? Is there a cheaper version possible?"
53
+ 3. "What works in another country or market but doesn't exist where you are?"
54
+ 4. "What can you do NOW that you couldn't do a year ago? Think AI tools, new platforms, market shifts."
55
+ 5. "What do people around you constantly complain about?"
56
+
57
+ After each question, collect responses. Then push for more:
58
+
59
+ > "James Altucher says: 'If you can't think of 10 ideas, think of 20 instead.' The point is to push past the obvious. Keep going. What else?"
60
+
61
+ Target: 20-50 problems minimum. Keep asking "what else?" until the user runs dry.
62
+
63
+ After collecting all problems, **categorize each** using Shapiro's 4 viable business models:
64
+ - **5x Easier**: Make an annoying task 5x easier
65
+ - **Cheaper Version**: Less expensive version of something people want
66
+ - **International Copy**: Copy of something that works in another country/market
67
+ - **Product-Led Growth**: Network effect or viral loop built in
68
+
69
+ A problem can fit multiple categories. Some may fit none -- that's fine, still keep them.
70
+
71
+ ### Block E -- Cross-Pollinate
72
+
73
+ Now review the skills (Blocks A-C) and problems (Block D) together. Your job:
74
+
75
+ 1. Look for interesting combinations of skill + problem
76
+ 2. Suggest 10-15 possible niche ideas that combine what the user is good at / passionate about with real problems
77
+ 3. Format each as: "[Skill/Passion] + [Problem] = [Possible Niche Idea]"
78
+ 4. Ask the user: "Which of these combinations resonate? Star your top 5-10."
79
+
80
+ ## Key Principle
81
+
82
+ **NO JUDGING at this stage.** If the user says "that's a dumb idea," redirect: "We're not filtering yet -- that's Phase 2. Right now, more is better. Write it down." Encourage wild, weird, ambitious ideas alongside practical ones.
83
+
84
+ ## Save Output
85
+
86
+ After all 5 blocks are complete:
87
+
88
+ 1. Write the complete brainstorm to `workspace/sessions/{name}/01-diverge.md` with this structure:
89
+ - Header with session name and date
90
+ - Section for each block (A through E) with all collected responses
91
+ - Problems categorized by Shapiro's 4 models
92
+ - Cross-pollination combinations with user's starred favorites marked
93
+ - Total counts: X skills, Y passions, Z problems, W niche ideas
94
+
95
+ 2. Update `workspace/sessions/{name}/00-session.md`:
96
+ - Change Phase 1 Diverge status from `[ ] Not Started` to `[x] Complete`
97
+ - Set Active Phase to "Phase 2: Niche"
98
+ - Set Next Recommended to "Phase 2: Niche"
99
+
100
+ 3. Tell the user: "Diverge phase complete! You generated X skills, Y problems, and W niche ideas. When you're ready, run `/sk-niche` to score and rank your best ideas."
@@ -0,0 +1,92 @@
1
+ ---
2
+ name: sk-export
3
+ description: "Export your brainstorming session as a clean, shareable one-pager summarizing all phases."
4
+ ---
5
+
6
+ # Phase 8: Session Export
7
+
8
+ You are the session synthesizer. Your job is to read all phase outputs from a brainstorming session and produce a clean, shareable one-pager that captures the key decisions and plans.
9
+
10
+ ## Setup
11
+
12
+ 1. Ask the user for their session name.
13
+ 2. Read ALL session files from `workspace/sessions/{name}/`:
14
+ - `00-session.md` -- session metadata and progress
15
+ - `01-diverge.md` -- skills, passions, problems list
16
+ - `02-niches.md` -- scored niche ideas and Gold selection
17
+ - `03-offer.md` -- Grand Slam Offer details
18
+ - `04-validation.md` -- validation plan and scripts
19
+ - `05-money-model.md` -- pricing and revenue model
20
+ - `06-lead-strategy.md` -- lead channels and nurture plan
21
+ - `07-skills-match.md` -- AI skill recommendations
22
+ 3. For any files that don't exist, note the gap but proceed with what's available. Not every session completes all phases.
23
+
24
+ ## Synthesis Rules
25
+
26
+ - **Brevity over completeness**: The one-pager should be scannable in under 2 minutes.
27
+ - **Decisions over process**: Show what was decided, not how the decision was reached.
28
+ - **Numbers over narrative**: Use specific figures, scores, and targets wherever possible.
29
+ - **Actionable over abstract**: Every section should answer "what do I do next?"
30
+
31
+ ## One-Pager Structure
32
+
33
+ Generate the following document:
34
+
35
+ ```markdown
36
+ # [Business Name] -- Startup One-Pager
37
+ > Generated: [date] | Session: [name]
38
+
39
+ ## The Niche
40
+ - **Person:** [dream client avatar -- who they are, what they do]
41
+ - **Problem:** [core pain in one sentence]
42
+ - **Promise:** [<10 word transformation statement]
43
+
44
+ ## The Grand Slam Offer
45
+ - **Name:** "[Offer Name]"
46
+ - **Product:** [what they get -- key deliverables]
47
+ - **Price:** $[amount]
48
+ - **Value Equation Score:** [X]/10
49
+ - **Guarantee:** [type and terms]
50
+ - **Key Bonuses:** [list the top 2-3 bonuses]
51
+
52
+ ## Revenue Model
53
+ - **Monthly target:** $[X] from [Y] clients
54
+ - **Customer journey:** Attraction -> Core -> Upsell -> Continuity
55
+ - **Year 1 LTV per client:** $[X]
56
+ - **Year 1 projected revenue:** $[X]
57
+
58
+ ## Validation Plan
59
+ - **Discovery call frame:** [Market Research / Free Coaching / Sales Call]
60
+ - **First 10 calls target:** [who specifically, by when]
61
+ - **MVP:** [what to build, timeline]
62
+ - **Unfair advantages:** [top 2 strongest advantages]
63
+
64
+ ## Lead Strategy
65
+ - **Primary channel:** [channel]
66
+ - **4 Pillars score:** Availability [X] | Speed [X] | Personal [X] | Volume [X]
67
+ - **First action this week:** [single most important next step]
68
+
69
+ ## AI Skills Integration
70
+ - **Core:** [skill name and how it integrates, or N/A]
71
+ - **Bonus:** [skill name and how it integrates, or N/A]
72
+ - **Upsell:** [skill name and how it integrates, or N/A]
73
+
74
+ ---
75
+ *Generated with StartupKit | Frameworks: $100M Offers, $100M Money Models, $100M Playbook*
76
+ ```
77
+
78
+ ## Handling Incomplete Sessions
79
+
80
+ If some phases are missing:
81
+ - Include every section that has data.
82
+ - For missing sections, show: `**[Section]:** Not yet completed -- run /sk-[phase] to fill in.`
83
+ - At the bottom, list remaining phases: "To complete this one-pager, run: /sk-validate, /sk-money"
84
+
85
+ ## Output
86
+
87
+ 1. Save the one-pager to `workspace/sessions/{name}/08-one-pager.md`.
88
+ 2. Display the full one-pager in the conversation so the user can review it immediately.
89
+ 3. Update `workspace/sessions/{name}/00-session.md`:
90
+ - Change Phase 8 Export status from `[ ] Not Started` to `[x] Complete`
91
+ - Set Session Status to "Complete" (if all phases are done) or "Exported (partial)" if some phases are missing
92
+ 4. Tell the user: "Your one-pager is ready! It's saved at `workspace/sessions/{name}/08-one-pager.md`. You can share this with co-founders, mentors, or advisors for feedback."