-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsequence-map.html
More file actions
469 lines (413 loc) · 13.6 KB
/
sequence-map.html
File metadata and controls
469 lines (413 loc) · 13.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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vibe Coding Sequence — Framework Map</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=DM+Mono:wght@400;500&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'DM Sans', sans-serif;
background: #F7F6F2;
color: #1A1A18;
min-height: 100vh;
padding: 48px 24px 64px;
}
.page {
max-width: 720px;
margin: 0 auto;
}
/* Header */
.header {
margin-bottom: 48px;
}
.header-eyebrow {
font-family: 'DM Mono', monospace;
font-size: 11px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #888880;
margin-bottom: 10px;
}
.header-title {
font-size: 28px;
font-weight: 600;
letter-spacing: -0.02em;
line-height: 1.2;
color: #1A1A18;
margin-bottom: 10px;
}
.header-sub {
font-size: 15px;
color: #555550;
line-height: 1.5;
}
/* Stage blocks */
.stage {
margin-bottom: 20px;
border-radius: 14px;
overflow: hidden;
border: 1.5px solid transparent;
}
.stage-header {
padding: 14px 20px 12px;
display: flex;
align-items: center;
gap: 12px;
}
.stage-badge {
font-family: 'DM Mono', monospace;
font-size: 10px;
font-weight: 500;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 3px 8px;
border-radius: 4px;
}
.stage-name {
font-size: 13px;
font-weight: 600;
letter-spacing: 0.01em;
}
.stage-range {
font-family: 'DM Mono', monospace;
font-size: 11px;
color: #888880;
margin-left: auto;
}
/* Stage: Before You Build — slate */
.stage-before {
border-color: #C5C9D4;
background: #FAFBFD;
}
.stage-before .stage-header { background: #EEF1F7; }
.stage-before .stage-badge { background: #D8DCE8; color: #3D4560; }
.stage-before .stage-name { color: #3D4560; }
.stage-before .step-number { color: #5A6080; }
.stage-before .step-dot { background: #5A6080; }
.stage-before .connector { border-color: #C5C9D4; }
/* Stage: While You Build — warm amber */
.stage-while {
border-color: #D9C9A0;
background: #FDFBF5;
}
.stage-while .stage-header { background: #F5EDD8; }
.stage-while .stage-badge { background: #EAD9A8; color: #6B4F10; }
.stage-while .stage-name { color: #6B4F10; }
.stage-while .step-number { color: #8B6520; }
.stage-while .step-dot { background: #8B6520; }
.stage-while .connector { border-color: #D9C9A0; }
/* Security checkpoint highlight */
.step-security {
background: #FFF8EC !important;
}
.step-security .step-name::after {
content: 'Security checkpoint';
display: inline-block;
margin-left: 10px;
font-family: 'DM Mono', monospace;
font-size: 10px;
letter-spacing: 0.06em;
text-transform: uppercase;
color: #B07010;
background: #F5DFA0;
padding: 2px 7px;
border-radius: 3px;
vertical-align: middle;
position: relative;
top: -1px;
}
/* Stage: Going Live — forest */
.stage-live {
border-color: #AECDB8;
background: #F6FBF7;
}
.stage-live .stage-header { background: #E2F0E6; }
.stage-live .stage-badge { background: #C0DEC8; color: #1E5C30; }
.stage-live .stage-name { color: #1E5C30; }
.stage-live .step-number { color: #2A7040; }
.stage-live .step-dot { background: #2A7040; }
.stage-live .connector { border-color: #AECDB8; }
/* Steps */
.steps { padding: 0 0 8px; }
.step {
display: flex;
align-items: flex-start;
gap: 0;
position: relative;
}
/* Connector column */
.step-connector-col {
width: 48px;
display: flex;
flex-direction: column;
align-items: center;
flex-shrink: 0;
padding-top: 18px;
}
.step-dot {
width: 8px;
height: 8px;
border-radius: 50%;
flex-shrink: 0;
z-index: 1;
}
.step-line {
width: 1.5px;
flex: 1;
min-height: 16px;
}
.stage-before .step-line { background: #C5C9D4; }
.stage-while .step-line { background: #D9C9A0; }
.stage-live .step-line { background: #AECDB8; }
.step:last-child .step-line { display: none; }
/* Step content */
.step-content {
flex: 1;
padding: 14px 20px 14px 4px;
border-bottom: 1px solid transparent;
}
.stage-before .step-content { border-color: #E8EBF2; }
.stage-while .step-content { border-color: #EDE4CA; }
.stage-live .step-content { border-color: #D4E8D8; }
.step:last-child .step-content { border-bottom: none; }
.step-meta {
display: flex;
align-items: baseline;
gap: 8px;
margin-bottom: 3px;
}
.step-number {
font-family: 'DM Mono', monospace;
font-size: 11px;
font-weight: 500;
flex-shrink: 0;
}
.step-name {
font-size: 14px;
font-weight: 600;
color: #1A1A18;
line-height: 1.3;
}
.step-desc {
font-size: 13px;
color: #666660;
line-height: 1.45;
padding-left: 0;
}
/* Stage-to-stage connector arrow */
.stage-arrow {
text-align: center;
padding: 4px 0;
color: #AAAAAA;
font-size: 18px;
line-height: 1;
margin-bottom: -4px;
}
/* Footer */
.footer {
margin-top: 40px;
padding-top: 24px;
border-top: 1px solid #E0DED8;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: gap;
gap: 12px;
}
.footer-left {
font-size: 12px;
color: #888880;
line-height: 1.5;
}
.footer-link {
font-family: 'DM Mono', monospace;
font-size: 11px;
color: #2A7040;
text-decoration: none;
border-bottom: 1px solid #AECDB8;
padding-bottom: 1px;
}
.footer-link:hover { color: #1E5C30; border-color: #2A7040; }
</style>
</head>
<body>
<div class="page">
<div class="header">
<div class="header-eyebrow">Framework overview</div>
<h1 class="header-title">Vibe Coding Sequence</h1>
<p class="header-sub">A 10-step framework for non-technical builders. Three stages, two security checkpoints, one sequence.</p>
</div>
<!-- Stage 1: Before You Build -->
<div class="stage stage-before">
<div class="stage-header">
<span class="stage-badge">Stage 1</span>
<span class="stage-name">Before You Build</span>
<span class="stage-range">Steps 1–3</span>
</div>
<div class="steps">
<div class="step">
<div class="step-connector-col">
<div class="step-dot"></div>
<div class="step-line"></div>
</div>
<div class="step-content">
<div class="step-meta">
<span class="step-number">01</span>
<span class="step-name">Requirements Interview</span>
</div>
<div class="step-desc">Define who uses the application, what data gets stored, and what security requirements exist — before opening any coding platform.</div>
</div>
</div>
<div class="step">
<div class="step-connector-col">
<div class="step-dot"></div>
<div class="step-line"></div>
</div>
<div class="step-content">
<div class="step-meta">
<span class="step-number">02</span>
<span class="step-name">Platform Recommendation</span>
</div>
<div class="step-desc">Match your requirements to the right AI coding platform. A deliberate choice, not a default.</div>
</div>
</div>
<div class="step">
<div class="step-connector-col">
<div class="step-dot"></div>
<div class="step-line"></div>
</div>
<div class="step-content">
<div class="step-meta">
<span class="step-number">03</span>
<span class="step-name">PRD Generator</span>
</div>
<div class="step-desc">Produce a Product Requirements Document with security built in. The contract between what you intend to build and what the platform builds.</div>
</div>
</div>
</div>
</div>
<div class="stage-arrow">↓</div>
<!-- Stage 2: While You Build -->
<div class="stage stage-while">
<div class="stage-header">
<span class="stage-badge">Stage 2</span>
<span class="stage-name">While You Build</span>
<span class="stage-range">Steps 4–8</span>
</div>
<div class="steps">
<div class="step">
<div class="step-connector-col">
<div class="step-dot"></div>
<div class="step-line"></div>
</div>
<div class="step-content">
<div class="step-meta">
<span class="step-number">04</span>
<span class="step-name">Foundation Prompt</span>
</div>
<div class="step-desc">Build authentication, user accounts, and database schema only. No features yet. The foundation is the hardest thing to change later.</div>
</div>
</div>
<div class="step">
<div class="step-connector-col">
<div class="step-dot"></div>
<div class="step-line"></div>
</div>
<div class="step-content step-security">
<div class="step-meta">
<span class="step-number">05</span>
<span class="step-name">Pre-Launch Audit</span>
</div>
<div class="step-desc">Audit the foundation before building features on top of it. Security issues caught here cost an hour to fix. Found later, they cost much more.</div>
</div>
</div>
<div class="step">
<div class="step-connector-col">
<div class="step-dot"></div>
<div class="step-line"></div>
</div>
<div class="step-content">
<div class="step-meta">
<span class="step-number">06</span>
<span class="step-name">Core Features Prompt</span>
</div>
<div class="step-desc">Build the primary functionality against the PRD, using the verified secure foundation from Steps 4–5.</div>
</div>
</div>
<div class="step">
<div class="step-connector-col">
<div class="step-dot"></div>
<div class="step-line"></div>
</div>
<div class="step-content">
<div class="step-meta">
<span class="step-number">07</span>
<span class="step-name">UI/UX Prompt</span>
</div>
<div class="step-desc">Refine the interface and user experience once the features are working. UI work on incomplete features creates rework.</div>
</div>
</div>
<div class="step">
<div class="step-connector-col">
<div class="step-dot"></div>
<div class="step-line"></div>
</div>
<div class="step-content step-security">
<div class="step-meta">
<span class="step-number">08</span>
<span class="step-name">Final Security Pass</span>
</div>
<div class="step-desc">Comprehensive OWASP Top 10 review before deployment. The last opportunity to find problems before real users encounter them.</div>
</div>
</div>
</div>
</div>
<div class="stage-arrow">↓</div>
<!-- Stage 3: Going Live -->
<div class="stage stage-live">
<div class="stage-header">
<span class="stage-badge">Stage 3</span>
<span class="stage-name">Going Live</span>
<span class="stage-range">Steps 9–10</span>
</div>
<div class="steps">
<div class="step">
<div class="step-connector-col">
<div class="step-dot"></div>
<div class="step-line"></div>
</div>
<div class="step-content">
<div class="step-meta">
<span class="step-number">09</span>
<span class="step-name">Deployment Prompt</span>
</div>
<div class="step-desc">Deploy to production with environment variables configured, HTTPS verified, and deployment settings reviewed. Deployment is where misconfigurations happen.</div>
</div>
</div>
<div class="step">
<div class="step-connector-col">
<div class="step-dot"></div>
<div class="step-line"></div>
</div>
<div class="step-content">
<div class="step-meta">
<span class="step-number">10</span>
<span class="step-name">Pre-Launch Checklist</span>
</div>
<div class="step-desc">A final human-driven review. Not automated, not delegated. You verify that what got built matches what you intended before sharing it with anyone.</div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="footer-left">
Created by Brandon Uttley · Public scaffolding CC BY-NC 4.0<br>
Implementation layer All Rights Reserved
</div>
<a href="https://bit.ly/vcs-gumroad" class="footer-link">Get the full framework →</a>
</div>
</div>
</body>
</html>