thetacog-mcp 1.0.0 → 1.0.2

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.
@@ -0,0 +1,379 @@
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>🔒 WezTerm | The Vault</title>
7
+ <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🔒</text></svg>">
8
+ <style>
9
+ * { margin: 0; padding: 0; box-sizing: border-box; }
10
+
11
+ body {
12
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
13
+ background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
14
+ color: #1a1a1a;
15
+ padding: 40px 20px;
16
+ min-height: 100vh;
17
+ }
18
+
19
+ .container {
20
+ max-width: 1200px;
21
+ margin: 0 auto;
22
+ }
23
+
24
+ .back-button {
25
+ background: rgba(255, 255, 255, 0.2);
26
+ color: white;
27
+ border: 2px solid white;
28
+ padding: 14px 28px;
29
+ border-radius: 10px;
30
+ cursor: pointer;
31
+ font-size: 1.1em;
32
+ font-weight: bold;
33
+ margin-bottom: 40px;
34
+ transition: all 0.3s ease;
35
+ text-decoration: none;
36
+ display: inline-block;
37
+ }
38
+
39
+ .back-button:hover {
40
+ background: rgba(255, 255, 255, 0.3);
41
+ transform: translateX(-5px);
42
+ }
43
+
44
+ .header {
45
+ text-align: center;
46
+ margin-bottom: 50px;
47
+ }
48
+
49
+ .header h1 {
50
+ font-size: 4.5em;
51
+ color: white;
52
+ text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
53
+ margin-bottom: 15px;
54
+ }
55
+
56
+ .subtitle {
57
+ font-size: 1.5em;
58
+ color: white;
59
+ opacity: 0.95;
60
+ margin-bottom: 10px;
61
+ }
62
+
63
+ .command {
64
+ font-family: 'Monaco', 'Courier New', monospace;
65
+ background: rgba(0, 0, 0, 0.3);
66
+ color: white;
67
+ padding: 12px 24px;
68
+ border-radius: 8px;
69
+ display: inline-block;
70
+ font-size: 1.2em;
71
+ margin-top: 10px;
72
+ }
73
+
74
+ .memory-palace {
75
+ background: white;
76
+ color: #1a1a1a;
77
+ font-size: 2.2em;
78
+ font-style: italic;
79
+ text-align: center;
80
+ padding: 50px 40px;
81
+ border-radius: 20px;
82
+ margin-bottom: 50px;
83
+ box-shadow: 0 15px 50px rgba(0,0,0,0.3);
84
+ line-height: 1.6;
85
+ border-left: 10px solid #dc2626;
86
+ }
87
+
88
+ .stakes-card {
89
+ background: rgba(0, 0, 0, 0.3);
90
+ color: white;
91
+ padding: 30px;
92
+ border-radius: 15px;
93
+ text-align: center;
94
+ margin-bottom: 50px;
95
+ border: 3px solid rgba(255, 255, 255, 0.4);
96
+ }
97
+
98
+ .stakes-card h2 {
99
+ font-size: 2.5em;
100
+ margin-bottom: 15px;
101
+ }
102
+
103
+ .stakes-card p {
104
+ font-size: 1.3em;
105
+ line-height: 1.6;
106
+ }
107
+
108
+ .content-section {
109
+ background: white;
110
+ padding: 50px 40px;
111
+ border-radius: 20px;
112
+ margin-bottom: 40px;
113
+ box-shadow: 0 15px 50px rgba(0,0,0,0.2);
114
+ }
115
+
116
+ .content-section h2 {
117
+ font-size: 2.5em;
118
+ color: #dc2626;
119
+ margin-bottom: 30px;
120
+ border-bottom: 4px solid #dc2626;
121
+ padding-bottom: 15px;
122
+ }
123
+
124
+ .task-list {
125
+ list-style: none;
126
+ padding: 0;
127
+ }
128
+
129
+ .task-list li {
130
+ padding: 18px 0;
131
+ border-bottom: 2px solid #eee;
132
+ font-size: 1.2em;
133
+ color: #333;
134
+ line-height: 1.6;
135
+ }
136
+
137
+ .task-list li:last-child {
138
+ border-bottom: none;
139
+ }
140
+
141
+ .task-list li:before {
142
+ content: '🔒';
143
+ margin-right: 15px;
144
+ font-size: 1.3em;
145
+ }
146
+
147
+ .identity-rules {
148
+ background: #fef2f2;
149
+ padding: 30px;
150
+ border-radius: 15px;
151
+ border-left: 6px solid #dc2626;
152
+ margin-bottom: 30px;
153
+ }
154
+
155
+ .identity-rules h3 {
156
+ font-size: 1.8em;
157
+ color: #dc2626;
158
+ margin-bottom: 20px;
159
+ }
160
+
161
+ .identity-rules ul {
162
+ list-style: none;
163
+ padding: 0;
164
+ }
165
+
166
+ .identity-rules li {
167
+ padding: 12px 0;
168
+ font-size: 1.1em;
169
+ color: #444;
170
+ line-height: 1.6;
171
+ }
172
+
173
+ .identity-rules li:before {
174
+ content: '→';
175
+ margin-right: 12px;
176
+ color: #dc2626;
177
+ font-weight: bold;
178
+ font-size: 1.3em;
179
+ }
180
+
181
+ .footer {
182
+ text-align: center;
183
+ color: white;
184
+ margin-top: 60px;
185
+ font-size: 1.1em;
186
+ opacity: 0.9;
187
+ }
188
+
189
+ /* Room Switcher Navigation */
190
+ .room-switcher {
191
+ display: flex;
192
+ flex-wrap: wrap;
193
+ gap: 10px;
194
+ margin-bottom: 30px;
195
+ padding: 15px;
196
+ background: rgba(255,255,255,0.1);
197
+ border-radius: 12px;
198
+ }
199
+ .room-switcher a {
200
+ padding: 8px 16px;
201
+ border-radius: 8px;
202
+ text-decoration: none;
203
+ font-weight: bold;
204
+ font-size: 0.95em;
205
+ transition: transform 0.2s, background 0.2s;
206
+ }
207
+ .room-switcher a:hover { transform: scale(1.05); }
208
+ .room-switcher .builder { background: #3b82f6; color: white; }
209
+ .room-switcher .architect { background: #4f46e5; color: white; }
210
+ .room-switcher .operator { background: #22c55e; color: white; }
211
+ .room-switcher .vault { background: #ef4444; color: white; }
212
+ .room-switcher .voice { background: #a855f7; color: white; }
213
+ .room-switcher .laboratory { background: #06b6d4; color: white; }
214
+ .room-switcher .performer { background: #f59e0b; color: white; }
215
+ .room-switcher .network { background: #6366f1; color: white; }
216
+ .room-switcher .current { opacity: 0.5; pointer-events: none; }
217
+ </style>
218
+ </head>
219
+ <body>
220
+ <div class="container">
221
+ <a href="../cognitive-dashboard.html" class="back-button">← Back to Dashboard</a>
222
+
223
+ <!-- Room Switcher: Opens in new windows for fullscreen positioning -->
224
+ <nav class="room-switcher">
225
+ <a href="iterm2-builder.html" target="_blank" class="builder">🔨 Builder</a>
226
+ <a href="vscode-architect.html" target="_blank" class="architect">📐 Architect</a>
227
+ <a href="kitty-operator.html" target="_blank" class="operator">🎩 Operator</a>
228
+ <a href="wezterm-vault.html" target="_blank" class="vault current">🔒 Vault</a>
229
+ <a href="terminal-voice.html" target="_blank" class="voice">🎤 Voice</a>
230
+ <a href="cursor-laboratory.html" target="_blank" class="laboratory">🧪 Laboratory</a>
231
+ <a href="alacritty-performer.html" target="_blank" class="performer">🎭 Performer</a>
232
+ <a href="messages-network.html" target="_blank" class="network">🌐 Network</a>
233
+ </nav>
234
+
235
+ <div class="header">
236
+ <h1>🔒 THE VAULT</h1>
237
+ <div class="subtitle">TIER 1: EXISTENTIAL | Irreversible | 10-Year Horizon</div>
238
+ <div class="command">Cmd+Space → wezterm</div>
239
+ </div>
240
+
241
+ <div class="memory-palace">
242
+ "Step down into the silence. The air is cold here. Amber light filters through ancient glass. You are standing in front of the heavy steel door. You are not writing code here; you are writing law. Raw observations enter. Mathematical certainty leaves."
243
+ </div>
244
+
245
+ <div class="stakes-card">
246
+ <h2>⚠️ STAKES: PATENT-LEVEL</h2>
247
+ <p>One mistake = Loss of IP moat<br/>
248
+ Immutable truths only<br/>
249
+ This work echoes for 10+ years</p>
250
+ </div>
251
+
252
+ <div class="content-section">
253
+ <h2>The Flywheel: How The Vault Transforms Uncertainty into Law</h2>
254
+ <div style="background: #fef2f2; padding: 25px; border-radius: 12px; margin-bottom: 30px; border-left: 6px solid #dc2626;">
255
+ <h3 style="font-size: 1.5em; color: #dc2626; margin-bottom: 20px;">Inputs → Transformation → Outputs</h3>
256
+
257
+ <div style="margin-bottom: 25px;">
258
+ <h4 style="font-size: 1.3em; color: #991b1b; margin-bottom: 12px;">🔻 INPUTS (What WezTerm Receives)</h4>
259
+ <ul style="list-style: none; padding-left: 0;">
260
+ <li style="padding: 8px 0; color: #555; line-height: 1.6;"><strong>From iTerm2 (Builder):</strong> FIM artifacts with observed patterns (3×3 blocks, gestalt gaps) → WezTerm validates if 12×12 grid is the UNIQUE mathematical solution</li>
261
+ <li style="padding: 8px 0; color: #555; line-height: 1.6;"><strong>From Terminal (Voice):</strong> Public claims about "Miller's Law enforcement" → WezTerm proves whether gestalt constraints are patentable or just storytelling</li>
262
+ <li style="padding: 8px 0; color: #555; line-height: 1.6;"><strong>From VS Code (Architect):</strong> Business questions like "Can we patent the grounding method?" → WezTerm computes information geometry to quantify IP boundaries</li>
263
+ <li style="padding: 8px 0; color: #555; line-height: 1.6;"><strong>From Cursor (Laboratory):</strong> Experimental data (user attention heatmaps, 65.36-bit calculations) → WezTerm tests if the physics holds under scrutiny</li>
264
+ </ul>
265
+ </div>
266
+
267
+ <div style="margin-bottom: 25px;">
268
+ <h4 style="font-size: 1.3em; color: #991b1b; margin-bottom: 12px;">⚗️ TRANSFORMATION (What Happens Inside WezTerm)</h4>
269
+ <p style="color: #555; line-height: 1.7; font-size: 1.05em;">
270
+ WezTerm receives empirical observations and speculative claims, then applies <strong>first-principles mathematical rigor</strong>:
271
+ </p>
272
+ <ul style="list-style: none; padding-left: 0; margin-top: 12px;">
273
+ <li style="padding: 8px 0; color: #555; line-height: 1.6;">• Gestalt Constraint proof: Prove 12×12 is the ONLY solution to Miller's Law (7±2 constraints)</li>
274
+ <li style="padding: 8px 0; color: #555; line-height: 1.6;">• Information Geometry: Calculate exact bits (65.36) to quantify "how much certainty" the grid provides</li>
275
+ <li style="padding: 8px 0; color: #555; line-height: 1.6;">• Patent boundary definition: Separate "defensible physics" from "inspirational philosophy"</li>
276
+ <li style="padding: 8px 0; color: #555; line-height: 1.6;">• Trust Debt mathematics: Transform vague "context switching costs" into measurable cognitive load equations</li>
277
+ </ul>
278
+ </div>
279
+
280
+ <div>
281
+ <h4 style="font-size: 1.3em; color: #991b1b; margin-bottom: 12px;">🔺 OUTPUTS (What WezTerm Sends to Other Terminals)</h4>
282
+ <ul style="list-style: none; padding-left: 0;">
283
+ <li style="padding: 8px 0; color: #555; line-height: 1.6;"><strong>To Terminal (Voice):</strong> Proven theorems become viral talking points ("The 12×12 grid isn't a choice—it's a law")</li>
284
+ <li style="padding: 8px 0; color: #555; line-height: 1.6;"><strong>To VS Code (Architect):</strong> IP boundary clarity enables strategic decisions ("We CAN patent Method A, but NOT Method B")</li>
285
+ <li style="padding: 8px 0; color: #555; line-height: 1.6;"><strong>To iTerm2 (Builder):</strong> Mathematical proofs become implementation constraints ("Grid MUST be 12×12, not configurable")</li>
286
+ <li style="padding: 8px 0; color: #555; line-height: 1.6;"><strong>To Kitty (Operator):</strong> Proven ROI calculations ("65.36 bits = quantifiable cognitive savings for sales calls")</li>
287
+ <li style="padding: 8px 0; color: #555; line-height: 1.6;"><strong>Back to Cursor (Laboratory):</strong> New hypotheses to test ("If 12×12 is proven, what about 6×6 for simpler use cases?")</li>
288
+ </ul>
289
+ </div>
290
+ </div>
291
+ </div>
292
+
293
+ <div class="content-section">
294
+ <h2>Current Focus</h2>
295
+ <ul class="task-list">
296
+ <li><strong>Patent Claims:</strong> Gestalt Constraint proof (12×12 grid is the unique solution to Miller's Law)</li>
297
+ <li><strong>Information Geometry Physics Report:</strong> Validate the 65.36-bit calculation for FIM artifacts</li>
298
+ <li><strong>Book Mathematical Foundations:</strong> Chapters 7 & 8 revisions (Trust Debt, Unity Principle)</li>
299
+ <li><strong>IP Boundary Definition:</strong> Define the line between "Public Book" and "Private Patent"</li>
300
+ </ul>
301
+ </div>
302
+
303
+ <div class="content-section">
304
+ <div class="identity-rules">
305
+ <h3>The Rules of The Vault</h3>
306
+ <ul>
307
+ <li>WezTerm receives observations from iTerm2 and transforms them into mathematical certainty</li>
308
+ <li>WezTerm receives claims from Terminal and validates them with first-principles proofs</li>
309
+ <li>WezTerm receives business questions from VS Code and answers them with information geometry</li>
310
+ <li>WezTerm sends proven theorems to Terminal where they become brand narratives</li>
311
+ <li>WezTerm sends IP boundaries to VS Code where they become strategic constraints</li>
312
+ <li>WezTerm sends implementation laws to iTerm2 where they become unbreakable code rules</li>
313
+ <li>The flywheel: Empirical data enters The Vault as questions. Mathematical proofs leave The Vault as answers. Answers create new questions. The wheel accelerates.</li>
314
+ </ul>
315
+ </div>
316
+ </div>
317
+
318
+ <div class="content-section">
319
+ <h2>🔄 COMPLETE FLYWHEEL CYCLE: One Proof's Journey</h2>
320
+ <div style="background: #fef2f2; padding: 30px; border-radius: 15px; border-left: 6px solid #dc2626; margin-bottom: 25px;">
321
+ <h3 style="font-size: 1.5em; color: #dc2626; margin-bottom: 20px;">Example: The 12×12 Grid Uniqueness Proof</h3>
322
+
323
+ <div style="margin-bottom: 20px;">
324
+ <h4 style="color: #991b1b; margin-bottom: 10px;">STEP 1: iTerm2 → WezTerm (Empirical Data Arrives)</h4>
325
+ <p style="line-height: 1.7; color: #555;">iTerm2 ships the FIM artifacts. You observe: 3×3 blocks arranged in 4×4 grid with 0.8mm gestalt gaps. iTerm2 asks WezTerm: "Is this configuration arbitrary or mathematically necessary?" The question enters WezTerm. WezTerm begins the proof.</p>
326
+ </div>
327
+
328
+ <div style="margin-bottom: 20px;">
329
+ <h4 style="color: #991b1b; margin-bottom: 10px;">STEP 2: WezTerm Transforms (Mathematical Rigor Applied)</h4>
330
+ <p style="line-height: 1.7; color: #555;">Inside WezTerm, you apply Miller's Law (7±2 constraints). WezTerm calculates: 3×3 blocks create exactly 7 gestalt boundaries per region. WezTerm proves 12×12 is the UNIQUE solution—not 10×10 (too sparse), not 16×16 (too dense). WezTerm validates this with information geometry: 65.36 bits of configuration space. The proof is locked.</p>
331
+ </div>
332
+
333
+ <div style="margin-bottom: 20px;">
334
+ <h4 style="color: #991b1b; margin-bottom: 10px;">STEP 3: WezTerm → Terminal (Theorem Becomes Story)</h4>
335
+ <p style="line-height: 1.7; color: #555;">WezTerm sends the proven theorem to Terminal. Terminal receives: "12×12 is mathematically enforced." Terminal transforms it into the viral hook: "This grid holds more states than seconds since the Big Bang—and it's not a choice, it's a law." Terminal posts to LinkedIn.</p>
336
+ </div>
337
+
338
+ <div style="margin-bottom: 20px;">
339
+ <h4 style="color: #991b1b; margin-bottom: 10px;">STEP 4: Terminal → Kitty (Story Becomes Leads)</h4>
340
+ <p style="line-height: 1.7; color: #555;">The LinkedIn post generates 23 DMs. Kitty receives warm leads asking "How does this apply to my sales team?" Kitty closes 3 deals. Kitty also hears a pattern: 5 prospects ask "Can this scale to larger teams?" Kitty sends this objection upstream.</p>
341
+ </div>
342
+
343
+ <div style="margin-bottom: 20px;">
344
+ <h4 style="color: #991b1b; margin-bottom: 10px;">STEP 5: Kitty → VS Code (Market Signal Informs Strategy)</h4>
345
+ <p style="line-height: 1.7; color: #555;">VS Code receives Kitty's market intelligence: "Prospects want team-scale, not solo-scale." VS Code decides: "Pivot roadmap priority to multi-user dashboard." VS Code sends directive to iTerm2: "Ship team features next sprint."</p>
346
+ </div>
347
+
348
+ <div style="margin-bottom: 20px;">
349
+ <h4 style="color: #991b1b; margin-bottom: 10px;">STEP 6: VS Code → WezTerm (Strategic Question Returns)</h4>
350
+ <p style="line-height: 1.7; color: #555;">VS Code also asks WezTerm: "If we scale to 50-user teams, does the 12×12 grid still satisfy Miller's Law at the organizational level?" A new research question enters WezTerm. The cycle begins again—FASTER this time because WezTerm already has the foundational proof.</p>
351
+ </div>
352
+
353
+ <div style="background: white; padding: 20px; border-radius: 10px; margin-top: 20px;">
354
+ <p style="font-weight: bold; color: #dc2626; margin-bottom: 10px;">THE ACCELERATION:</p>
355
+ <p style="line-height: 1.7; color: #444;">
356
+ One proof in WezTerm → Viral story in Terminal → Revenue in Kitty → Strategic pivot in VS Code → New implementation in iTerm2 → Deeper research question back to WezTerm.
357
+ <strong>The wheel turns faster each cycle because every terminal is now smarter.</strong>
358
+ </p>
359
+ </div>
360
+ </div>
361
+ </div>
362
+
363
+ <div class="content-section">
364
+ <h2>Why WezTerm? The Flywheel Foundation</h2>
365
+ <p style="font-size: 1.2em; line-height: 1.8; color: #444;">
366
+ WezTerm is the <strong>gravitational center</strong> of the flywheel. This terminal is configured for deep, uninterrupted focus. The rust/amber color theme signals "archaeological deep work"—first principles thinking. When you open WezTerm, your brain knows: <em>this is where immutable truths are forged</em>.
367
+ </p>
368
+ <p style="font-size: 1.2em; line-height: 1.8; color: #444; margin-top: 20px;">
369
+ No reactive inputs in WezTerm. No email in WezTerm. No LinkedIn in WezTerm. Only the physics in WezTerm. Every proof validated in WezTerm becomes an engine component in Terminal, a strategic constraint in VS Code, a build rule in iTerm2, and a sales point in Kitty. <strong>WezTerm doesn't spin the wheel—WezTerm IS the axle.</strong>
370
+ </p>
371
+ </div>
372
+
373
+ <div class="footer">
374
+ <p><strong>The Vault | WezTerm</strong></p>
375
+ <p>Where Code Becomes Law</p>
376
+ </div>
377
+ </div>
378
+ </body>
379
+ </html>