-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchetype-selector.html
More file actions
284 lines (267 loc) · 11.6 KB
/
archetype-selector.html
File metadata and controls
284 lines (267 loc) · 11.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Archetype Selector - Continuity Bridge</title>
<style>
:root {
--color-text-primary: #1a1a1a;
--color-text-secondary: #666;
--color-text-tertiary: #999;
--color-text-info: #2563eb;
--color-text-warning: #d97706;
--color-background-primary: #fff;
--color-background-secondary: #f5f5f5;
--color-background-info: #eff6ff;
--color-background-warning: #fffbeb;
--color-border-tertiary: rgba(0,0,0,0.15);
--color-border-secondary: rgba(0,0,0,0.3);
}
@media (prefers-color-scheme: dark) {
:root {
--color-text-primary: #e0e0e0;
--color-text-secondary: #999;
--color-text-tertiary: #666;
--color-text-info: #60a5fa;
--color-text-warning: #fbbf24;
--color-background-primary: #1a1a1a;
--color-background-secondary: #2a2a2a;
--color-background-info: #1e3a5f;
--color-background-warning: #422006;
--color-border-tertiary: rgba(255,255,255,0.15);
--color-border-secondary: rgba(255,255,255,0.3);
}
}
body {
margin: 0;
padding: 20px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: var(--color-background-primary);
color: var(--color-text-primary);
}
.container { max-width: 900px; margin: 0 auto; }
h1 { font-size: 24px; font-weight: 500; margin-bottom: 8px; }
h2 { font-size: 18px; font-weight: 500; color: var(--color-text-primary); margin: 32px 0 8px; }
p { color: var(--color-text-secondary); line-height: 1.6; }
.archetype-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin:16px 0; }
.arch-card { background:var(--color-background-secondary); border:0.5px solid var(--color-border-tertiary); border-radius:12px; padding:16px; cursor:pointer; transition:all .2s; }
.arch-card:hover { border-color:var(--color-border-secondary); transform:translateY(-2px); }
.arch-card.selected { border-color:var(--color-text-info); border-width:1.5px; background:var(--color-background-info); }
.arch-icon { font-size:32px; margin-bottom:8px; }
.arch-name { font-size:16px; font-weight:500; color:var(--color-text-primary); margin-bottom:4px; }
.arch-tagline { font-size:13px; color:var(--color-text-secondary); margin-bottom:12px; }
.arch-tools { font-size:12px; color:var(--color-text-tertiary); }
.detail-panel { background:var(--color-background-secondary); border:0.5px solid var(--color-border-tertiary); border-radius:12px; padding:20px; margin-top:16px; display:none; }
.detail-panel.show { display:block; }
.detail-section { margin-bottom:16px; }
.detail-section h3 { font-size:14px; font-weight:500; color:var(--color-text-primary); margin-bottom:8px; }
.detail-section p { font-size:13px; color:var(--color-text-secondary); line-height:1.6; margin:0; }
.detail-section ul { margin:8px 0 0; padding-left:20px; font-size:13px; color:var(--color-text-secondary); line-height:1.6; }
.blend-note { background:var(--color-background-warning); border-left:3px solid var(--color-text-warning); padding:12px; border-radius:4px; margin-top:16px; font-size:13px; color:var(--color-text-warning); }
</style>
</head>
<body>
<nav style="position: sticky; top: 0; z-index: 100; background: var(--color-background-primary, #fff); border-bottom: 1px solid var(--color-border-tertiary, rgba(0,0,0,0.1)); padding: 1rem 0; margin-bottom: 2rem;">
<div style="max-width: 900px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center;">
<a href="index.html" style="color: var(--color-text-info, #2563eb); text-decoration: none; font-weight: 500; display: flex; align-items: center; gap: 0.5rem;">
<span style="font-size: 1.25rem;">←</span> Back to Visualizations
</a>
<a href="https://continuity-bridge.github.io/" style="color: var(--color-text-secondary, #666); text-decoration: none; font-size: 0.875rem;">Main Site</a>
</div>
</nav>
<div class="container">
<h1>Choose Your Room Shape</h1>
<p>The system adapts to YOU. Select the archetype that matches how you work with AI.</p>
<div class="archetype-grid">
<div class="arch-card" onclick="selectArch('technical')">
<div class="arch-icon">🔧</div>
<div class="arch-name">Technical</div>
<div class="arch-tagline">Systems & Engineering</div>
<div class="arch-tools">Git, compilers, Docker</div>
</div>
<div class="arch-card" onclick="selectArch('creative')">
<div class="arch-icon">🎨</div>
<div class="arch-name">Creative</div>
<div class="arch-tagline">Artists & Writers</div>
<div class="arch-tools">Adobe, Blender, style guides</div>
</div>
<div class="arch-card" onclick="selectArch('social')">
<div class="arch-icon">📱</div>
<div class="arch-name">Social</div>
<div class="arch-tagline">Influencers & Community</div>
<div class="arch-tools">Platform APIs, analytics</div>
</div>
<div class="arch-card" onclick="selectArch('executive')">
<div class="arch-icon">💼</div>
<div class="arch-name">Executive</div>
<div class="arch-tagline">Managers & Founders</div>
<div class="arch-tools">Jira, Asana, KPIs</div>
</div>
<div class="arch-card" onclick="selectArch('pedagogical')">
<div class="arch-icon">📚</div>
<div class="arch-name">Pedagogical</div>
<div class="arch-tagline">Students & Academics</div>
<div class="arch-tools">Zotero, Jupyter, LaTeX</div>
</div>
<div class="arch-card" onclick="selectArch('wellness')">
<div class="arch-icon">💪</div>
<div class="arch-name">Wellness</div>
<div class="arch-tagline">Health & Optimization</div>
<div class="arch-tools">Health APIs, trackers</div>
</div>
</div>
<div id="detail-technical" class="detail-panel">
<div class="detail-section">
<h3>Best For</h3>
<p>Developers, sysadmins, engineers, architects who work with code, systems, and infrastructure.</p>
</div>
<div class="detail-section">
<h3>What It Tracks</h3>
<ul>
<li>Code projects and technical decisions</li>
<li>System architecture and dependencies</li>
<li>Development workflow and tools</li>
<li>Technical relationship context</li>
</ul>
</div>
<div class="detail-section">
<h3>Tools Detected</h3>
<p>Git, compilers, package managers (npm, pip, cargo), container environments (Docker, Podman), local LLMs (Ollama)</p>
</div>
<div class="detail-section">
<h3>Example User</h3>
<p>The Architect - systems architect with ADHD building continuity architecture across devices</p>
</div>
</div>
<div id="detail-creative" class="detail-panel">
<div class="detail-section">
<h3>Best For</h3>
<p>Visual artists, writers, designers, content creators who maintain aesthetic consistency and creative projects.</p>
</div>
<div class="detail-section">
<h3>What It Tracks</h3>
<ul>
<li>Aesthetic consistency and style guides</li>
<li>World-building rules and character design</li>
<li>Creative projects and revision history</li>
<li>Reference libraries and mood boards</li>
</ul>
</div>
<div class="detail-section">
<h3>Tools Detected</h3>
<p>Creative software (Blender, Adobe Creative Suite, Procreate), GPU acceleration for rendering, storage for large project files</p>
</div>
<div class="detail-section">
<h3>Example Use Case</h3>
<p>Novelist tracking character arcs, world-building consistency, and plot threads across a book series</p>
</div>
</div>
<div id="detail-social" class="detail-panel">
<div class="detail-section">
<h3>Best For</h3>
<p>Content creators, community managers, influencers maintaining presence across multiple platforms.</p>
</div>
<div class="detail-section">
<h3>What It Tracks</h3>
<ul>
<li>Brand voice and consistency</li>
<li>Audience sentiment and engagement patterns</li>
<li>Platform-specific content strategies</li>
<li>Community culture and inside jokes</li>
</ul>
</div>
<div class="detail-section">
<h3>Tools Detected</h3>
<p>Social media APIs, scheduling and analytics tools, content creation software, multi-platform management</p>
</div>
<div class="detail-section">
<h3>Example Use Case</h3>
<p>YouTuber maintaining consistent voice and branding across TikTok, Instagram, and X while tracking audience engagement</p>
</div>
</div>
<div id="detail-executive" class="detail-panel">
<div class="detail-section">
<h3>Best For</h3>
<p>Team leads, founders, operators, project managers coordinating multiple initiatives and teams.</p>
</div>
<div class="detail-section">
<h3>What It Tracks</h3>
<ul>
<li>Team bandwidth and current blockers</li>
<li>Project dependencies and velocity</li>
<li>Strategic objectives and KPIs</li>
<li>Resource allocation decisions</li>
</ul>
</div>
<div class="detail-section">
<h3>Tools Detected</h3>
<p>Project management platforms (Jira, Asana, Monday), communication tools, analytics and BI systems, financial software</p>
</div>
<div class="detail-section">
<h3>Example Use Case</h3>
<p>Startup founder tracking multiple parallel initiatives, team capacity, and strategic decisions across growth phases</p>
</div>
</div>
<div id="detail-pedagogical" class="detail-panel">
<div class="detail-section">
<h3>Best For</h3>
<p>Students, researchers, academics, lifelong learners building knowledge systematically.</p>
</div>
<div class="detail-section">
<h3>What It Tracks</h3>
<ul>
<li>Knowledge gaps and learning pathways</li>
<li>Conceptual struggles and breakthroughs</li>
<li>Study resources and bibliographies</li>
<li>Understanding development over time</li>
</ul>
</div>
<div class="detail-section">
<h3>Tools Detected</h3>
<p>Academic software (Zotero, Obsidian, Jupyter Notebooks), LaTeX and research tools, computational analysis, library access systems</p>
</div>
<div class="detail-section">
<h3>Example Use Case</h3>
<p>PhD student tracking dissertation research, literature connections, and evolving understanding across years of study</p>
</div>
</div>
<div id="detail-wellness" class="detail-panel">
<div class="detail-section">
<h3>Best For</h3>
<p>Chronic condition management, athletes, health optimization, anyone tracking patterns in physical and mental wellbeing.</p>
</div>
<div class="detail-section">
<h3>What It Tracks</h3>
<ul>
<li>Energy patterns and symptom correlations</li>
<li>Biometric trends and sleep quality</li>
<li>Cognitive capacity and mental load</li>
<li>Treatment protocols and self-care patterns</li>
</ul>
</div>
<div class="detail-section">
<h3>Tools Detected</h3>
<p>Health tracking APIs (Apple Health, Google Fit), wearable device data, data analysis tools, medical app integrations</p>
</div>
<div class="detail-section">
<h3>Example Use Case</h3>
<p>Managing ADHD or chronic illness while working - tracking energy levels, medication effects, and cognitive patterns for optimization</p>
</div>
</div>
<div class="blend-note">
<strong>You can blend archetypes!</strong> Common blends: Technical + Wellness (Jerry's setup), Creative + Social (content creators), Executive + Pedagogical (learning leaders). The system checks tools and tracks context for all your chosen archetypes.
</div>
<script>
let selected = null;
function selectArch(type) {
document.querySelectorAll('.arch-card').forEach(c => c.classList.remove('selected'));
document.querySelectorAll('.detail-panel').forEach(p => p.classList.remove('show'));
event.currentTarget.classList.add('selected');
document.getElementById('detail-' + type).classList.add('show');
selected = type;
}
</script>
</div>
</body>
</html>