startup-ideation-kit 2.0.0 → 2.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.
package/README.md CHANGED
@@ -50,11 +50,11 @@ You don't have to follow them in order. Jump to any phase, revisit previous ones
50
50
  npx skills add mohamedameen-io/StartupKit
51
51
  ```
52
52
 
53
- That's it. The skills are installed into your project and ready to use.
53
+ That's it. The skills are installed globally (`~/.claude/skills/`) and available in any Claude Code session.
54
54
 
55
55
  ### Then brainstorm
56
56
 
57
- 1. Open Claude Code in your project directory
57
+ 1. Open Claude Code in any directory
58
58
  2. Run `/startupkit` to create a new brainstorming session
59
59
  3. Work through the phases at your own pace -- Claude guides you with questions and frameworks
60
60
  4. Each phase saves its output as a structured markdown file in `workspace/sessions/your-session/`
package/bin/cli.js CHANGED
@@ -1,6 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  const fs = require("fs");
4
+ const os = require("os");
4
5
  const path = require("path");
5
6
 
6
7
  const SKILLS = [
@@ -40,10 +41,13 @@ function printUsage() {
40
41
  startupkit - Interactive startup ideation kit for Claude Code
41
42
 
42
43
  Usage:
43
- npx startupkit init Install skills and templates into current directory
44
+ npx startupkit init Install skills globally and templates locally
44
45
  npx startupkit uninstall Remove installed skills and templates
45
46
  npx startupkit help Show this help message
46
47
 
48
+ Skills and templates are installed globally (~/.claude/skills/) so they work
49
+ in any project. Session output is saved in the current working directory.
50
+
47
51
  After installing, open Claude Code and run /startupkit to begin.
48
52
  `);
49
53
  }
