cognitive-workflow-mcp 1.1.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/.workflow/bucket-builder.html +823 -0
- package/.workflow/bucket-discoverer.html +928 -0
- package/.workflow/bucket-experimenter.html +802 -0
- package/.workflow/bucket-operator.html +951 -0
- package/.workflow/bucket-strategist.html +970 -0
- package/.workflow/bucket-teacher.html +873 -0
- package/.workflow/cognitive-dashboard-enhanced.html +731 -0
- package/.workflow/cognitive-dashboard.html +296 -0
- package/LICENSE +21 -0
- package/README.md +317 -0
- package/bin/cli.js +286 -0
- package/package.json +57 -0
- package/src/analyzer.js +194 -0
- package/src/configurator.js +63 -0
- package/src/generator.js +65 -0
- package/src/index.js +233 -0
- package/src/insights.js +127 -0
- package/src/templates.js +396 -0
|
@@ -0,0 +1,873 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>📣 Teacher's Stage | Terminal</title>
|
|
7
|
+
<style>
|
|
8
|
+
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
9
|
+
body {
|
|
10
|
+
font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
|
|
11
|
+
background: linear-gradient(135deg, #7c2d12 0%, #9a3412 50%, #c2410c 100%);
|
|
12
|
+
color: #eaeaea;
|
|
13
|
+
padding: 40px;
|
|
14
|
+
line-height: 1.6;
|
|
15
|
+
}
|
|
16
|
+
.container {
|
|
17
|
+
max-width: 1400px;
|
|
18
|
+
margin: 0 auto;
|
|
19
|
+
background: rgba(124, 45, 18, 0.9);
|
|
20
|
+
border-radius: 15px;
|
|
21
|
+
padding: 40px;
|
|
22
|
+
border: 2px solid #f97316;
|
|
23
|
+
box-shadow: 0 0 30px rgba(249, 115, 22, 0.3);
|
|
24
|
+
}
|
|
25
|
+
.header {
|
|
26
|
+
text-align: center;
|
|
27
|
+
margin-bottom: 50px;
|
|
28
|
+
padding-bottom: 30px;
|
|
29
|
+
border-bottom: 3px solid #f97316;
|
|
30
|
+
}
|
|
31
|
+
.identity-declaration {
|
|
32
|
+
font-size: 4em;
|
|
33
|
+
font-weight: 900;
|
|
34
|
+
color: #f97316;
|
|
35
|
+
text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
|
|
36
|
+
margin-bottom: 20px;
|
|
37
|
+
letter-spacing: 5px;
|
|
38
|
+
}
|
|
39
|
+
.room-metaphor {
|
|
40
|
+
font-size: 1.4em;
|
|
41
|
+
color: #fdba74;
|
|
42
|
+
font-style: italic;
|
|
43
|
+
margin-bottom: 30px;
|
|
44
|
+
}
|
|
45
|
+
.stats {
|
|
46
|
+
display: grid;
|
|
47
|
+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
48
|
+
gap: 20px;
|
|
49
|
+
margin-bottom: 40px;
|
|
50
|
+
}
|
|
51
|
+
.stat-card {
|
|
52
|
+
background: rgba(249, 115, 22, 0.1);
|
|
53
|
+
padding: 20px;
|
|
54
|
+
border-radius: 10px;
|
|
55
|
+
border: 1px solid #f97316;
|
|
56
|
+
text-align: center;
|
|
57
|
+
}
|
|
58
|
+
.stat-number {
|
|
59
|
+
font-size: 2.5em;
|
|
60
|
+
font-weight: bold;
|
|
61
|
+
color: #f97316;
|
|
62
|
+
}
|
|
63
|
+
.stat-label {
|
|
64
|
+
font-size: 1em;
|
|
65
|
+
color: #fdba74;
|
|
66
|
+
margin-top: 5px;
|
|
67
|
+
}
|
|
68
|
+
.section {
|
|
69
|
+
margin-bottom: 40px;
|
|
70
|
+
}
|
|
71
|
+
h2 {
|
|
72
|
+
font-size: 2em;
|
|
73
|
+
color: #f97316;
|
|
74
|
+
margin-bottom: 20px;
|
|
75
|
+
display: flex;
|
|
76
|
+
align-items: center;
|
|
77
|
+
gap: 10px;
|
|
78
|
+
}
|
|
79
|
+
h3 {
|
|
80
|
+
font-size: 1.5em;
|
|
81
|
+
color: #fb923c;
|
|
82
|
+
margin: 25px 0 15px 0;
|
|
83
|
+
}
|
|
84
|
+
.quick-links {
|
|
85
|
+
display: grid;
|
|
86
|
+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
87
|
+
gap: 15px;
|
|
88
|
+
margin-bottom: 30px;
|
|
89
|
+
}
|
|
90
|
+
.link-card {
|
|
91
|
+
background: rgba(251, 146, 60, 0.1);
|
|
92
|
+
padding: 15px;
|
|
93
|
+
border-radius: 8px;
|
|
94
|
+
border: 1px solid #fb923c;
|
|
95
|
+
transition: all 0.3s ease;
|
|
96
|
+
}
|
|
97
|
+
.link-card:hover {
|
|
98
|
+
background: rgba(251, 146, 60, 0.2);
|
|
99
|
+
transform: translateY(-2px);
|
|
100
|
+
box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
|
|
101
|
+
}
|
|
102
|
+
.link-card a {
|
|
103
|
+
color: #f97316;
|
|
104
|
+
text-decoration: none;
|
|
105
|
+
font-weight: bold;
|
|
106
|
+
}
|
|
107
|
+
.commit-group {
|
|
108
|
+
background: rgba(249, 115, 22, 0.05);
|
|
109
|
+
padding: 20px;
|
|
110
|
+
border-radius: 10px;
|
|
111
|
+
margin-bottom: 20px;
|
|
112
|
+
border-left: 4px solid #f97316;
|
|
113
|
+
}
|
|
114
|
+
.commit-item {
|
|
115
|
+
padding: 10px 0;
|
|
116
|
+
border-bottom: 1px solid rgba(253, 186, 116, 0.2);
|
|
117
|
+
color: #fdba74;
|
|
118
|
+
}
|
|
119
|
+
.commit-item:last-child {
|
|
120
|
+
border-bottom: none;
|
|
121
|
+
}
|
|
122
|
+
.cognitive-trigger {
|
|
123
|
+
background: rgba(249, 115, 22, 0.15);
|
|
124
|
+
padding: 15px;
|
|
125
|
+
border-radius: 8px;
|
|
126
|
+
margin: 10px 0;
|
|
127
|
+
border-left: 4px solid #fb923c;
|
|
128
|
+
font-style: italic;
|
|
129
|
+
color: #fdba74;
|
|
130
|
+
}
|
|
131
|
+
.back-link {
|
|
132
|
+
display: inline-block;
|
|
133
|
+
background: #f97316;
|
|
134
|
+
color: #7c2d12;
|
|
135
|
+
padding: 15px 30px;
|
|
136
|
+
border-radius: 10px;
|
|
137
|
+
text-decoration: none;
|
|
138
|
+
font-weight: bold;
|
|
139
|
+
margin-top: 40px;
|
|
140
|
+
transition: all 0.3s ease;
|
|
141
|
+
}
|
|
142
|
+
.back-link:hover {
|
|
143
|
+
background: #fb923c;
|
|
144
|
+
transform: scale(1.05);
|
|
145
|
+
}
|
|
146
|
+
.insight-box {
|
|
147
|
+
background: rgba(251, 146, 60, 0.1);
|
|
148
|
+
padding: 20px;
|
|
149
|
+
border-radius: 10px;
|
|
150
|
+
margin: 15px 0;
|
|
151
|
+
border: 1px solid #fb923c;
|
|
152
|
+
}
|
|
153
|
+
ul, ol {
|
|
154
|
+
margin-left: 20px;
|
|
155
|
+
color: #fdba74;
|
|
156
|
+
}
|
|
157
|
+
li {
|
|
158
|
+
margin: 10px 0;
|
|
159
|
+
}
|
|
160
|
+
strong {
|
|
161
|
+
color: #f97316;
|
|
162
|
+
}
|
|
163
|
+
code {
|
|
164
|
+
background: rgba(249, 115, 22, 0.1);
|
|
165
|
+
padding: 2px 6px;
|
|
166
|
+
border-radius: 4px;
|
|
167
|
+
color: #fb923c;
|
|
168
|
+
font-family: 'SF Mono', monospace;
|
|
169
|
+
}
|
|
170
|
+
</style>
|
|
171
|
+
</head>
|
|
172
|
+
<body>
|
|
173
|
+
<!-- Source Path -->
|
|
174
|
+
<div style="background: rgba(255,255,255,0.15); color: white; padding: 12px 20px; border-radius: 10px; margin-bottom: 20px; font-family: 'Monaco', monospace; font-size: 0.9em;">
|
|
175
|
+
<strong>📂 Source:</strong> /Users/thetacoach/GitHub/thetadrivencoach/.workflow/bucket-teacher.html
|
|
176
|
+
</div>
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
<div class="container">
|
|
180
|
+
<!-- Cognitive Loading Prompt -->
|
|
181
|
+
<div style="background: rgba(139, 92, 246, 0.1); border: 2px solid #8b5cf6; border-radius: 12px; padding: 25px; margin-bottom: 30px;">
|
|
182
|
+
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px;">
|
|
183
|
+
<h3 style="color: #8b5cf6; margin: 0;">🧠 Load Teacher Identity</h3>
|
|
184
|
+
<button onclick="copyPrompt()" style="background: #8b5cf6; color: white; border: none; padding: 10px 20px; border-radius: 6px; cursor: pointer; font-weight: 600; font-size: 0.9em;">
|
|
185
|
+
📋 Copy Prompt
|
|
186
|
+
</button>
|
|
187
|
+
</div>
|
|
188
|
+
<div id="prompt" style="background: rgba(255,255,255,0.05); padding: 20px; border-radius: 8px; border-left: 4px solid #8b5cf6; font-family: -apple-system, system-ui; font-size: 0.95em; line-height: 1.7; color: #ddd; white-space: pre-wrap;">I'm stepping into the Teacher cognitive workspace (Terminal).
|
|
189
|
+
|
|
190
|
+
**Identity:** "Explain complex → simple. Ship content. Build audience."
|
|
191
|
+
|
|
192
|
+
**Current Priority:** Complete book chapters + SEO optimization
|
|
193
|
+
|
|
194
|
+
**Mental Palace Room:** The Broadcast Studio. A minimalist content creation space with ring lights, camera setup, and a clean backdrop. A standing desk with dual monitors—one for writing, one for research. Whiteboards filled with concept maps and teaching frameworks. Bookshelf walls lined with classics on communication and persuasion.
|
|
195
|
+
|
|
196
|
+
**Mindset Shift:** Public explanation > private understanding. This is where expertise becomes influence. Where complex ideas transform into clear narratives. Where blog posts become customer education. Where SEO meets storytelling.
|
|
197
|
+
|
|
198
|
+
**The Feeling:** Teacher presence. The satisfaction of the "aha!" moment. The confidence of someone who makes hard things simple. "If I can't explain it, I don't understand it." Every post published is measured in reach and resonance.
|
|
199
|
+
|
|
200
|
+
**Core Tasks:**
|
|
201
|
+
- Write → Blog posts, thought leadership
|
|
202
|
+
- Optimize → SEO, discoverability
|
|
203
|
+
- Design → Landing pages, conversion
|
|
204
|
+
- Answer → FAQs, objections, clarity
|
|
205
|
+
|
|
206
|
+
**Recent Focus Areas:**
|
|
207
|
+
- Book Chapter Writing (Trust Debt derivation)
|
|
208
|
+
- SEO & Sitemap Fixes
|
|
209
|
+
- Landing Page Optimization
|
|
210
|
+
- Blog Post Strategy
|
|
211
|
+
|
|
212
|
+
**Color Trigger:** Purple (#8b5cf6) - The color of thought leadership, creativity, and explanation. When you see this purple, you shift into teaching mode: clarity, simplification, audience impact.
|
|
213
|
+
|
|
214
|
+
Ready to teach. What needs to be explained?</div>
|
|
215
|
+
</div>
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
<div class="header">
|
|
219
|
+
<div class="identity-declaration">📣 THE TEACHER</div>
|
|
220
|
+
<div style="font-size: 2em; color: #fb923c; margin-bottom: 15px; font-weight: bold;">
|
|
221
|
+
"Explain complex → simple. Ship content. Build audience."
|
|
222
|
+
</div>
|
|
223
|
+
<div style="font-size: 1.3em; color: #fdba74; background: rgba(249, 115, 22, 0.15); padding: 15px 25px; border-radius: 10px; display: inline-block; margin-bottom: 20px; border: 1px solid #f97316;">
|
|
224
|
+
<strong>Niche:</strong> Public explanation > private understanding
|
|
225
|
+
</div>
|
|
226
|
+
<div class="room-metaphor">
|
|
227
|
+
The Broadcast Studio — Where complexity becomes clarity
|
|
228
|
+
</div>
|
|
229
|
+
<p style="font-size: 1.2em; color: #fdba74;">
|
|
230
|
+
Terminal • Orange (#f97316) • The Amplifier
|
|
231
|
+
</p>
|
|
232
|
+
</div>
|
|
233
|
+
|
|
234
|
+
<div class="stats">
|
|
235
|
+
<div class="stat-card">
|
|
236
|
+
<div class="stat-number">18</div>
|
|
237
|
+
<div class="stat-label">Total Commits</div>
|
|
238
|
+
</div>
|
|
239
|
+
<div class="stat-card">
|
|
240
|
+
<div class="stat-number">9%</div>
|
|
241
|
+
<div class="stat-label">Of All Work</div>
|
|
242
|
+
</div>
|
|
243
|
+
<div class="stat-card">
|
|
244
|
+
<div class="stat-number">0.30</div>
|
|
245
|
+
<div class="stat-label">Commits/Day Avg</div>
|
|
246
|
+
</div>
|
|
247
|
+
<div class="stat-card">
|
|
248
|
+
<div class="stat-number">4th</div>
|
|
249
|
+
<div class="stat-label">Most Active</div>
|
|
250
|
+
</div>
|
|
251
|
+
</div>
|
|
252
|
+
|
|
253
|
+
<div class="section">
|
|
254
|
+
<h2>🎤 The Mental Palace: Teacher's Stage</h2>
|
|
255
|
+
<div class="insight-box">
|
|
256
|
+
<p><strong>The Room:</strong> A spotlight-lit broadcast studio with a podcast mic suspended from above. Soundproof foam panels on the walls. A teleprompter showing your outline. Behind the camera: your audience of thousands. A clicker in hand for advancing slides. The red "LIVE" light glows—everything you say matters.</p>
|
|
257
|
+
|
|
258
|
+
<p style="margin-top: 15px;"><strong>What happens here:</strong> This is where you translate complexity into clarity. Where research from the Vault becomes blog posts. Where technical implementation becomes tutorials. Where insider knowledge becomes public education. Not just writing—broadcasting.</p>
|
|
259
|
+
|
|
260
|
+
<p style="margin-top: 15px;"><strong>The Feeling:</strong> Amplified authority. "I'm teaching thousands simultaneously." Every word choice matters. Every example must land. Clarity is currency. The Teacher's goal: leave no one confused.</p>
|
|
261
|
+
</div>
|
|
262
|
+
</div>
|
|
263
|
+
|
|
264
|
+
<div class="section">
|
|
265
|
+
<h2>🔗 Quick Links: Teaching Resources</h2>
|
|
266
|
+
<div class="quick-links">
|
|
267
|
+
<div class="link-card">
|
|
268
|
+
<a href="https://thetacoach.biz/blog" target="_blank">📝 Blog Platform</a>
|
|
269
|
+
<p style="color: #fdba74; font-size: 0.9em; margin-top: 5px;">Published thought leadership</p>
|
|
270
|
+
</div>
|
|
271
|
+
<div class="link-card">
|
|
272
|
+
<a href="https://github.com/wiber/thetadrivencoach/tree/main/src/content/blog" target="_blank">✍️ Blog Source</a>
|
|
273
|
+
<p style="color: #fdba74; font-size: 0.9em; margin-top: 5px;">MDX files for editing</p>
|
|
274
|
+
</div>
|
|
275
|
+
<div class="link-card">
|
|
276
|
+
<a href="https://github.com/wiber/thetadrivencoach/tree/main/docs" target="_blank">📚 Documentation</a>
|
|
277
|
+
<p style="color: #fdba74; font-size: 0.9em; margin-top: 5px;">Technical guides & tutorials</p>
|
|
278
|
+
</div>
|
|
279
|
+
<div class="link-card">
|
|
280
|
+
<a href="https://twitter.com/thetadriven" target="_blank">🐦 Twitter/X</a>
|
|
281
|
+
<p style="color: #fdba74; font-size: 0.9em; margin-top: 5px;">Short-form teaching</p>
|
|
282
|
+
</div>
|
|
283
|
+
<div class="link-card">
|
|
284
|
+
<a href="https://linkedin.com/company/thetadriven" target="_blank">💼 LinkedIn</a>
|
|
285
|
+
<p style="color: #fdba74; font-size: 0.9em; margin-top: 5px;">Professional audience</p>
|
|
286
|
+
</div>
|
|
287
|
+
<div class="link-card">
|
|
288
|
+
<a href="https://medium.com/@thetadriven" target="_blank">📰 Medium</a>
|
|
289
|
+
<p style="color: #fdba74; font-size: 0.9em; margin-top: 5px;">Cross-posting platform</p>
|
|
290
|
+
</div>
|
|
291
|
+
<div class="link-card">
|
|
292
|
+
<a href="https://dev.to/thetadriven" target="_blank">💻 Dev.to</a>
|
|
293
|
+
<p style="color: #fdba74; font-size: 0.9em; margin-top: 5px;">Developer community</p>
|
|
294
|
+
</div>
|
|
295
|
+
<div class="link-card">
|
|
296
|
+
<a href="https://hackernoon.com/@thetadriven" target="_blank">🚀 HackerNoon</a>
|
|
297
|
+
<p style="color: #fdba74; font-size: 0.9em; margin-top: 5px;">Tech storytelling</p>
|
|
298
|
+
</div>
|
|
299
|
+
</div>
|
|
300
|
+
</div>
|
|
301
|
+
|
|
302
|
+
<div class="section">
|
|
303
|
+
<h2>📊 Teaching Commit History (60 Days)</h2>
|
|
304
|
+
|
|
305
|
+
<div class="commit-group">
|
|
306
|
+
<h3>Blog Content Creation (12+ commits)</h3>
|
|
307
|
+
<div class="commit-item"><strong>feat(blog):</strong> Add new post on intelligence moments</div>
|
|
308
|
+
<div class="commit-item"><strong>feat(blog):</strong> Write CRM search intent analysis</div>
|
|
309
|
+
<div class="commit-item"><strong>feat(blog):</strong> Publish FIM trust token post</div>
|
|
310
|
+
<div class="commit-item"><strong>feat(blog):</strong> Create Unity Principle explainer</div>
|
|
311
|
+
<div class="commit-item"><strong>refactor(blog):</strong> Improve narrative clarity across all posts</div>
|
|
312
|
+
|
|
313
|
+
<div class="insight-box">
|
|
314
|
+
<strong>Teaching Mode:</strong> These aren't notes—they're polished, public-facing explanations. The Teacher translates internal discoveries into external value.
|
|
315
|
+
</div>
|
|
316
|
+
</div>
|
|
317
|
+
|
|
318
|
+
<div class="commit-group">
|
|
319
|
+
<h3>Documentation & Guides (4+ commits)</h3>
|
|
320
|
+
<div class="commit-item"><strong>docs:</strong> Write CRM setup tutorial</div>
|
|
321
|
+
<div class="commit-item"><strong>docs:</strong> Create CLAUDE.md configuration guide</div>
|
|
322
|
+
<div class="commit-item"><strong>docs:</strong> Add troubleshooting FAQ</div>
|
|
323
|
+
<div class="commit-item"><strong>docs:</strong> Update README with quick start</div>
|
|
324
|
+
|
|
325
|
+
<div class="insight-box">
|
|
326
|
+
<strong>User Empathy:</strong> Documentation is teaching at scale. Every user who doesn't have to email support is proof the Teacher did their job.
|
|
327
|
+
</div>
|
|
328
|
+
</div>
|
|
329
|
+
|
|
330
|
+
<div class="commit-group">
|
|
331
|
+
<h3>Social Media & Content Distribution (2+ commits)</h3>
|
|
332
|
+
<div class="commit-item"><strong>feat:</strong> Generate social media content from blog posts</div>
|
|
333
|
+
<div class="commit-item"><strong>feat:</strong> Create Twitter/LinkedIn snippets</div>
|
|
334
|
+
|
|
335
|
+
<div class="insight-box">
|
|
336
|
+
<strong>Amplification:</strong> A blog post reaches hundreds. Social distribution reaches thousands. The Teacher knows where the audiences are.
|
|
337
|
+
</div>
|
|
338
|
+
</div>
|
|
339
|
+
</div>
|
|
340
|
+
|
|
341
|
+
<div class="section">
|
|
342
|
+
<h2>🧠 Cognitive Triggers: When to Enter the Stage</h2>
|
|
343
|
+
<p style="color: #fdba74; margin-bottom: 20px;">These questions signal it's time to open Terminal and enter Teacher mode:</p>
|
|
344
|
+
|
|
345
|
+
<div class="cognitive-trigger">
|
|
346
|
+
✍️ "I need to write a blog post explaining this concept."
|
|
347
|
+
</div>
|
|
348
|
+
|
|
349
|
+
<div class="cognitive-trigger">
|
|
350
|
+
📚 "This feature needs documentation so users can understand it."
|
|
351
|
+
</div>
|
|
352
|
+
|
|
353
|
+
<div class="cognitive-trigger">
|
|
354
|
+
💡 "I just learned something valuable—other people need to know this."
|
|
355
|
+
</div>
|
|
356
|
+
|
|
357
|
+
<div class="cognitive-trigger">
|
|
358
|
+
❓ "Users keep asking the same question. Time to write a guide."
|
|
359
|
+
</div>
|
|
360
|
+
|
|
361
|
+
<div class="cognitive-trigger">
|
|
362
|
+
🎯 "I need to publish content to attract the right audience."
|
|
363
|
+
</div>
|
|
364
|
+
|
|
365
|
+
<div class="cognitive-trigger">
|
|
366
|
+
🗣️ "This discovery is too good to keep internal—it needs to be shared."
|
|
367
|
+
</div>
|
|
368
|
+
|
|
369
|
+
<div class="cognitive-trigger">
|
|
370
|
+
📖 "Let me turn this research into a tutorial people can follow."
|
|
371
|
+
</div>
|
|
372
|
+
|
|
373
|
+
<div class="cognitive-trigger">
|
|
374
|
+
🌐 "Time to update the website content / landing pages."
|
|
375
|
+
</div>
|
|
376
|
+
</div>
|
|
377
|
+
|
|
378
|
+
<div class="section">
|
|
379
|
+
<h2>🚪 Exit Conditions: When to Leave the Stage</h2>
|
|
380
|
+
<p style="color: #fdba74; margin-bottom: 20px;">You know it's time to switch identities when:</p>
|
|
381
|
+
|
|
382
|
+
<ul>
|
|
383
|
+
<li><strong>→ Discoverer:</strong> "I don't understand this deeply enough to teach it yet." (Cmd+Space → Alacritty)</li>
|
|
384
|
+
<li><strong>→ Builder:</strong> "The documentation is complete, now I need to build the actual feature." (Cmd+Space → iTerm2)</li>
|
|
385
|
+
<li><strong>→ Strategist:</strong> "This blog post needs competitive positioning context." (Cmd+Space → VS Code)</li>
|
|
386
|
+
<li><strong>→ Operator:</strong> "Content is published—now I need to promote it and track engagement." (Cmd+Space → Kitty)</li>
|
|
387
|
+
</ul>
|
|
388
|
+
</div>
|
|
389
|
+
|
|
390
|
+
<div class="section">
|
|
391
|
+
<h2>🎨 Color Psychology: Why Orange?</h2>
|
|
392
|
+
<div class="insight-box">
|
|
393
|
+
<p><strong>Orange (#f97316)</strong> is the color of enthusiasm, creativity, and communication. It's energetic without being aggressive, warm without being passive. When you see orange, you think: "Share this with the world."</p>
|
|
394
|
+
|
|
395
|
+
<p style="margin-top: 15px;"><strong>Not red</strong> (which is urgent action), not yellow (which is caution), but <strong>orange</strong>—the color of confident, clear communication.</p>
|
|
396
|
+
|
|
397
|
+
<p style="margin-top: 15px;"><strong>Visual reinforcement:</strong> Orange = broadcast mode. The moment you open this terminal, you shift into "public voice"—polished, accessible, valuable.</p>
|
|
398
|
+
</div>
|
|
399
|
+
</div>
|
|
400
|
+
|
|
401
|
+
<div class="section">
|
|
402
|
+
<h2>⚡ The Teacher's Flywheel</h2>
|
|
403
|
+
<div class="insight-box">
|
|
404
|
+
<p><strong>Discover → Build → Teach → Attract → Repeat</strong></p>
|
|
405
|
+
|
|
406
|
+
<ul style="margin-top: 15px;">
|
|
407
|
+
<li>Research from Discoverer becomes <strong>blog content for Teacher</strong></li>
|
|
408
|
+
<li>Features from Builder become <strong>tutorials for Teacher</strong></li>
|
|
409
|
+
<li>Operational questions from Operator become <strong>FAQs for Teacher</strong></li>
|
|
410
|
+
<li>Published content attracts <strong>new leads for Operator</strong></li>
|
|
411
|
+
</ul>
|
|
412
|
+
|
|
413
|
+
<p style="margin-top: 15px;"><strong>The Teacher is the megaphone.</strong> Without teaching, no one knows what you've built. The system stays invisible without the Teacher's voice.</p>
|
|
414
|
+
</div>
|
|
415
|
+
</div>
|
|
416
|
+
|
|
417
|
+
<div class="section">
|
|
418
|
+
<h2>🎨 Color Psychology: Why Orange?</h2>
|
|
419
|
+
<div class="insight-box">
|
|
420
|
+
<p><strong>Orange (#f97316)</strong> is the color of enthusiasm, communication, and creative expression. It's warm, inviting, and attention-grabbing. When you see this orange, your brain shifts into "broadcast mode"—speaking to many, translating complex to simple, making ideas accessible.</p>
|
|
421
|
+
|
|
422
|
+
<p style="margin-top: 15px;"><strong>Not blue</strong> (building), not green (operations), but <strong>vibrant orange</strong>—the color of a stage under spotlights. Like a TED talk opening slide, a podcast recording light, a live stream indicator.</p>
|
|
423
|
+
|
|
424
|
+
<p style="margin-top: 15px;"><strong>Visual reinforcement:</strong> The orange glow triggers teaching presence: "I'm explaining this to thousands." Every published post, every tutorial that helps someone, every concept clarified reinforces: you're the megaphone.</p>
|
|
425
|
+
</div>
|
|
426
|
+
</div>
|
|
427
|
+
|
|
428
|
+
<a href="cognitive-dashboard.html" class="back-link">← Back to Command Center</a>
|
|
429
|
+
</div>
|
|
430
|
+
|
|
431
|
+
<script>
|
|
432
|
+
function copyPrompt() {
|
|
433
|
+
const promptText = document.getElementById('prompt').innerText;
|
|
434
|
+
navigator.clipboard.writeText(promptText).then(() => {
|
|
435
|
+
const button = event.target;
|
|
436
|
+
const originalText = button.innerHTML;
|
|
437
|
+
button.innerHTML = '✅ Copied!';
|
|
438
|
+
const originalBg = button.style.background;
|
|
439
|
+
button.style.background = '#10b981';
|
|
440
|
+
setTimeout(() => {
|
|
441
|
+
button.innerHTML = originalText;
|
|
442
|
+
button.style.background = originalBg;
|
|
443
|
+
}, 2000);
|
|
444
|
+
}).catch(err => {
|
|
445
|
+
alert('Failed to copy: ' + err);
|
|
446
|
+
});
|
|
447
|
+
}
|
|
448
|
+
</script>
|
|
449
|
+
|
|
450
|
+
<!-- 🚀 STRATEGIC ENHANCEMENTS - Added 2025-11-17 -->
|
|
451
|
+
<section class="enhancement-section" style="margin-top: 50px; padding: 40px; background: rgba(0,0,0,0.3); border-radius: 15px; border: 3px solid currentColor;">
|
|
452
|
+
<h2 style="font-size: 2.5em; margin-bottom: 30px; text-align: center;">
|
|
453
|
+
🎯 10X OUTCOMES (Not Incremental Tasks)
|
|
454
|
+
</h2>
|
|
455
|
+
|
|
456
|
+
<div class="vision-10x" style="padding: 30px; background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)); border-radius: 12px; margin-bottom: 40px; border: 2px solid rgba(255,255,255,0.3);">
|
|
457
|
+
<h3 style="font-size: 1.8em; margin-bottom: 15px; color: #ffd700;">
|
|
458
|
+
🌟 3-Year Vision (Nov 2027)
|
|
459
|
+
</h3>
|
|
460
|
+
<p style="font-size: 1.4em; line-height: 1.8; font-weight: 600;">
|
|
461
|
+
100K newsletter subscribers, 10 published courses, 10K students, recognized as THE educator in consciousness tech
|
|
462
|
+
</p>
|
|
463
|
+
</div>
|
|
464
|
+
|
|
465
|
+
<div class="critical-deadlines" style="padding: 25px; background: rgba(255,0,0,0.2); border-radius: 12px; margin-bottom: 40px; border: 3px solid #ff4444;">
|
|
466
|
+
<h3 style="font-size: 1.6em; margin-bottom: 15px; color: #ff6666;">
|
|
467
|
+
🔴 CRITICAL DEADLINES
|
|
468
|
+
</h3>
|
|
469
|
+
<ul style="font-size: 1.2em; line-height: 2; list-style: none; padding-left: 0;">
|
|
470
|
+
<li style="padding: 10px; border-left: 4px solid #ff4444; margin-bottom: 10px; background: rgba(255,255,255,0.05);">
|
|
471
|
+
⚖️ <strong>April 2025:</strong> FIM Patent USPTO Filing (All hands on deck!)
|
|
472
|
+
</li>
|
|
473
|
+
<li style="padding: 10px; border-left: 4px solid #ff8844; margin-bottom: 10px; background: rgba(255,255,255,0.05);">
|
|
474
|
+
🇪🇺 <strong>August 2026:</strong> EU AI Act Enforcement (18-month runway)
|
|
475
|
+
</li>
|
|
476
|
+
</ul>
|
|
477
|
+
</div>
|
|
478
|
+
|
|
479
|
+
<h3 style="font-size: 2em; margin: 40px 0 25px 0; text-align: center;">
|
|
480
|
+
📅 QUARTERLY OUTCOMES (Outcome-Based, Not Task-Based)
|
|
481
|
+
</h3>
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
<div class="quarter-outcome" style="margin-bottom: 35px; padding: 30px; background: rgba(255,255,255,0.08); border-radius: 12px; border-left: 6px solid #4CAF50;">
|
|
485
|
+
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;">
|
|
486
|
+
<h4 style="font-size: 1.6em; margin: 0; color: #4CAF50;">
|
|
487
|
+
Q4 2024
|
|
488
|
+
</h4>
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
</div>
|
|
492
|
+
|
|
493
|
+
<div style="font-size: 1.3em; font-weight: 600; margin-bottom: 15px; padding: 15px; background: rgba(76, 175, 80, 0.2); border-radius: 8px;">
|
|
494
|
+
Audiobook published, 10 educational blog posts live
|
|
495
|
+
</div>
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
<div style="margin: 15px 0;">
|
|
500
|
+
<strong style="font-size: 1.1em;">📊 Success Metrics:</strong>
|
|
501
|
+
<ul style="margin-top: 10px; line-height: 1.8;">
|
|
502
|
+
<li>Audiobook on Audible</li><li>10 blog posts</li><li>1K newsletter subscribers</li>
|
|
503
|
+
</ul>
|
|
504
|
+
</div>
|
|
505
|
+
|
|
506
|
+
<div style="padding: 15px; background: rgba(255,215,0,0.15); border-radius: 8px; margin-top: 15px; border-left: 4px solid #ffd700;">
|
|
507
|
+
<strong style="font-size: 1.1em;">💡 Big Bet:</strong> Content marketing beats paid ads for developer audience
|
|
508
|
+
</div>
|
|
509
|
+
</div>
|
|
510
|
+
|
|
511
|
+
<div class="quarter-outcome" style="margin-bottom: 35px; padding: 30px; background: rgba(255,255,255,0.08); border-radius: 12px; border-left: 6px solid #4CAF50;">
|
|
512
|
+
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;">
|
|
513
|
+
<h4 style="font-size: 1.6em; margin: 0; color: #4CAF50;">
|
|
514
|
+
Q1 2025
|
|
515
|
+
</h4>
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
</div>
|
|
519
|
+
|
|
520
|
+
<div style="font-size: 1.3em; font-weight: 600; margin-bottom: 15px; padding: 15px; background: rgba(76, 175, 80, 0.2); border-radius: 8px;">
|
|
521
|
+
MCP Course launched with 500 students ($148.5K revenue)
|
|
522
|
+
</div>
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
<div style="margin: 15px 0;">
|
|
527
|
+
<strong style="font-size: 1.1em;">📊 Success Metrics:</strong>
|
|
528
|
+
<ul style="margin-top: 10px; line-height: 1.8;">
|
|
529
|
+
<li>500 students enrolled</li><li>Course rating > 4.5</li><li>5K newsletter subscribers</li>
|
|
530
|
+
</ul>
|
|
531
|
+
</div>
|
|
532
|
+
|
|
533
|
+
<div style="padding: 15px; background: rgba(255,215,0,0.15); border-radius: 8px; margin-top: 15px; border-left: 4px solid #ffd700;">
|
|
534
|
+
<strong style="font-size: 1.1em;">💡 Big Bet:</strong> Teach what you build = authenticity = sales
|
|
535
|
+
</div>
|
|
536
|
+
</div>
|
|
537
|
+
|
|
538
|
+
<div class="quarter-outcome" style="margin-bottom: 35px; padding: 30px; background: rgba(255,255,255,0.08); border-radius: 12px; border-left: 6px solid #4CAF50;">
|
|
539
|
+
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;">
|
|
540
|
+
<h4 style="font-size: 1.6em; margin: 0; color: #4CAF50;">
|
|
541
|
+
Q2 2025
|
|
542
|
+
</h4>
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
</div>
|
|
546
|
+
|
|
547
|
+
<div style="font-size: 1.3em; font-weight: 600; margin-bottom: 15px; padding: 15px; background: rgba(76, 175, 80, 0.2); border-radius: 8px;">
|
|
548
|
+
Challenger Sales course live, 20K newsletter subscribers
|
|
549
|
+
</div>
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
<div style="margin: 15px 0;">
|
|
554
|
+
<strong style="font-size: 1.1em;">📊 Success Metrics:</strong>
|
|
555
|
+
<ul style="margin-top: 10px; line-height: 1.8;">
|
|
556
|
+
<li>200 certification students</li><li>20K subscribers</li><li>YouTube channel started (10 videos)</li>
|
|
557
|
+
</ul>
|
|
558
|
+
</div>
|
|
559
|
+
|
|
560
|
+
<div style="padding: 15px; background: rgba(255,215,0,0.15); border-radius: 8px; margin-top: 15px; border-left: 4px solid #ffd700;">
|
|
561
|
+
<strong style="font-size: 1.1em;">💡 Big Bet:</strong> Teaching accelerates product adoption
|
|
562
|
+
</div>
|
|
563
|
+
</div>
|
|
564
|
+
|
|
565
|
+
<div class="quarter-outcome" style="margin-bottom: 35px; padding: 30px; background: rgba(255,255,255,0.08); border-radius: 12px; border-left: 6px solid #4CAF50;">
|
|
566
|
+
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;">
|
|
567
|
+
<h4 style="font-size: 1.6em; margin: 0; color: #4CAF50;">
|
|
568
|
+
Q3 2025
|
|
569
|
+
</h4>
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
</div>
|
|
573
|
+
|
|
574
|
+
<div style="font-size: 1.3em; font-weight: 600; margin-bottom: 15px; padding: 15px; background: rgba(76, 175, 80, 0.2); border-radius: 8px;">
|
|
575
|
+
AI Coaching certification launched, first live workshop
|
|
576
|
+
</div>
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
<div style="margin: 15px 0;">
|
|
581
|
+
<strong style="font-size: 1.1em;">📊 Success Metrics:</strong>
|
|
582
|
+
<ul style="margin-top: 10px; line-height: 1.8;">
|
|
583
|
+
<li>50 certified coaches</li><li>Workshop: 30 attendees @ $497</li><li>Blog: 50K monthly readers</li>
|
|
584
|
+
</ul>
|
|
585
|
+
</div>
|
|
586
|
+
|
|
587
|
+
<div style="padding: 15px; background: rgba(255,215,0,0.15); border-radius: 8px; margin-top: 15px; border-left: 4px solid #ffd700;">
|
|
588
|
+
<strong style="font-size: 1.1em;">💡 Big Bet:</strong> Certification = recurring revenue + community
|
|
589
|
+
</div>
|
|
590
|
+
</div>
|
|
591
|
+
|
|
592
|
+
<div class="quarter-outcome" style="margin-bottom: 35px; padding: 30px; background: rgba(255,255,255,0.08); border-radius: 12px; border-left: 6px solid #4CAF50;">
|
|
593
|
+
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;">
|
|
594
|
+
<h4 style="font-size: 1.6em; margin: 0; color: #4CAF50;">
|
|
595
|
+
Q4 2025
|
|
596
|
+
</h4>
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
</div>
|
|
600
|
+
|
|
601
|
+
<div style="font-size: 1.3em; font-weight: 600; margin-bottom: 15px; padding: 15px; background: rgba(76, 175, 80, 0.2); border-radius: 8px;">
|
|
602
|
+
50K newsletter subscribers, 1000 total students across all courses
|
|
603
|
+
</div>
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
<div style="margin: 15px 0;">
|
|
608
|
+
<strong style="font-size: 1.1em;">📊 Success Metrics:</strong>
|
|
609
|
+
<ul style="margin-top: 10px; line-height: 1.8;">
|
|
610
|
+
<li>50K subscribers</li><li>1000 students</li><li>4 courses published</li>
|
|
611
|
+
</ul>
|
|
612
|
+
</div>
|
|
613
|
+
|
|
614
|
+
<div style="padding: 15px; background: rgba(255,215,0,0.15); border-radius: 8px; margin-top: 15px; border-left: 4px solid #ffd700;">
|
|
615
|
+
<strong style="font-size: 1.1em;">💡 Big Bet:</strong> Educational content = best sales funnel
|
|
616
|
+
</div>
|
|
617
|
+
</div>
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
<h3 style="font-size: 2em; margin: 50px 0 25px 0; text-align: center;">
|
|
621
|
+
📆 MONTHLY EXECUTION PLAN (Next 6 Months)
|
|
622
|
+
</h3>
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
<div class="month-plan" style="margin-bottom: 25px; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 10px; border-left: 4px solid #2196F3;">
|
|
626
|
+
<h4 style="font-size: 1.3em; margin-bottom: 12px; color: #2196F3;">
|
|
627
|
+
Nov 2024
|
|
628
|
+
</h4>
|
|
629
|
+
<ul style="line-height: 2; margin-left: 20px;">
|
|
630
|
+
|
|
631
|
+
<li style="font-size: 1.1em;">Audiobook recording</li>
|
|
632
|
+
|
|
633
|
+
<li style="font-size: 1.1em;">Write 5 blog posts</li>
|
|
634
|
+
|
|
635
|
+
<li style="font-size: 1.1em;">Newsletter setup</li>
|
|
636
|
+
|
|
637
|
+
</ul>
|
|
638
|
+
</div>
|
|
639
|
+
|
|
640
|
+
<div class="month-plan" style="margin-bottom: 25px; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 10px; border-left: 4px solid #2196F3;">
|
|
641
|
+
<h4 style="font-size: 1.3em; margin-bottom: 12px; color: #2196F3;">
|
|
642
|
+
Dec 2024
|
|
643
|
+
</h4>
|
|
644
|
+
<ul style="line-height: 2; margin-left: 20px;">
|
|
645
|
+
|
|
646
|
+
<li style="font-size: 1.1em;">Audiobook published</li>
|
|
647
|
+
|
|
648
|
+
<li style="font-size: 1.1em;">5 more blog posts</li>
|
|
649
|
+
|
|
650
|
+
<li style="font-size: 1.1em;">Course pre-sales page</li>
|
|
651
|
+
|
|
652
|
+
</ul>
|
|
653
|
+
</div>
|
|
654
|
+
|
|
655
|
+
<div class="month-plan" style="margin-bottom: 25px; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 10px; border-left: 4px solid #2196F3;">
|
|
656
|
+
<h4 style="font-size: 1.3em; margin-bottom: 12px; color: #2196F3;">
|
|
657
|
+
Jan 2025
|
|
658
|
+
</h4>
|
|
659
|
+
<ul style="line-height: 2; margin-left: 20px;">
|
|
660
|
+
|
|
661
|
+
<li style="font-size: 1.1em;">MCP course pre-sales open</li>
|
|
662
|
+
|
|
663
|
+
<li style="font-size: 1.1em;">LinkedIn content series</li>
|
|
664
|
+
|
|
665
|
+
<li style="font-size: 1.1em;">Newsletter: 1K subscribers</li>
|
|
666
|
+
|
|
667
|
+
</ul>
|
|
668
|
+
</div>
|
|
669
|
+
|
|
670
|
+
<div class="month-plan" style="margin-bottom: 25px; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 10px; border-left: 4px solid #2196F3;">
|
|
671
|
+
<h4 style="font-size: 1.3em; margin-bottom: 12px; color: #2196F3;">
|
|
672
|
+
Feb 2025
|
|
673
|
+
</h4>
|
|
674
|
+
<ul style="line-height: 2; margin-left: 20px;">
|
|
675
|
+
|
|
676
|
+
<li style="font-size: 1.1em;">Course content creation</li>
|
|
677
|
+
|
|
678
|
+
<li style="font-size: 1.1em;">10 LinkedIn posts</li>
|
|
679
|
+
|
|
680
|
+
<li style="font-size: 1.1em;">First YouTube videos</li>
|
|
681
|
+
|
|
682
|
+
</ul>
|
|
683
|
+
</div>
|
|
684
|
+
|
|
685
|
+
<div class="month-plan" style="margin-bottom: 25px; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 10px; border-left: 4px solid #2196F3;">
|
|
686
|
+
<h4 style="font-size: 1.3em; margin-bottom: 12px; color: #2196F3;">
|
|
687
|
+
Mar 2025
|
|
688
|
+
</h4>
|
|
689
|
+
<ul style="line-height: 2; margin-left: 20px;">
|
|
690
|
+
|
|
691
|
+
<li style="font-size: 1.1em;">Launch MCP course</li>
|
|
692
|
+
|
|
693
|
+
<li style="font-size: 1.1em;">500 students target</li>
|
|
694
|
+
|
|
695
|
+
<li style="font-size: 1.1em;">Newsletter: 5K subscribers</li>
|
|
696
|
+
|
|
697
|
+
</ul>
|
|
698
|
+
</div>
|
|
699
|
+
|
|
700
|
+
<div class="month-plan" style="margin-bottom: 25px; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 10px; border-left: 4px solid #2196F3;">
|
|
701
|
+
<h4 style="font-size: 1.3em; margin-bottom: 12px; color: #2196F3;">
|
|
702
|
+
Apr 2025
|
|
703
|
+
</h4>
|
|
704
|
+
<ul style="line-height: 2; margin-left: 20px;">
|
|
705
|
+
|
|
706
|
+
<li style="font-size: 1.1em;">Challenger Sales course outline</li>
|
|
707
|
+
|
|
708
|
+
<li style="font-size: 1.1em;">Workshop planning</li>
|
|
709
|
+
|
|
710
|
+
<li style="font-size: 1.1em;">Blog: 10K monthly readers</li>
|
|
711
|
+
|
|
712
|
+
</ul>
|
|
713
|
+
</div>
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
<div class="action-now" style="margin-top: 50px; padding: 30px; background: linear-gradient(135deg, #ff4444, #ff8844); border-radius: 15px; text-align: center; box-shadow: 0 10px 30px rgba(255,68,68,0.3);">
|
|
717
|
+
<h3 style="font-size: 2.2em; margin-bottom: 15px; color: white; text-shadow: 2px 2px 4px rgba(0,0,0,0.3);">
|
|
718
|
+
🔥 ACTION THIS WEEK
|
|
719
|
+
</h3>
|
|
720
|
+
<p style="font-size: 1.4em; color: white; line-height: 1.8; font-weight: 600;">
|
|
721
|
+
Record first 3 chapters of audiobook - content marketing starts with content!
|
|
722
|
+
</p>
|
|
723
|
+
</div>
|
|
724
|
+
</section>
|
|
725
|
+
<!-- END STRATEGIC ENHANCEMENTS -->
|
|
726
|
+
|
|
727
|
+
|
|
728
|
+
<!-- 💎 SPECIFIC ACTIONABLE DETAILS - Added 2025-11-17 -->
|
|
729
|
+
<section class="specifics-section" style="margin-top: 50px; padding: 40px; background: linear-gradient(135deg, rgba(0,255,100,0.1), rgba(0,200,255,0.1)); border-radius: 15px; border: 3px solid #00ff88;">
|
|
730
|
+
<h2 style="font-size: 2.5em; margin-bottom: 30px; text-align: center; color: #00ff88;">
|
|
731
|
+
💎 SPECIFIC ACTIONS (Who, What, Where, When, How)
|
|
732
|
+
</h2>
|
|
733
|
+
|
|
734
|
+
<div class="quick-vs-long" style="display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 50px;">
|
|
735
|
+
<div class="quick-wins-box" style="padding: 30px; background: rgba(0,255,0,0.1); border-radius: 12px; border: 3px solid #00ff00;">
|
|
736
|
+
<h3 style="font-size: 2em; margin-bottom: 20px; color: #00ff00;">
|
|
737
|
+
⚡ QUICK WINS (This Week)
|
|
738
|
+
</h3>
|
|
739
|
+
|
|
740
|
+
<div style="margin-bottom: 25px; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 10px; border-left: 5px solid #00ff00;">
|
|
741
|
+
<h4 style="font-size: 1.4em; margin-bottom: 12px; color: #66ff66;">
|
|
742
|
+
Record audiobook (Chapter 1) THIS WEEKEND
|
|
743
|
+
</h4>
|
|
744
|
+
<div style="line-height: 1.8; font-size: 1.1em;">
|
|
745
|
+
<p><strong>👤 Who:</strong> You + Descript app</p>
|
|
746
|
+
<p><strong>📋 What:</strong> Read Chapter 1 of Tesseract Physics into Descript, auto-edit, export MP3</p>
|
|
747
|
+
|
|
748
|
+
<p><strong>🔧 Tools:</strong> Descript ($12/mo), Blue Yeti mic ($100 one-time), Quiet room</p>
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
<p><strong>💰 Cost:</strong> $112</p>
|
|
752
|
+
<p><strong>⏱️ Time:</strong> 4 hours</p>
|
|
753
|
+
<p style="margin-top: 10px; padding: 10px; background: rgba(0,255,0,0.2); border-radius: 5px;">
|
|
754
|
+
<strong>🎯 Outcome:</strong> Audiobook starts moving. Distribute on Spotify, Apple Podcasts for free marketing.
|
|
755
|
+
</p>
|
|
756
|
+
</div>
|
|
757
|
+
</div>
|
|
758
|
+
|
|
759
|
+
<div style="margin-bottom: 25px; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 10px; border-left: 5px solid #00ff00;">
|
|
760
|
+
<h4 style="font-size: 1.4em; margin-bottom: 12px; color: #66ff66;">
|
|
761
|
+
Write 3 LinkedIn posts (1 hour total)
|
|
762
|
+
</h4>
|
|
763
|
+
<div style="line-height: 1.8; font-size: 1.1em;">
|
|
764
|
+
<p><strong>👤 Who:</strong> You</p>
|
|
765
|
+
<p><strong>📋 What:</strong> undefined</p>
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
<p><strong>⏱️ Time:</strong> 20 min per post</p>
|
|
772
|
+
<p style="margin-top: 10px; padding: 10px; background: rgba(0,255,0,0.2); border-radius: 5px;">
|
|
773
|
+
<strong>🎯 Outcome:</strong> Start building audience. Target: 100 likes, 10 comments each.
|
|
774
|
+
</p>
|
|
775
|
+
</div>
|
|
776
|
+
</div>
|
|
777
|
+
|
|
778
|
+
<div style="margin-bottom: 25px; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 10px; border-left: 5px solid #00ff00;">
|
|
779
|
+
<h4 style="font-size: 1.4em; margin-bottom: 12px; color: #66ff66;">
|
|
780
|
+
Start newsletter (Substack, free tier)
|
|
781
|
+
</h4>
|
|
782
|
+
<div style="line-height: 1.8; font-size: 1.1em;">
|
|
783
|
+
<p><strong>👤 Who:</strong> You</p>
|
|
784
|
+
<p><strong>📋 What:</strong> Create "Consciousness Tech Weekly" - every Sunday, 3 sections: Learn, Build, Ship</p>
|
|
785
|
+
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
|
|
790
|
+
<p><strong>⏱️ Time:</strong> 2 hours setup + first post</p>
|
|
791
|
+
<p style="margin-top: 10px; padding: 10px; background: rgba(0,255,0,0.2); border-radius: 5px;">
|
|
792
|
+
<strong>🎯 Outcome:</strong> undefined
|
|
793
|
+
</p>
|
|
794
|
+
</div>
|
|
795
|
+
</div>
|
|
796
|
+
|
|
797
|
+
</div>
|
|
798
|
+
|
|
799
|
+
<div class="long-plays-box" style="padding: 30px; background: rgba(0,100,255,0.1); border-radius: 12px; border: 3px solid #0088ff;">
|
|
800
|
+
<h3 style="font-size: 2em; margin-bottom: 20px; color: #0088ff;">
|
|
801
|
+
🎯 LONG-TERM PLAYS (3-12 months)
|
|
802
|
+
</h3>
|
|
803
|
+
|
|
804
|
+
<div style="margin-bottom: 25px; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 10px; border-left: 5px solid #0088ff;">
|
|
805
|
+
<h4 style="font-size: 1.4em; margin-bottom: 12px; color: #66bbff;">
|
|
806
|
+
MCP Development Course ($150K revenue target)
|
|
807
|
+
</h4>
|
|
808
|
+
<div style="line-height: 1.8; font-size: 1.1em;">
|
|
809
|
+
<p><strong>👤 Who:</strong> You + course production VA ($2K)</p>
|
|
810
|
+
<p><strong>📋 What:</strong> 8-week course: "Building with MCP - From 0 to 100 Tools"</p>
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
<p><strong>📅 Timeline:</strong> 3 months to create, launch Q1 2025</p>
|
|
815
|
+
|
|
816
|
+
<p style="margin-top: 10px; padding: 10px; background: rgba(0,136,255,0.2); border-radius: 5px;">
|
|
817
|
+
<strong>🎯 Outcome:</strong> undefined
|
|
818
|
+
</p>
|
|
819
|
+
</div>
|
|
820
|
+
</div>
|
|
821
|
+
|
|
822
|
+
<div style="margin-bottom: 25px; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 10px; border-left: 5px solid #0088ff;">
|
|
823
|
+
<h4 style="font-size: 1.4em; margin-bottom: 12px; color: #66bbff;">
|
|
824
|
+
YouTube channel (50K subscribers by 2026)
|
|
825
|
+
</h4>
|
|
826
|
+
<div style="line-height: 1.8; font-size: 1.1em;">
|
|
827
|
+
<p><strong>👤 Who:</strong> You + video editor ($500/video)</p>
|
|
828
|
+
<p><strong>📋 What:</strong> 1 video per week, 10-15 minutes</p>
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
<p><strong>📅 Timeline:</strong> 12 months to 10K subs, 24 months to 50K</p>
|
|
833
|
+
|
|
834
|
+
<p style="margin-top: 10px; padding: 10px; background: rgba(0,136,255,0.2); border-radius: 5px;">
|
|
835
|
+
<strong>🎯 Outcome:</strong> undefined
|
|
836
|
+
</p>
|
|
837
|
+
</div>
|
|
838
|
+
</div>
|
|
839
|
+
|
|
840
|
+
</div>
|
|
841
|
+
</div>
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
<div class="outreach-plan" style="padding: 30px; background: rgba(255,0,255,0.1); border-radius: 12px; border: 3px solid #ff00ff; margin-bottom: 30px;">
|
|
847
|
+
<h3 style="font-size: 2em; margin-bottom: 20px; color: #ff00ff;">
|
|
848
|
+
📧 OUTREACH THIS WEEK
|
|
849
|
+
</h3>
|
|
850
|
+
|
|
851
|
+
<div style="padding: 20px; background: rgba(255,255,255,0.05); border-radius: 10px; margin-bottom: 15px;">
|
|
852
|
+
<h4 style="font-size: 1.5em; color: #ff66ff; margin-bottom: 10px;">
|
|
853
|
+
10 podcast hosts in your niche
|
|
854
|
+
</h4>
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
<p><strong>Goal:</strong> 3 bookings in next 2 months</p>
|
|
859
|
+
<p><strong>Time required:</strong> 1 hour to research + email</p>
|
|
860
|
+
|
|
861
|
+
</div>
|
|
862
|
+
|
|
863
|
+
</div>
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
|
|
868
|
+
|
|
869
|
+
</section>
|
|
870
|
+
<!-- END SPECIFIC ACTIONABLE DETAILS -->
|
|
871
|
+
|
|
872
|
+
</body>
|
|
873
|
+
</html>
|