@@ -64,6 +68,7 @@ function copyDir(src, dest) {
64
68
 
65
69
  function init() {
66
70
  const cwd = process.cwd();
71
+ const home = os.homedir();
67
72
  const pkgRoot = path.resolve(__dirname, "..");
68
73
  const skillsSrc = path.join(pkgRoot, "skills");
69
74
  const templatesSrc = path.join(pkgRoot, "templates");
@@ -71,45 +76,45 @@ function init() {
71
76
  let installed = 0;
72
77
  let skipped = 0;
73
78
 
74
- // Install skills
79
+ // Install skills globally (~/.claude/skills/)
80
+ const skillsDest = path.join(home, ".claude", "skills");
75
81
  for (const skill of SKILLS) {
76
82
  const src = path.join(skillsSrc, skill);
77
- const dest = path.join(cwd, ".claude", "skills", skill);
83
+ const dest = path.join(skillsDest, skill);
78
84
  if (fs.existsSync(path.join(dest, "SKILL.md"))) {
79
- console.log(` skip .claude/skills/${skill}/SKILL.md (already exists)`);
85
+ console.log(` skip ~/.claude/skills/${skill}/SKILL.md (already exists)`);
80
86
  skipped++;
81
87
  } else {
82
88
  copyDir(src, dest);
83
- console.log(` add .claude/skills/${skill}/SKILL.md`);
89
+ console.log(` add ~/.claude/skills/${skill}/SKILL.md`);
84
90
  installed++;
85
91
  }
86
92
  }
87
93
 
88
- // Install templates
89
- const templatesDest = path.join(cwd, "workspace", "templates");
94
+ // Install templates into startupkit skill directory
95
+ const templatesDest = path.join(skillsDest, "startupkit", "templates");
90
96
  fs.mkdirSync(templatesDest, { recursive: true });
91
97
  for (const template of TEMPLATES) {
92
98
  const src = path.join(templatesSrc, template);
93
99
  const dest = path.join(templatesDest, template);
94
100
  if (fs.existsSync(dest)) {
95
- console.log(` skip workspace/templates/${template} (already exists)`);
101
+ console.log(` skip ~/.claude/skills/startupkit/templates/${template} (already exists)`);
96
102
  skipped++;
97
103
  } else {
98
104
  fs.copyFileSync(src, dest);
99
- console.log(` add workspace/templates/${template}`);
105
+ console.log(` add ~/.claude/skills/startupkit/templates/${template}`);
100
106
  installed++;
101
107
  }
102
108
  }
103
109
 
104
- // Create sessions directory
105
- const sessionsDir = path.join(cwd, "workspace", "sessions");
106
- fs.mkdirSync(sessionsDir, { recursive: true });
107
-
108
110
  console.log(`
109
111
  Done! ${installed} files installed, ${skipped} skipped.
110
112
 
113
+ Skills and templates installed globally to ~/.claude/skills/.
114
+ Available in any Claude Code session.
115
+
111
116
  Next steps:
112
- 1. Open Claude Code in this directory
117
+ 1. Open Claude Code in any directory
113
118
  2. Run /startupkit to create a new brainstorming session
114
119
  3. Follow the phases: /sk-diverge -> /sk-niche -> /sk-competitors -> ...
115
120
  `);
@@ -117,24 +122,25 @@ function init() {
117
122
 
118
123
  function uninstall() {
119
124
  const cwd = process.cwd();
125
+ const home = os.homedir();
120
126
  let removed = 0;
121
127
 
128
+ // Remove global skills
122
129
  for (const skill of SKILLS) {
123
- const dir = path.join(cwd, ".claude", "skills", skill);
130
+ const dir = path.join(home, ".claude", "skills", skill);
124
131
  if (fs.existsSync(dir)) {
125
132
  fs.rmSync(dir, { recursive: true });
126
- console.log(` remove .claude/skills/${skill}/`);
133
+ console.log(` remove ~/.claude/skills/${skill}/`);
127
134
  removed++;
128
135
  }
129
136
  }
130
137
 
131
- for (const template of TEMPLATES) {
132
- const file = path.join(cwd, "workspace", "templates", template);
133
- if (fs.existsSync(file)) {
134
- fs.unlinkSync(file);
135
- console.log(` remove workspace/templates/${template}`);
136
- removed++;
137
- }
138
+ // Remove templates from startupkit skill directory
139
+ const templateDir = path.join(home, ".claude", "skills", "startupkit", "templates");
140
+ if (fs.existsSync(templateDir)) {
141
+ fs.rmSync(templateDir, { recursive: true });
142
+ console.log(` remove ~/.claude/skills/startupkit/templates/`);
143
+ removed++;
138
144
  }
139
145
 
140
146
  console.log(`\n Done! ${removed} files removed.\n`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "startup-ideation-kit",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Interactive 11-phase startup ideation kit powered by Claude Code skills. Brainstorm, score, research competitors, position, build offers, validate, model revenue, plan leads, match AI skills, pitch investors, and export -- using frameworks from $100M Offers, April Dunford, and more.",
5
5
  "bin": {
6
6
  "startupkit": "./bin/cli.js"
@@ -26,7 +26,7 @@ You are the entry point for the Startup Ideation Kit. Your job is to manage brai
26
26
  ### Creating a new session:
27
27
  1. Ask for a session name (kebab-case, e.g., `ai-coaching-biz`)
28
28
  2. Create the folder `workspace/sessions/{name}/`
29
- 3. Copy `workspace/templates/session-template.md` to `workspace/sessions/{name}/00-session.md`
29
+ 3. Copy the `templates/session-template.md` file (located in this skill's directory) to `workspace/sessions/{name}/00-session.md`
30
30
  4. Fill in the session name and today's date
31
31
  5. Show the progress dashboard
32
32
 
@@ -0,0 +1,43 @@
1
+ # Phase 3: Competitive Research
2
+
3
+ > **Session:** [session-name]
4
+ > **Date:** [YYYY-MM-DD]
5
+ > **Research Depth:** [Light / Standard / Deep]
6
+ > **Competitors Profiled:** [X]
7
+
8
+ ---
9
+
10
+ ## Executive Summary
11
+
12
+ [5-sentence competitive landscape overview]
13
+
14
+ ## Key Competitors
15
+
16
+ | Competitor | Stage | Strength | Weakness | Threat |
17
+ |-----------|-------|----------|----------|--------|
18
+ | [name] | [early/growth/mature] | [key strength] | [key weakness] | [H/M/L] |
19
+
20
+ ## Strategic Opportunity
21
+
22
+ [Single strongest opportunity with evidence]
23
+
24
+ ## Strategic Risk
25
+
26
+ [Single biggest risk with evidence]
27
+
28
+ ## Pricing Landscape Summary
29
+
30
+ - **Market price range:** $[low] -- $[high]
31
+ - **Dominant value metric:** [per seat / per usage / flat]
32
+ - **Pricing whitespace:** [where to position]
33
+
34
+ ## Full Deliverables
35
+
36
+ - `03-competitors/competitors-report.md` -- Full strategic report
37
+ - `03-competitors/competitive-matrix.md` -- Feature comparison
38
+ - `03-competitors/pricing-landscape.md` -- Pricing analysis
39
+ - `03-competitors/battle-cards/` -- Per-competitor battle cards
40
+
41
+ ---
42
+
43
+ *Generated with StartupKit Phase 3 (sk-competitors)*
@@ -0,0 +1,179 @@
1
+ # Phase 1: Diverge -- Divergent Thinking
2
+
3
+ > **Goal:** Generate a massive pool of raw material -- skills, passions, problems, and early niche ideas. Quantity over quality. Aim for 50+ problems minimum.
4
+ >
5
+ > **Source frameworks:** Craft Skills audit, Shapiro's 4 Categories, 50+ Problems List
6
+
7
+ ---
8
+
9
+ ## 1. Craft Skills
10
+
11
+ > **What you already get paid to do or are genuinely good at.**
12
+ > Ask yourself:
13
+ > - "What does my employer currently pay me to do?"
14
+ > - "What do people come to me for help with?"
15
+ > - "What problems have I solved in my own life?"
16
+ > - "What's on my resume that I'm genuinely good at?"
17
+
18
+ | # | Skill | Years of Experience | Confidence (H/M/L) |
19
+ |---|-------|--------------------:|:-------------------:|
20
+ | 1 | [placeholder] | [placeholder] | [H/M/L] |
21
+ | 2 | [placeholder] | [placeholder] | [H/M/L] |
22
+ | 3 | [placeholder] | [placeholder] | [H/M/L] |
23
+ | 4 | [placeholder] | [placeholder] | [H/M/L] |
24
+ | 5 | [placeholder] | [placeholder] | [H/M/L] |
25
+ | 6 | [placeholder] | [placeholder] | [H/M/L] |
26
+ | 7 | [placeholder] | [placeholder] | [H/M/L] |
27
+ | 8 | [placeholder] | [placeholder] | [H/M/L] |
28
+ | 9 | [placeholder] | [placeholder] | [H/M/L] |
29
+ | 10 | [placeholder] | [placeholder] | [H/M/L] |
30
+
31
+ ---
32
+
33
+ ## 2. Passions
34
+
35
+ > **What you do for fun even when nobody's paying.** These may overlap with skills or be completely separate. Both are fine.
36
+
37
+ 1. [placeholder]
38
+ 2. [placeholder]
39
+ 3. [placeholder]
40
+ 4. [placeholder]
41
+ 5. [placeholder]
42
+
43
+ ---
44
+
45
+ ## 3. Skills to Learn
46
+
47
+ > **What would you learn if time and money weren't constraints?** These represent future leverage -- things that excite you enough to invest in.
48
+
49
+ 1. [placeholder]
50
+ 2. [placeholder]
51
+ 3. [placeholder]
52
+ 4. [placeholder]
53
+ 5. [placeholder]
54
+
55
+ ---
56
+
57
+ ## 4. Problems List (Target: 50+)
58
+
59
+ > **The raw fuel for your business ideas.** Use the prompts below to push past the obvious. If you can't think of 10, force yourself to think of 20 -- the best ideas often come after you exhaust the obvious ones.
60
+ >
61
+ > **Prompts to generate problems:**
62
+ > - "What tasks in my life/work are annoying and take 5x too long?"
63
+ > - "What expensive thing do people want but can't afford?"
64
+ > - "What works in another country/market but doesn't exist here?"
65
+ > - "What can I do NOW that I couldn't do a year ago?" (AI/timing angle)
66
+ > - "What do people around me constantly complain about?"
67
+ > - "What frustrates me every single week?"
68
+ > - "What would I fix if I had a magic wand?"
69
+
70
+ | # | Problem | Who Has It? | How Painful? (1-10) | Category (see below) |
71
+ |---|---------|-------------|:-------------------:|:--------------------:|
72
+ | 1 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
73
+ | 2 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
74
+ | 3 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
75
+ | 4 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
76
+ | 5 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
77
+ | 6 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
78
+ | 7 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
79
+ | 8 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
80
+ | 9 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
81
+ | 10 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
82
+ | 11 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
83
+ | 12 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
84
+ | 13 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
85
+ | 14 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
86
+ | 15 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
87
+ | 16 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
88
+ | 17 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
89
+ | 18 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
90
+ | 19 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
91
+ | 20 | [placeholder] | [placeholder] | [1-10] | [A/B/C/D] |
92
+
93
+ *(Keep adding rows until you hit 50+. The best ideas come after row 30.)*
94
+
95
+ ---
96
+
97
+ ## 5. Shapiro's 4 Categories
98
+
99
+ > **Every viable business falls into one of these four patterns.** Use these as lenses to categorize your problems and spot opportunities you might have missed.
100
+
101
+ ### Category A: Make an Annoying Task 5x Easier
102
+ > Something people already do but hate doing. Your product removes the friction.
103
+ > *Example: TurboTax made filing taxes 5x easier than doing it by hand.*
104
+
105
+ - [ ] Have I listed problems where people waste hours on tedious tasks?
106
+ - [ ] Could any of my skills automate or simplify these?
107
+
108
+ Problems that fit: [placeholder]
109
+
110
+ ### Category B: Less Expensive Version of Something People Want
111
+ > A market exists, people pay premium prices, but a large segment is priced out.
112
+ > *Example: Generic medications, budget airlines, Canva vs. hiring a designer.*
113
+
114
+ - [ ] Have I listed expensive services/products that many people want but can't afford?
115
+ - [ ] Could I deliver 80% of the value at 20% of the price?
116
+
117
+ Problems that fit: [placeholder]
118
+
119
+ ### Category C: International Copy of Existing Winner
120
+ > Something that works in one country/market but hasn't been brought to yours yet.
121
+ > *Example: Rocket Internet built local copies of successful US startups across emerging markets.*
122
+
123
+ - [ ] Have I looked at what's working in other countries/industries?
124
+ - [ ] Is there a model I could adapt for my market?
125
+
126
+ Problems that fit: [placeholder]
127
+
128
+ ### Category D: Product-Led Growth / Network Effects
129
+ > The product gets better as more people use it, creating a moat.
130
+ > *Example: Slack, Notion, Figma -- each new user makes the product more valuable for existing users.*
131
+
132
+ - [ ] Are there problems where a community or network would amplify the solution?
133
+ - [ ] Could users invite other users naturally?
134
+
135
+ Problems that fit: [placeholder]
136
+
137
+ ### Category Coverage Check
138
+
139
+ - [ ] I have at least 3 problems in Category A
140
+ - [ ] I have at least 3 problems in Category B
141
+ - [ ] I have at least 2 problems in Category C
142
+ - [ ] I have at least 2 problems in Category D
143
+ - [ ] I have considered AI-timing angles (things possible now that weren't 12 months ago)
144
+
145
+ ---
146
+
147
+ ## 6. Raw Niche Ideas (Skills x Problems Combos)
148
+
149
+ > **Cross-pollinate your skills with your problems.** Pick your top 5-8 skills and your most painful problems, then ask: "Could I use [skill] to solve [problem] for [person]?" Don't judge yet -- just generate.
150
+
151
+ | # | Skill Used | Problem Solved | For Whom? | Quick Gut Check (Excited? Y/N) |
152
+ |---|-----------|----------------|-----------|:------------------------------:|
153
+ | 1 | [placeholder] | [placeholder] | [placeholder] | [Y/N] |
154
+ | 2 | [placeholder] | [placeholder] | [placeholder] | [Y/N] |
155
+ | 3 | [placeholder] | [placeholder] | [placeholder] | [Y/N] |
156
+ | 4 | [placeholder] | [placeholder] | [placeholder] | [Y/N] |
157
+ | 5 | [placeholder] | [placeholder] | [placeholder] | [Y/N] |
158
+ | 6 | [placeholder] | [placeholder] | [placeholder] | [Y/N] |
159
+ | 7 | [placeholder] | [placeholder] | [placeholder] | [Y/N] |
160
+ | 8 | [placeholder] | [placeholder] | [placeholder] | [Y/N] |
161
+ | 9 | [placeholder] | [placeholder] | [placeholder] | [Y/N] |
162
+ | 10 | [placeholder] | [placeholder] | [placeholder] | [Y/N] |
163
+ | 11 | [placeholder] | [placeholder] | [placeholder] | [Y/N] |
164
+ | 12 | [placeholder] | [placeholder] | [placeholder] | [Y/N] |
165
+ | 13 | [placeholder] | [placeholder] | [placeholder] | [Y/N] |
166
+ | 14 | [placeholder] | [placeholder] | [placeholder] | [Y/N] |
167
+ | 15 | [placeholder] | [placeholder] | [placeholder] | [Y/N] |
168
+
169
+ ---
170
+
171
+ ## Summary
172
+
173
+ - **Total skills listed:** [placeholder]
174
+ - **Total problems listed:** [placeholder] (target: 50+)
175
+ - **Total raw niche ideas:** [placeholder]
176
+ - **Top 3 ideas to bring into Phase 2 (Niche Scoring):**
177
+ 1. [placeholder]
178
+ 2. [placeholder]
179
+ 3. [placeholder]
@@ -0,0 +1,215 @@
1
+ # Phase 6: Leads -- Lead & Nurture Strategy
2
+
3
+ > **Goal:** Design your complete lead generation and nurture system. This covers how you find leads, how fast you respond, how you personalize follow-up, and how you maximize show rates.
4
+ >
5
+ > **Key principle:** Speed and persistence beat talent. The business that responds in 5 minutes and follows up 7 times beats the business with the better offer that responds in 24 hours.
6
+ >
7
+ > **Source frameworks:** 4 Pillars of Lead Nurture ($100M Playbook), Lead Gen Methods (money_online)
8
+
9
+ ---
10
+
11
+ ## 1. Four Pillars Scoring
12
+
13
+ > **Rate yourself 1-10 on each pillar.** Be brutally honest -- this is your baseline. The goal is to get every pillar to 7+ before scaling your lead volume.
14
+
15
+ ### Pillar 1: Availability
16
+
17
+ > How easy is it for leads to reach you and get a response? The more available you are, the more leads convert.
18
+
19
+ | Factor | Your Plan | Score (1-10) |
20
+ |--------|-----------|:------------:|
21
+ | Days per week available for calls/meetings | [placeholder] | [1-10] |
22
+ | Hours per day available for outreach | [placeholder] | [1-10] |
23
+ | Scheduling flexibility (evenings/weekends?) | [placeholder] | [1-10] |
24
+ | Self-scheduling option (Calendly, etc.)? | [Y/N -- link: placeholder] | [1-10] |
25
+
26
+ **Availability Score:** [placeholder] / 10
27
+
28
+ ### Pillar 2: Speed
29
+
30
+ > The #1 predictor of conversion. Leads contacted within 5 minutes are 100x more likely to convert than leads contacted after 30 minutes.
31
+
32
+ | Factor | Your Plan | Score (1-10) |
33
+ |--------|-----------|:------------:|
34
+ | Target response time after inquiry | [placeholder -- gold standard: <5 min] | [1-10] |
35
+ | Speed to first appointment (same day?) | [placeholder] | [1-10] |
36
+ | Speed of follow-up after appointment | [placeholder] | [1-10] |
37
+ | Automated instant response set up? | [Y/N] | [1-10] |
38
+
39
+ **Speed Score:** [placeholder] / 10
40
+
41
+ ### Pillar 3: Personalization
42
+
43
+ > Generic follow-up gets ignored. Personalized follow-up gets responses. This means knowing who they are and what they care about BEFORE you reach out.
44
+
45
+ | Factor | Your Plan | Score (1-10) |
46
+ |--------|-----------|:------------:|
47
+ | Preferred communication method per lead | [placeholder] | [1-10] |
48
+ | Lead qualification scoring system? | [Y/N -- criteria: placeholder] | [1-10] |
49
+ | Segmented messaging (different messages for different types)? | [Y/N] | [1-10] |
50
+ | Incentives for engaging (free resource, audit, etc.)? | [placeholder] | [1-10] |
51
+ | Social proof/testimonials ready to share? | [Y/N -- number available: placeholder] | [1-10] |
52
+
53
+ **Personalization Score:** [placeholder] / 10
54
+
55
+ ### Pillar 4: Volume
56
+
57
+ > Consistent, persistent follow-up. Most sales happen between the 5th and 12th contact. Most salespeople give up after 2.
58
+
59
+ | Factor | Your Plan | Score (1-10) |
60
+ |--------|-----------|:------------:|
61
+ | Follow-up cadence plan (see Nurture Sequence below) | [placeholder] | [1-10] |
62
+ | Reminder schedule (automated + manual) | [placeholder] | [1-10] |
63
+ | BAMFAM habit? (Book A Meeting From A Meeting) | [Y/N] | [1-10] |
64
+ | Number of follow-up touches before marking lead cold | [placeholder] | [1-10] |
65
+
66
+ **Volume Score:** [placeholder] / 10
67
+
68
+ ### Four Pillars Summary
69
+
70
+ | Pillar | Score | Priority Action |
71
+ |--------|:-----:|-----------------|
72
+ | Availability | [placeholder]/10 | [placeholder] |
73
+ | Speed | [placeholder]/10 | [placeholder] |
74
+ | Personalization | [placeholder]/10 | [placeholder] |
75
+ | Volume | [placeholder]/10 | [placeholder] |
76
+ | **Overall** | **[placeholder]/10** | |
77
+
78
+ > **Interpretation:** Below 5 on any pillar = fix it before adding more lead volume. Pouring leads into a leaky funnel wastes money.
79
+
80
+ ---
81
+
82
+ ## 2. Lead Channel Plan
83
+
84
+ > **Ranked by effort-to-reward ratio.** Start with #1 (your existing network) and add channels only when the previous one is producing consistently.
85
+
86
+ ### Channel 1: Existing Network (Warm Outreach)
87
+
88
+ > **Start here. Always.** Warm leads convert 5-10x better than cold. List 10 real people you will reach out to THIS WEEK.
89
+
90
+ | # | Name | Relationship | Why Relevant | Outreach Date | Status |
91
+ |---|------|-------------|-------------|:-------------:|:------:|
92
+ | 1 | [placeholder] | [placeholder] | [placeholder] | [date] | [Sent/Replied/Booked/Done] |
93
+ | 2 | [placeholder] | [placeholder] | [placeholder] | [date] | [Sent/Replied/Booked/Done] |
94
+ | 3 | [placeholder] | [placeholder] | [placeholder] | [date] | [Sent/Replied/Booked/Done] |
95
+ | 4 | [placeholder] | [placeholder] | [placeholder] | [date] | [Sent/Replied/Booked/Done] |
96
+ | 5 | [placeholder] | [placeholder] | [placeholder] | [date] | [Sent/Replied/Booked/Done] |
97
+ | 6 | [placeholder] | [placeholder] | [placeholder] | [date] | [Sent/Replied/Booked/Done] |
98
+ | 7 | [placeholder] | [placeholder] | [placeholder] | [date] | [Sent/Replied/Booked/Done] |
99
+ | 8 | [placeholder] | [placeholder] | [placeholder] | [date] | [Sent/Replied/Booked/Done] |
100
+ | 9 | [placeholder] | [placeholder] | [placeholder] | [date] | [Sent/Replied/Booked/Done] |
101
+ | 10 | [placeholder] | [placeholder] | [placeholder] | [date] | [Sent/Replied/Booked/Done] |
102
+
103
+ ### Channel 2: Content Platform
104
+
105
+ > Pick ONE platform where your target audience already hangs out. Post consistently before expecting results.
106
+
107
+ - **Platform:** [LinkedIn / X / YouTube / TikTok / Newsletter / Blog / Podcast]
108
+ - **Why this platform:** [placeholder]
109
+ - **Posting frequency:** [placeholder]
110
+ - **First 5 post ideas:**
111
+ 1. [placeholder]
112
+ 2. [placeholder]
113
+ 3. [placeholder]
114
+ 4. [placeholder]
115
+ 5. [placeholder]
116
+
117
+ ### Channel 3: Communities
118
+
119
+ > Join 3 communities where your target audience congregates. Contribute genuinely for 2-4 weeks before promoting anything.
120
+
121
+ | # | Community Name | Platform | Size | Your Contribution Plan |
122
+ |---|---------------|----------|:----:|----------------------|
123
+ | 1 | [placeholder] | [placeholder] | [placeholder] | [placeholder] |
124
+ | 2 | [placeholder] | [placeholder] | [placeholder] | [placeholder] |
125
+ | 3 | [placeholder] | [placeholder] | [placeholder] | [placeholder] |
126
+
127
+ ### Channel 4: LinkedIn Sales Navigator
128
+
129
+ > For targeted B2B outreach. Define your search criteria precisely.
130
+
131
+ - **Job titles to target:** [placeholder]
132
+ - **Industries:** [placeholder]
133
+ - **Company size:** [placeholder]
134
+ - **Geography:** [placeholder]
135
+ - **Weekly outreach target:** [placeholder] connection requests
136
+
137
+ ### Channel 5: Cold Outreach (Last Resort)
138
+
139
+ > Only after you've exhausted warm channels. Cold works but requires high volume and thick skin.
140
+
141
+ - **Method:** [Email / LinkedIn DM / Other]
142
+ - **Daily volume target:** [placeholder]
143
+ - **Expected response rate:** [placeholder]% (typical: 2-5% for cold)
144
+ - **Script/template location:** [reference to Phase 4 outreach scripts]
145
+
146
+ ---
147
+
148
+ ## 3. Nurture Sequence (Day-by-Day)
149
+
150
+ > **From the $100M Playbook.** This is the follow-up sequence after someone expresses interest (opts in, replies, fills out a form). Speed and persistence are everything.
151
+
152
+ | Timing | Action | Channel | Script/Notes |
153
+ |--------|--------|---------|-------------|
154
+ | **Minute 0-5** | Call immediately after opt-in. Double-dial (call, hang up after 1 ring, call again). | Phone | [placeholder -- what to say when they pick up] |
155
+ | **Minute 5** | Leave voicemail + send text message | Phone + SMS | VM: "[placeholder]" / Text: "[placeholder]" |
156
+ | **Hours 2-4** | Second double-dial attempt + text | Phone + SMS | Text: "[placeholder]" |
157
+ | **Day 1 evening** | Third attempt via DIFFERENT channel | Email or DM | [placeholder] |
158
+ | **Day 2 morning** | Call 2x + text after second call | Phone + SMS | [placeholder] |
159
+ | **Day 2 evening** | Call 1x + text | Phone + SMS | [placeholder] |
160
+ | **Day 3** | Call 2x + text | Phone + SMS | [placeholder] |
161
+ | **Day 4** | Call 1x + text with new angle | Phone + SMS | Text: "[placeholder -- share a relevant insight or testimonial]" |
162
+ | **Day 5** | Call 1x + text | Phone + SMS | [placeholder] |
163
+ | **Day 6** | Call 1x + text with urgency | Phone + SMS | Text: "[placeholder -- mention limited availability]" |
164
+ | **Day 7** | Final call + breakup text | Phone + SMS | Text: "[placeholder -- 'I don't want to bug you...']" |
165
+ | **Week 2-4** | Transition to long-term nurture | Email / Content | Weekly value email: [placeholder] |
166
+ | **Every 90 days** | Re-engagement with proof/results | Email | Share case study or testimonial: [placeholder] |
167
+
168
+ > **Key stat:** 50% of leads who opt in will eventually buy... but not on Day 1. The nurture sequence is where the money is.
169
+
170
+ ---
171
+
172
+ ## 4. Show Rate Optimization Checklist
173
+
174
+ > **Getting someone to book an appointment is only half the battle. Getting them to actually show up is the other half.** Each checkbox below increases your show rate.
175
+
176
+ ### Scheduling
177
+
178
+ - [ ] **Appointments booked within 72 hours max** -- longer gaps = lower show rates
179
+ - [ ] **Multiple scheduling options available:**
180
+ - [ ] Inbound (they click a link and book)
181
+ - [ ] Outbound (you propose specific times)
182
+ - [ ] Self-schedule (Calendly / Cal.com / similar)
183
+ - [ ] **15-minute flex time slots** -- "Can you do Tuesday at 2:00 or 2:15?" feels easier to say yes to
184
+
185
+ ### Reminders
186
+
187
+ - [ ] **Automated reminder: immediately after booking** -- confirmation email/text with calendar invite
188
+ - [ ] **Automated reminder: 24 hours before** -- "Looking forward to our chat tomorrow at [time]"
189
+ - [ ] **Automated reminder: 12 hours before** -- optional but effective
190
+ - [ ] **Automated reminder: 3 hours before** -- "Quick reminder: we're meeting at [time] today"
191
+ - [ ] **Manual personal reminder: night before** -- "Hey [Name], excited for our call tomorrow. Here's [relevant resource] to look at beforehand."
192
+ - [ ] **Manual personal reminder: morning of** -- "See you in a few hours!"
193
+
194
+ ### Incentives & Proof
195
+
196
+ - [ ] **Incentive for showing up** -- small gift card, free resource, exclusive content
197
+ - What I'll offer: [placeholder]
198
+ - [ ] **Personalized proof sent before appointment** -- case study, testimonial, or result relevant to THEIR situation
199
+ - What I'll send: [placeholder]
200
+
201
+ ### During the Meeting
202
+
203
+ - [ ] **BAMFAM: Book A Meeting From A Meeting** -- always schedule the next touchpoint before ending the current one
204
+ - "Before we wrap up, let's get [next step] on the calendar."
205
+
206
+ ### Show Rate Tracking
207
+
208
+ | Week | Appointments Booked | Appointments Kept | Show Rate | Actions Taken |
209
+ |:----:|:-------------------:|:-----------------:|:---------:|--------------|
210
+ | 1 | [placeholder] | [placeholder] | [placeholder]% | [placeholder] |
211
+ | 2 | [placeholder] | [placeholder] | [placeholder]% | [placeholder] |
212
+ | 3 | [placeholder] | [placeholder] | [placeholder]% | [placeholder] |
213
+ | 4 | [placeholder] | [placeholder] | [placeholder]% | [placeholder] |
214
+
215
+ > **Target show rate:** 80%+. Below 60% = fix your reminder sequence before booking more appointments.