cc-starter 1.0.6 → 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/README.md +11 -0
- package/lib/constants.js +112 -2
- package/lib/scaffold.js +105 -1
- package/lib/wizard.js +57 -3
- package/package.json +1 -1
- package/cc-starter /342/200/224 LinkedIn Carousel Slides.pdf +0 -0
- package/docs/index.html +0 -969
- package/docs/linkedin-carousel.html +0 -1078
|
@@ -1,1078 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="de">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>cc-starter — LinkedIn Carousel Slides</title>
|
|
7
|
-
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
8
|
-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
9
|
-
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=IBM+Plex+Mono:wght@400;500;600&display=swap" rel="stylesheet">
|
|
10
|
-
<style>
|
|
11
|
-
/* ═══════════════════════════════════════════════════════════
|
|
12
|
-
VARIABLES & BASE
|
|
13
|
-
═══════════════════════════════════════════════════════════ */
|
|
14
|
-
:root {
|
|
15
|
-
--bg: #0a0a0f;
|
|
16
|
-
--bg-card: rgba(255,255,255,0.03);
|
|
17
|
-
--cyan: #00d4ff;
|
|
18
|
-
--cyan-dim: rgba(0,212,255,0.15);
|
|
19
|
-
--purple: #a855f7;
|
|
20
|
-
--purple-dim: rgba(168,85,247,0.15);
|
|
21
|
-
--text: #e0e0e8;
|
|
22
|
-
--text-dim: #8b8b9e;
|
|
23
|
-
--text-bright: #ffffff;
|
|
24
|
-
--red: #ff4444;
|
|
25
|
-
--red-dim: rgba(255,68,68,0.12);
|
|
26
|
-
--green: #22c55e;
|
|
27
|
-
--border: rgba(255,255,255,0.08);
|
|
28
|
-
--font-display: 'Outfit', sans-serif;
|
|
29
|
-
--font-mono: 'IBM Plex Mono', monospace;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
|
|
33
|
-
|
|
34
|
-
body {
|
|
35
|
-
font-family: var(--font-display);
|
|
36
|
-
background: #000;
|
|
37
|
-
color: var(--text);
|
|
38
|
-
line-height: 1.6;
|
|
39
|
-
-webkit-font-smoothing: antialiased;
|
|
40
|
-
padding: 40px;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
/* ═══════════════════════════════════════════════════════════
|
|
44
|
-
PAGE HEADER (hidden in print)
|
|
45
|
-
═══════════════════════════════════════════════════════════ */
|
|
46
|
-
.page-header {
|
|
47
|
-
max-width: 1080px;
|
|
48
|
-
margin: 0 auto 40px;
|
|
49
|
-
padding: 24px 32px;
|
|
50
|
-
background: var(--bg-card);
|
|
51
|
-
border: 1px solid var(--border);
|
|
52
|
-
border-radius: 16px;
|
|
53
|
-
font-size: 0.95rem;
|
|
54
|
-
color: var(--text-dim);
|
|
55
|
-
line-height: 1.7;
|
|
56
|
-
}
|
|
57
|
-
.page-header strong { color: var(--text-bright); }
|
|
58
|
-
.page-header code {
|
|
59
|
-
font-family: var(--font-mono);
|
|
60
|
-
background: rgba(0,212,255,0.08);
|
|
61
|
-
padding: 2px 8px;
|
|
62
|
-
border-radius: 4px;
|
|
63
|
-
color: var(--cyan);
|
|
64
|
-
font-size: 0.85rem;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.slides-container {
|
|
68
|
-
display: flex;
|
|
69
|
-
flex-direction: column;
|
|
70
|
-
align-items: center;
|
|
71
|
-
gap: 32px;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
/* ═══════════════════════════════════════════════════════════
|
|
75
|
-
SLIDE BASE
|
|
76
|
-
═══════════════════════════════════════════════════════════ */
|
|
77
|
-
.slide {
|
|
78
|
-
width: 1080px;
|
|
79
|
-
height: 1080px;
|
|
80
|
-
background: var(--bg);
|
|
81
|
-
padding: 80px;
|
|
82
|
-
display: flex;
|
|
83
|
-
flex-direction: column;
|
|
84
|
-
justify-content: center;
|
|
85
|
-
position: relative;
|
|
86
|
-
overflow: hidden;
|
|
87
|
-
border-radius: 4px;
|
|
88
|
-
flex-shrink: 0;
|
|
89
|
-
page-break-after: always;
|
|
90
|
-
break-after: page;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
/* ═══════════════════════════════════════════════════════════
|
|
94
|
-
FLOATING ORBS
|
|
95
|
-
═══════════════════════════════════════════════════════════ */
|
|
96
|
-
.orb {
|
|
97
|
-
position: absolute;
|
|
98
|
-
border-radius: 50%;
|
|
99
|
-
pointer-events: none;
|
|
100
|
-
filter: blur(80px);
|
|
101
|
-
opacity: 0.15;
|
|
102
|
-
z-index: 0;
|
|
103
|
-
}
|
|
104
|
-
.orb-cyan { background: var(--cyan); }
|
|
105
|
-
.orb-purple { background: var(--purple); }
|
|
106
|
-
|
|
107
|
-
/* ═══════════════════════════════════════════════════════════
|
|
108
|
-
BRANDING FOOTER
|
|
109
|
-
═══════════════════════════════════════════════════════════ */
|
|
110
|
-
.slide-brand {
|
|
111
|
-
position: absolute;
|
|
112
|
-
bottom: 32px;
|
|
113
|
-
right: 40px;
|
|
114
|
-
display: flex;
|
|
115
|
-
align-items: center;
|
|
116
|
-
gap: 12px;
|
|
117
|
-
font-family: var(--font-mono);
|
|
118
|
-
font-size: 14px;
|
|
119
|
-
color: var(--text-dim);
|
|
120
|
-
z-index: 10;
|
|
121
|
-
}
|
|
122
|
-
.slide-brand .brand-name {
|
|
123
|
-
font-weight: 600;
|
|
124
|
-
color: var(--text);
|
|
125
|
-
letter-spacing: -0.02em;
|
|
126
|
-
}
|
|
127
|
-
.slide-brand .brand-name span { color: var(--cyan); }
|
|
128
|
-
.slide-brand .slide-num {
|
|
129
|
-
padding: 3px 10px;
|
|
130
|
-
border-radius: 6px;
|
|
131
|
-
background: rgba(255,255,255,0.05);
|
|
132
|
-
border: 1px solid var(--border);
|
|
133
|
-
font-size: 12px;
|
|
134
|
-
color: var(--text-dim);
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
/* ═══════════════════════════════════════════════════════════
|
|
138
|
-
SHARED TYPOGRAPHY
|
|
139
|
-
═══════════════════════════════════════════════════════════ */
|
|
140
|
-
.slide-content { position: relative; z-index: 1; }
|
|
141
|
-
|
|
142
|
-
.gradient-text {
|
|
143
|
-
background: linear-gradient(135deg, var(--cyan), var(--purple));
|
|
144
|
-
-webkit-background-clip: text;
|
|
145
|
-
-webkit-text-fill-color: transparent;
|
|
146
|
-
background-clip: text;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
.slide-title {
|
|
150
|
-
font-size: 52px;
|
|
151
|
-
font-weight: 800;
|
|
152
|
-
line-height: 1.15;
|
|
153
|
-
color: var(--text-bright);
|
|
154
|
-
margin-bottom: 40px;
|
|
155
|
-
letter-spacing: -0.02em;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.section-label {
|
|
159
|
-
font-family: var(--font-mono);
|
|
160
|
-
font-size: 14px;
|
|
161
|
-
font-weight: 600;
|
|
162
|
-
letter-spacing: 0.15em;
|
|
163
|
-
text-transform: uppercase;
|
|
164
|
-
color: var(--cyan);
|
|
165
|
-
margin-bottom: 16px;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
/* ═══════════════════════════════════════════════════════════
|
|
169
|
-
STATEMENT SLIDES
|
|
170
|
-
═══════════════════════════════════════════════════════════ */
|
|
171
|
-
.slide.statement {
|
|
172
|
-
text-align: center;
|
|
173
|
-
align-items: center;
|
|
174
|
-
}
|
|
175
|
-
.slide.statement .slide-content {
|
|
176
|
-
display: flex;
|
|
177
|
-
flex-direction: column;
|
|
178
|
-
align-items: center;
|
|
179
|
-
justify-content: center;
|
|
180
|
-
}
|
|
181
|
-
.big-text {
|
|
182
|
-
font-family: var(--font-display);
|
|
183
|
-
font-weight: 800;
|
|
184
|
-
font-size: 72px;
|
|
185
|
-
line-height: 1.2;
|
|
186
|
-
color: var(--text-bright);
|
|
187
|
-
letter-spacing: -0.02em;
|
|
188
|
-
}
|
|
189
|
-
.sub-text {
|
|
190
|
-
font-size: 36px;
|
|
191
|
-
color: var(--text-dim);
|
|
192
|
-
margin-top: 20px;
|
|
193
|
-
line-height: 1.4;
|
|
194
|
-
}
|
|
195
|
-
.accent-text {
|
|
196
|
-
background: linear-gradient(135deg, var(--cyan), var(--purple));
|
|
197
|
-
-webkit-background-clip: text;
|
|
198
|
-
-webkit-text-fill-color: transparent;
|
|
199
|
-
background-clip: text;
|
|
200
|
-
}
|
|
201
|
-
.small-text {
|
|
202
|
-
font-size: 28px;
|
|
203
|
-
color: var(--text-dim);
|
|
204
|
-
margin-top: 12px;
|
|
205
|
-
line-height: 1.4;
|
|
206
|
-
}
|
|
207
|
-
.bottom-text {
|
|
208
|
-
font-size: 22px;
|
|
209
|
-
color: var(--cyan);
|
|
210
|
-
margin-top: 48px;
|
|
211
|
-
line-height: 1.5;
|
|
212
|
-
max-width: 800px;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
/* ═══════════════════════════════════════════════════════════
|
|
216
|
-
GLOW BOXES — ALWAYS GLOWING (static, visible in screenshots)
|
|
217
|
-
═══════════════════════════════════════════════════════════ */
|
|
218
|
-
.glow-box {
|
|
219
|
-
background: rgba(255,255,255,0.03);
|
|
220
|
-
border: 1px solid rgba(0,212,255,0.25);
|
|
221
|
-
border-radius: 20px;
|
|
222
|
-
padding: 32px;
|
|
223
|
-
box-shadow:
|
|
224
|
-
0 0 20px rgba(0,212,255,0.12),
|
|
225
|
-
0 0 40px rgba(168,85,247,0.08),
|
|
226
|
-
inset 0 1px 0 rgba(255,255,255,0.05);
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
.glow-box.glow-strong {
|
|
230
|
-
border-color: rgba(0,212,255,0.4);
|
|
231
|
-
box-shadow:
|
|
232
|
-
0 0 30px rgba(0,212,255,0.2),
|
|
233
|
-
0 0 60px rgba(168,85,247,0.15),
|
|
234
|
-
inset 0 1px 0 rgba(255,255,255,0.08);
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
.glow-box.glow-purple {
|
|
238
|
-
border-color: rgba(168,85,247,0.35);
|
|
239
|
-
box-shadow:
|
|
240
|
-
0 0 30px rgba(168,85,247,0.15),
|
|
241
|
-
0 0 60px rgba(0,212,255,0.1),
|
|
242
|
-
inset 0 1px 0 rgba(255,255,255,0.06);
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
/* ═══════════════════════════════════════════════════════════
|
|
246
|
-
CARDS (non-glow fallback)
|
|
247
|
-
═══════════════════════════════════════════════════════════ */
|
|
248
|
-
.card-title {
|
|
249
|
-
font-size: 28px;
|
|
250
|
-
font-weight: 700;
|
|
251
|
-
color: var(--text-bright);
|
|
252
|
-
margin-bottom: 16px;
|
|
253
|
-
}
|
|
254
|
-
.card-desc {
|
|
255
|
-
font-size: 18px;
|
|
256
|
-
color: var(--text-dim);
|
|
257
|
-
line-height: 1.7;
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
/* ═══════════════════════════════════════════════════════════
|
|
261
|
-
CODE BOXES
|
|
262
|
-
═══════════════════════════════════════════════════════════ */
|
|
263
|
-
.cmd-box {
|
|
264
|
-
display: inline-flex;
|
|
265
|
-
align-items: center;
|
|
266
|
-
gap: 14px;
|
|
267
|
-
padding: 20px 32px;
|
|
268
|
-
border-radius: 14px;
|
|
269
|
-
font-family: var(--font-mono);
|
|
270
|
-
font-size: 28px;
|
|
271
|
-
font-weight: 600;
|
|
272
|
-
background: rgba(0,212,255,0.06);
|
|
273
|
-
border: 1px solid rgba(0,212,255,0.2);
|
|
274
|
-
color: var(--cyan);
|
|
275
|
-
}
|
|
276
|
-
.cmd-box .prompt { color: var(--purple); }
|
|
277
|
-
|
|
278
|
-
.mini-term {
|
|
279
|
-
font-family: var(--font-mono);
|
|
280
|
-
font-size: 18px;
|
|
281
|
-
padding: 20px 24px;
|
|
282
|
-
background: rgba(0,0,0,0.5);
|
|
283
|
-
border-radius: 12px;
|
|
284
|
-
border: 1px solid var(--border);
|
|
285
|
-
color: var(--cyan);
|
|
286
|
-
white-space: pre-wrap;
|
|
287
|
-
line-height: 1.7;
|
|
288
|
-
margin-top: 16px;
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
.terminal {
|
|
292
|
-
background: rgba(0,0,0,0.5);
|
|
293
|
-
border: 1px solid var(--border);
|
|
294
|
-
border-radius: 12px;
|
|
295
|
-
padding: 24px 28px;
|
|
296
|
-
font-family: var(--font-mono);
|
|
297
|
-
font-size: 16px;
|
|
298
|
-
line-height: 1.8;
|
|
299
|
-
color: var(--text);
|
|
300
|
-
}
|
|
301
|
-
.terminal .line-dim { color: var(--text-dim); }
|
|
302
|
-
.terminal .line-cyan { color: var(--cyan); }
|
|
303
|
-
.terminal .line-green { color: var(--green); }
|
|
304
|
-
.terminal .line-purple { color: var(--purple); }
|
|
305
|
-
|
|
306
|
-
/* ═══════════════════════════════════════════════════════════
|
|
307
|
-
LIST ITEMS
|
|
308
|
-
═══════════════════════════════════════════════════════════ */
|
|
309
|
-
.point-list {
|
|
310
|
-
list-style: none;
|
|
311
|
-
display: flex;
|
|
312
|
-
flex-direction: column;
|
|
313
|
-
gap: 24px;
|
|
314
|
-
}
|
|
315
|
-
.point-list li {
|
|
316
|
-
display: flex;
|
|
317
|
-
align-items: flex-start;
|
|
318
|
-
gap: 20px;
|
|
319
|
-
font-size: 24px;
|
|
320
|
-
line-height: 1.5;
|
|
321
|
-
color: var(--text);
|
|
322
|
-
}
|
|
323
|
-
.point-icon {
|
|
324
|
-
flex-shrink: 0;
|
|
325
|
-
width: 40px;
|
|
326
|
-
height: 40px;
|
|
327
|
-
border-radius: 10px;
|
|
328
|
-
display: flex;
|
|
329
|
-
align-items: center;
|
|
330
|
-
justify-content: center;
|
|
331
|
-
font-size: 20px;
|
|
332
|
-
font-weight: 700;
|
|
333
|
-
margin-top: 2px;
|
|
334
|
-
}
|
|
335
|
-
.point-icon.red {
|
|
336
|
-
background: var(--red-dim);
|
|
337
|
-
color: rgba(255,68,68,0.6);
|
|
338
|
-
}
|
|
339
|
-
.point-icon.cyan {
|
|
340
|
-
background: var(--cyan-dim);
|
|
341
|
-
color: var(--cyan);
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
/* ═══════════════════════════════════════════════════════════
|
|
345
|
-
STEP CIRCLES
|
|
346
|
-
═══════════════════════════════════════════════════════════ */
|
|
347
|
-
.step {
|
|
348
|
-
display: flex;
|
|
349
|
-
align-items: center;
|
|
350
|
-
gap: 24px;
|
|
351
|
-
}
|
|
352
|
-
.step-number {
|
|
353
|
-
flex-shrink: 0;
|
|
354
|
-
width: 56px;
|
|
355
|
-
height: 56px;
|
|
356
|
-
border-radius: 50%;
|
|
357
|
-
display: flex;
|
|
358
|
-
align-items: center;
|
|
359
|
-
justify-content: center;
|
|
360
|
-
font-size: 24px;
|
|
361
|
-
font-weight: 800;
|
|
362
|
-
background: linear-gradient(135deg, var(--cyan), var(--purple));
|
|
363
|
-
color: #0a0a0f;
|
|
364
|
-
}
|
|
365
|
-
.step-text {
|
|
366
|
-
font-size: 24px;
|
|
367
|
-
color: var(--text);
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
/* ═══════════════════════════════════════════════════════════
|
|
371
|
-
TIER BOXES
|
|
372
|
-
═══════════════════════════════════════════════════════════ */
|
|
373
|
-
.tier {
|
|
374
|
-
border-radius: 16px;
|
|
375
|
-
padding: 28px 32px;
|
|
376
|
-
}
|
|
377
|
-
.tier-name {
|
|
378
|
-
font-size: 22px;
|
|
379
|
-
font-weight: 700;
|
|
380
|
-
color: var(--text-bright);
|
|
381
|
-
margin-bottom: 6px;
|
|
382
|
-
}
|
|
383
|
-
.tier-plugins {
|
|
384
|
-
font-family: var(--font-mono);
|
|
385
|
-
font-size: 14px;
|
|
386
|
-
color: var(--cyan);
|
|
387
|
-
margin-bottom: 8px;
|
|
388
|
-
}
|
|
389
|
-
.tier-desc {
|
|
390
|
-
font-size: 16px;
|
|
391
|
-
color: var(--text-dim);
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
/* Tier glow levels */
|
|
395
|
-
.tier.glow-1 {
|
|
396
|
-
background: rgba(255,255,255,0.03);
|
|
397
|
-
border: 1px solid rgba(0,212,255,0.15);
|
|
398
|
-
box-shadow: 0 0 20px rgba(0,212,255,0.06);
|
|
399
|
-
}
|
|
400
|
-
.tier.glow-2 {
|
|
401
|
-
background: rgba(255,255,255,0.03);
|
|
402
|
-
border: 1px solid rgba(0,212,255,0.25);
|
|
403
|
-
box-shadow: 0 0 30px rgba(0,212,255,0.1), 0 0 15px rgba(168,85,247,0.05);
|
|
404
|
-
}
|
|
405
|
-
.tier.glow-3 {
|
|
406
|
-
background: rgba(255,255,255,0.03);
|
|
407
|
-
border: 1px solid rgba(168,85,247,0.35);
|
|
408
|
-
box-shadow: 0 0 40px rgba(168,85,247,0.12), 0 0 25px rgba(0,212,255,0.08);
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
/* ═══════════════════════════════════════════════════════════
|
|
412
|
-
PLUGIN MINI GLOW BOXES
|
|
413
|
-
═══════════════════════════════════════════════════════════ */
|
|
414
|
-
.plugin-mini {
|
|
415
|
-
background: rgba(255,255,255,0.02);
|
|
416
|
-
border: 1px solid rgba(0,212,255,0.15);
|
|
417
|
-
border-radius: 14px;
|
|
418
|
-
padding: 18px 24px;
|
|
419
|
-
box-shadow: 0 0 15px rgba(0,212,255,0.06), 0 0 30px rgba(168,85,247,0.04);
|
|
420
|
-
}
|
|
421
|
-
.plugin-name {
|
|
422
|
-
font-family: var(--font-mono);
|
|
423
|
-
font-size: 18px;
|
|
424
|
-
font-weight: 600;
|
|
425
|
-
color: var(--cyan);
|
|
426
|
-
margin-bottom: 4px;
|
|
427
|
-
}
|
|
428
|
-
.plugin-desc {
|
|
429
|
-
font-size: 16px;
|
|
430
|
-
color: var(--text-dim);
|
|
431
|
-
line-height: 1.5;
|
|
432
|
-
}
|
|
433
|
-
|
|
434
|
-
/* ═══════════════════════════════════════════════════════════
|
|
435
|
-
HIGHLIGHT BOX
|
|
436
|
-
═══════════════════════════════════════════════════════════ */
|
|
437
|
-
.highlight-box {
|
|
438
|
-
padding: 20px 28px;
|
|
439
|
-
border-radius: 12px;
|
|
440
|
-
background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(168,85,247,0.08));
|
|
441
|
-
border: 1px solid rgba(0,212,255,0.15);
|
|
442
|
-
text-align: center;
|
|
443
|
-
font-size: 26px;
|
|
444
|
-
font-weight: 700;
|
|
445
|
-
color: var(--text-bright);
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
/* ═══════════════════════════════════════════════════════════
|
|
449
|
-
CTA LINKS
|
|
450
|
-
═══════════════════════════════════════════════════════════ */
|
|
451
|
-
.cta-links {
|
|
452
|
-
display: flex;
|
|
453
|
-
flex-direction: column;
|
|
454
|
-
gap: 14px;
|
|
455
|
-
}
|
|
456
|
-
.cta-link {
|
|
457
|
-
display: flex;
|
|
458
|
-
align-items: center;
|
|
459
|
-
gap: 14px;
|
|
460
|
-
font-size: 20px;
|
|
461
|
-
color: var(--text-dim);
|
|
462
|
-
}
|
|
463
|
-
.cta-link .label {
|
|
464
|
-
font-weight: 600;
|
|
465
|
-
color: var(--text);
|
|
466
|
-
min-width: 80px;
|
|
467
|
-
}
|
|
468
|
-
.cta-link .url {
|
|
469
|
-
font-family: var(--font-mono);
|
|
470
|
-
font-size: 17px;
|
|
471
|
-
color: var(--cyan);
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
/* ═══════════════════════════════════════════════════════════
|
|
475
|
-
PRINT STYLES
|
|
476
|
-
═══════════════════════════════════════════════════════════ */
|
|
477
|
-
@media print {
|
|
478
|
-
body {
|
|
479
|
-
margin: 0;
|
|
480
|
-
padding: 0;
|
|
481
|
-
background: #000;
|
|
482
|
-
}
|
|
483
|
-
.page-header { display: none; }
|
|
484
|
-
.slides-container { gap: 0; }
|
|
485
|
-
.slide {
|
|
486
|
-
page-break-after: always;
|
|
487
|
-
break-after: page;
|
|
488
|
-
margin: 0;
|
|
489
|
-
box-shadow: none;
|
|
490
|
-
border-radius: 0;
|
|
491
|
-
}
|
|
492
|
-
.slide:last-child {
|
|
493
|
-
page-break-after: avoid;
|
|
494
|
-
break-after: avoid;
|
|
495
|
-
}
|
|
496
|
-
}
|
|
497
|
-
|
|
498
|
-
@page {
|
|
499
|
-
size: 1080px 1080px;
|
|
500
|
-
margin: 0;
|
|
501
|
-
}
|
|
502
|
-
</style>
|
|
503
|
-
</head>
|
|
504
|
-
<body>
|
|
505
|
-
|
|
506
|
-
<!-- Page Header (hidden in print) -->
|
|
507
|
-
<div class="page-header">
|
|
508
|
-
<strong>LinkedIn Carousel Slides</strong> — 15 Slides, je 1080x1080px.<br>
|
|
509
|
-
<code>Ctrl+P</code> → Als PDF speichern (Papierformat auf 1080x1080px setzen) oder jeden Slide einzeln screenshotten.
|
|
510
|
-
</div>
|
|
511
|
-
|
|
512
|
-
<div class="slides-container">
|
|
513
|
-
|
|
514
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
515
|
-
SLIDE 1: COVER
|
|
516
|
-
══════════════════════════════════════════════════════════ -->
|
|
517
|
-
<div class="slide" data-slide-number="1">
|
|
518
|
-
<div class="orb orb-cyan" style="width:500px;height:500px;top:-180px;left:-180px;"></div>
|
|
519
|
-
<div class="orb orb-purple" style="width:450px;height:450px;bottom:-150px;right:-150px;"></div>
|
|
520
|
-
<div class="orb orb-cyan" style="width:300px;height:300px;top:55%;left:65%;opacity:0.07;"></div>
|
|
521
|
-
|
|
522
|
-
<div class="slide-content" style="text-align:center;display:flex;flex-direction:column;align-items:center;">
|
|
523
|
-
<svg width="120" height="120" viewBox="0 0 16 16" style="margin-bottom:40px;" aria-label="Claude Logo">
|
|
524
|
-
<defs><linearGradient id="claude-gradient" x1="0" y1="0" x2="16" y2="16" gradientUnits="userSpaceOnUse"><stop stop-color="#00d4ff"/><stop offset="1" stop-color="#a855f7"/></linearGradient></defs>
|
|
525
|
-
<path fill="url(#claude-gradient)" d="m3.127 10.604 3.135-1.76.053-.153-.053-.085H6.11l-.525-.032-1.791-.048-1.554-.065-1.505-.08-.38-.081L0 7.832l.036-.234.32-.214.455.04 1.009.069 1.513.105 1.097.064 1.626.17h.259l.036-.105-.089-.065-.068-.064-1.566-1.062-1.695-1.121-.887-.646-.48-.327-.243-.306-.104-.67.435-.48.585.04.15.04.593.456 1.267.981 1.654 1.218.242.202.097-.068.012-.049-.109-.181-.9-1.626-.96-1.655-.428-.686-.113-.411a2 2 0 0 1-.068-.484l.496-.674L4.446 0l.662.089.279.242.411.94.666 1.48 1.033 2.014.302.597.162.553.06.17h.105v-.097l.085-1.134.157-1.392.154-1.792.052-.504.25-.605.497-.327.387.186.319.456-.045.294-.19 1.23-.37 1.93-.243 1.29h.142l.161-.16.654-.868 1.097-1.372.484-.545.565-.601.363-.287h.686l.505.751-.226.775-.707.895-.585.759-.839 1.13-.524.904.048.072.125-.012 1.897-.403 1.024-.186 1.223-.21.553.258.06.263-.218.536-1.307.323-1.533.307-2.284.54-.028.02.032.04 1.029.098.44.024h1.077l2.005.15.525.346.315.424-.053.323-.807.411-3.631-.863-.872-.218h-.12v.073l.726.71 1.331 1.202 1.667 1.55.084.383-.214.302-.226-.032-1.464-1.101-.565-.497-1.28-1.077h-.084v.113l.295.432 1.557 2.34.08.718-.112.234-.404.141-.444-.08-.911-1.28-.94-1.44-.759-1.291-.093.053-.448 4.821-.21.246-.484.186-.403-.307-.214-.496.214-.98.258-1.28.21-1.016.19-1.263.112-.42-.008-.028-.092.012-.953 1.307-1.448 1.957-1.146 1.227-.274.109-.477-.247.045-.44.266-.39 1.586-2.018.956-1.25.617-.723-.004-.105h-.036l-4.212 2.736-.75.096-.324-.302.04-.496.154-.162 1.267-.871z"/>
|
|
526
|
-
</svg>
|
|
527
|
-
<div style="font-size:88px;font-weight:900;line-height:1.05;letter-spacing:-0.03em;margin-bottom:8px;">
|
|
528
|
-
<span class="gradient-text">Claude Code.</span>
|
|
529
|
-
</div>
|
|
530
|
-
<div style="font-size:72px;font-weight:800;color:var(--text-bright);margin-bottom:48px;letter-spacing:-0.02em;">
|
|
531
|
-
Supercharged.
|
|
532
|
-
</div>
|
|
533
|
-
<div class="cmd-box" style="margin-bottom:48px;font-size:30px;">
|
|
534
|
-
<span class="prompt">$</span> npx cc-starter
|
|
535
|
-
</div>
|
|
536
|
-
<p style="font-size:16px;color:var(--text-dim);font-family:var(--font-mono);letter-spacing:0.05em;">
|
|
537
|
-
Open Source · MIT · Kostenlos
|
|
538
|
-
</p>
|
|
539
|
-
</div>
|
|
540
|
-
|
|
541
|
-
<div class="slide-brand">
|
|
542
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
543
|
-
<div class="slide-num">01/17</div>
|
|
544
|
-
</div>
|
|
545
|
-
</div>
|
|
546
|
-
|
|
547
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
548
|
-
SLIDE 2: STATEMENT — Power vs Setup
|
|
549
|
-
══════════════════════════════════════════════════════════ -->
|
|
550
|
-
<div class="slide statement" data-slide-number="2">
|
|
551
|
-
<div class="orb orb-cyan" style="width:500px;height:500px;top:-200px;left:-150px;"></div>
|
|
552
|
-
<div class="orb orb-purple" style="width:400px;height:400px;bottom:-150px;right:-120px;"></div>
|
|
553
|
-
|
|
554
|
-
<div class="slide-content">
|
|
555
|
-
<div class="big-text" style="margin-bottom:24px;">Claude Code ist <span class="accent-text">mächtig.</span></div>
|
|
556
|
-
<div class="big-text" style="font-size:56px;color:var(--text-dim);">Das Setup sollte es nicht sein.</div>
|
|
557
|
-
</div>
|
|
558
|
-
|
|
559
|
-
<div class="slide-brand">
|
|
560
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
561
|
-
<div class="slide-num">02/17</div>
|
|
562
|
-
</div>
|
|
563
|
-
</div>
|
|
564
|
-
|
|
565
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
566
|
-
SLIDE 3: STATEMENT — The Problem
|
|
567
|
-
══════════════════════════════════════════════════════════ -->
|
|
568
|
-
<div class="slide statement" data-slide-number="3">
|
|
569
|
-
<div class="orb orb-purple" style="width:400px;height:400px;top:-120px;right:-100px;"></div>
|
|
570
|
-
<div class="orb orb-cyan" style="width:300px;height:300px;bottom:-100px;left:-80px;opacity:0.08;"></div>
|
|
571
|
-
|
|
572
|
-
<div class="slide-content">
|
|
573
|
-
<div class="big-text" style="margin-bottom:16px;">Jede neue Session.</div>
|
|
574
|
-
<div class="big-text" style="margin-bottom:16px;">Dasselbe Setup.</div>
|
|
575
|
-
<div class="big-text accent-text">Immer wieder.</div>
|
|
576
|
-
</div>
|
|
577
|
-
|
|
578
|
-
<div class="slide-brand">
|
|
579
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
580
|
-
<div class="slide-num">03/17</div>
|
|
581
|
-
</div>
|
|
582
|
-
</div>
|
|
583
|
-
|
|
584
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
585
|
-
SLIDE 3: PROBLEM DETAILS
|
|
586
|
-
══════════════════════════════════════════════════════════ -->
|
|
587
|
-
<div class="slide" data-slide-number="3">
|
|
588
|
-
<div class="orb orb-purple" style="width:400px;height:400px;top:-120px;right:-100px;"></div>
|
|
589
|
-
<div class="orb orb-cyan" style="width:350px;height:350px;bottom:-100px;left:-80px;opacity:0.08;"></div>
|
|
590
|
-
|
|
591
|
-
<div class="slide-content">
|
|
592
|
-
<div class="section-label">Das Problem</div>
|
|
593
|
-
<div class="slide-title">Kennt ihr das auch?</div>
|
|
594
|
-
<ul class="point-list">
|
|
595
|
-
<li>
|
|
596
|
-
<div class="point-icon red">✗</div>
|
|
597
|
-
<span>Jede Session startet von Null</span>
|
|
598
|
-
</li>
|
|
599
|
-
<li>
|
|
600
|
-
<div class="point-icon red">✗</div>
|
|
601
|
-
<span>Claude liest ganze 500-Zeilen-Dateien</span>
|
|
602
|
-
</li>
|
|
603
|
-
<li>
|
|
604
|
-
<div class="point-icon red">✗</div>
|
|
605
|
-
<span>Kein Gedächtnis zwischen Sessions</span>
|
|
606
|
-
</li>
|
|
607
|
-
<li>
|
|
608
|
-
<div class="point-icon red">✗</div>
|
|
609
|
-
<span>Manuelles Plugin-Setup</span>
|
|
610
|
-
</li>
|
|
611
|
-
<li>
|
|
612
|
-
<div class="point-icon red">✗</div>
|
|
613
|
-
<span>Keine Ahnung was dein Projekt kostet</span>
|
|
614
|
-
</li>
|
|
615
|
-
</ul>
|
|
616
|
-
</div>
|
|
617
|
-
|
|
618
|
-
<div class="slide-brand">
|
|
619
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
620
|
-
<div class="slide-num">04/17</div>
|
|
621
|
-
</div>
|
|
622
|
-
</div>
|
|
623
|
-
|
|
624
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
625
|
-
SLIDE 4: SOLUTION DETAILS
|
|
626
|
-
══════════════════════════════════════════════════════════ -->
|
|
627
|
-
<div class="slide" data-slide-number="4">
|
|
628
|
-
<div class="orb orb-cyan" style="width:450px;height:450px;top:-150px;left:-120px;"></div>
|
|
629
|
-
<div class="orb orb-purple" style="width:350px;height:350px;bottom:-120px;right:-80px;opacity:0.09;"></div>
|
|
630
|
-
|
|
631
|
-
<div class="slide-content">
|
|
632
|
-
<div class="section-label">Die Lösung</div>
|
|
633
|
-
<div class="slide-title">Damit ist jetzt Schluss.</div>
|
|
634
|
-
<ul class="point-list">
|
|
635
|
-
<li>
|
|
636
|
-
<div class="point-icon cyan">✓</div>
|
|
637
|
-
<span>Regeln, Gedächtnis und Kontext — sofort bereit</span>
|
|
638
|
-
</li>
|
|
639
|
-
<li>
|
|
640
|
-
<div class="point-icon cyan">✓</div>
|
|
641
|
-
<span>Nur Types und Signaturen — 90% weniger Tokens</span>
|
|
642
|
-
</li>
|
|
643
|
-
<li>
|
|
644
|
-
<div class="point-icon cyan">✓</div>
|
|
645
|
-
<span>Persistentes Gedächtnis über alle Sessions</span>
|
|
646
|
-
</li>
|
|
647
|
-
<li>
|
|
648
|
-
<div class="point-icon cyan">✓</div>
|
|
649
|
-
<span>Plugin-Presets mit einem Klick</span>
|
|
650
|
-
</li>
|
|
651
|
-
<li>
|
|
652
|
-
<div class="point-icon cyan">✓</div>
|
|
653
|
-
<span>COCOMO-Schätzung sagt es dir sofort</span>
|
|
654
|
-
</li>
|
|
655
|
-
</ul>
|
|
656
|
-
</div>
|
|
657
|
-
|
|
658
|
-
<div class="slide-brand">
|
|
659
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
660
|
-
<div class="slide-num">05/17</div>
|
|
661
|
-
</div>
|
|
662
|
-
</div>
|
|
663
|
-
|
|
664
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
665
|
-
SLIDE 5: STATEMENT — The Solution
|
|
666
|
-
══════════════════════════════════════════════════════════ -->
|
|
667
|
-
<div class="slide statement" data-slide-number="5">
|
|
668
|
-
<div class="orb orb-cyan" style="width:450px;height:450px;top:-150px;left:-120px;"></div>
|
|
669
|
-
<div class="orb orb-purple" style="width:350px;height:350px;bottom:-120px;right:-80px;opacity:0.09;"></div>
|
|
670
|
-
|
|
671
|
-
<div class="slide-content">
|
|
672
|
-
<div class="big-text accent-text" style="margin-bottom:16px;">Ein Befehl.</div>
|
|
673
|
-
<div class="big-text" style="margin-bottom:16px;">Alles eingerichtet.</div>
|
|
674
|
-
<div class="big-text">In 30 Sekunden.</div>
|
|
675
|
-
</div>
|
|
676
|
-
|
|
677
|
-
<div class="slide-brand">
|
|
678
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
679
|
-
<div class="slide-num">06/17</div>
|
|
680
|
-
</div>
|
|
681
|
-
</div>
|
|
682
|
-
|
|
683
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
684
|
-
SLIDE 6: STATEMENT — Features Intro
|
|
685
|
-
══════════════════════════════════════════════════════════ -->
|
|
686
|
-
<div class="slide statement" data-slide-number="6">
|
|
687
|
-
<div class="orb orb-cyan" style="width:400px;height:400px;top:-130px;left:-100px;"></div>
|
|
688
|
-
<div class="orb orb-purple" style="width:380px;height:380px;bottom:-130px;right:-100px;"></div>
|
|
689
|
-
|
|
690
|
-
<div class="slide-content">
|
|
691
|
-
<div class="big-text" style="margin-bottom:16px;">Was du bekommst.</div>
|
|
692
|
-
<div class="small-text">Alles was du brauchst.</div>
|
|
693
|
-
<div class="small-text">Nichts, was du nicht brauchst.</div>
|
|
694
|
-
<div class="bottom-text">Sechs Tools, die jede Claude Code Session schneller, günstiger und smarter machen.</div>
|
|
695
|
-
</div>
|
|
696
|
-
|
|
697
|
-
<div class="slide-brand">
|
|
698
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
699
|
-
<div class="slide-num">07/17</div>
|
|
700
|
-
</div>
|
|
701
|
-
</div>
|
|
702
|
-
|
|
703
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
704
|
-
SLIDE 7: TOKEN-SAVING SCRIPTS
|
|
705
|
-
══════════════════════════════════════════════════════════ -->
|
|
706
|
-
<div class="slide" data-slide-number="7">
|
|
707
|
-
<div class="orb orb-cyan" style="width:400px;height:400px;top:-100px;right:-100px;opacity:0.1;"></div>
|
|
708
|
-
<div class="orb orb-purple" style="width:300px;height:300px;bottom:-80px;left:-60px;opacity:0.08;"></div>
|
|
709
|
-
|
|
710
|
-
<div class="slide-content" style="display:flex;flex-direction:column;gap:28px;">
|
|
711
|
-
<div class="glow-box">
|
|
712
|
-
<div style="font-size:44px;margin-bottom:12px;">⚡</div>
|
|
713
|
-
<div class="card-title" style="font-size:34px;">Token-sparende Scripts</div>
|
|
714
|
-
<p class="card-desc" style="margin-bottom:24px;">
|
|
715
|
-
Statt ganze Dateien zu lesen, extrahiert <code style="font-family:var(--font-mono);color:var(--cyan);background:rgba(0,212,255,0.08);padding:2px 8px;border-radius:4px;">vibe-code.js</code> nur Types, Funktions-Signaturen und Imports. Claude bekommt genau den Kontext den es braucht — ohne tausende Zeilen Code durchzulesen.
|
|
716
|
-
</p>
|
|
717
|
-
<div class="mini-term" style="margin-bottom:24px;font-size:17px;">
|
|
718
|
-
<span style="color:var(--text-dim);">$</span> <span style="color:var(--cyan);">vibe-code.js types api.ts</span>
|
|
719
|
-
<span style="color:var(--green);">✓ 200 tokens</span> <span style="color:var(--text-dim);">(saved 1,800)</span>
|
|
720
|
-
|
|
721
|
-
<span style="color:var(--text-dim);">$</span> <span style="color:var(--cyan);">vibe-code.js functions utils.ts</span>
|
|
722
|
-
<span style="color:var(--green);">✓ 55 tokens</span> <span style="color:var(--text-dim);">(saved 930)</span></div>
|
|
723
|
-
<div class="highlight-box">
|
|
724
|
-
<span class="gradient-text">~90% weniger Token-Verbrauch</span>
|
|
725
|
-
</div>
|
|
726
|
-
</div>
|
|
727
|
-
</div>
|
|
728
|
-
|
|
729
|
-
<div class="slide-brand">
|
|
730
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
731
|
-
<div class="slide-num">08/17</div>
|
|
732
|
-
</div>
|
|
733
|
-
</div>
|
|
734
|
-
|
|
735
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
736
|
-
SLIDE 8: COCOMO + REPORT
|
|
737
|
-
══════════════════════════════════════════════════════════ -->
|
|
738
|
-
<div class="slide" data-slide-number="8">
|
|
739
|
-
<div class="orb orb-purple" style="width:420px;height:420px;top:-140px;left:-100px;"></div>
|
|
740
|
-
<div class="orb orb-cyan" style="width:300px;height:300px;bottom:-80px;right:-60px;opacity:0.08;"></div>
|
|
741
|
-
|
|
742
|
-
<div class="slide-content" style="display:flex;flex-direction:column;gap:28px;">
|
|
743
|
-
<!-- COCOMO Card -->
|
|
744
|
-
<div class="glow-box">
|
|
745
|
-
<div class="card-title">💰 COCOMO-Schätzung</div>
|
|
746
|
-
<p class="card-desc" style="margin-bottom:16px;">
|
|
747
|
-
COCOMO-II ist ein anerkanntes Modell zur Software-Kostenschätzung. Es zählt deine Lines of Code und berechnet daraus Aufwand, Zeitplan und Kosten — direkt im Terminal.
|
|
748
|
-
</p>
|
|
749
|
-
<div class="mini-term" style="font-size:18px;">
|
|
750
|
-
<span style="color:var(--text-dim);">Lines of Code:</span> <span style="color:var(--text-bright);font-weight:600;">36,660</span>
|
|
751
|
-
<span style="color:var(--text-dim);">Aufwand:</span> <span style="color:var(--text-bright);font-weight:600;">9.8 Personenmonate</span>
|
|
752
|
-
<span style="color:var(--text-dim);">Kosten:</span> <span style="color:var(--cyan);font-weight:600;">€47,040</span> <span style="color:var(--text-dim);">(bei €80/h)</span></div>
|
|
753
|
-
</div>
|
|
754
|
-
|
|
755
|
-
<!-- HTML Report Card -->
|
|
756
|
-
<div class="glow-box">
|
|
757
|
-
<div class="card-title">📊 HTML Projekt-Report</div>
|
|
758
|
-
<p class="card-desc" style="margin-bottom:8px;">
|
|
759
|
-
LOC nach Sprache, Ordnergrößen, Git-Stats
|
|
760
|
-
</p>
|
|
761
|
-
<p class="card-desc">
|
|
762
|
-
Minimal <span style="color:var(--text);font-weight:500;">(zero deps)</span> oder Fancy <span style="color:var(--text);font-weight:500;">(mit Chart.js)</span>
|
|
763
|
-
</p>
|
|
764
|
-
</div>
|
|
765
|
-
</div>
|
|
766
|
-
|
|
767
|
-
<div class="slide-brand">
|
|
768
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
769
|
-
<div class="slide-num">09/17</div>
|
|
770
|
-
</div>
|
|
771
|
-
</div>
|
|
772
|
-
|
|
773
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
774
|
-
SLIDE 9: STATEMENT — Plugins Intro
|
|
775
|
-
══════════════════════════════════════════════════════════ -->
|
|
776
|
-
<div class="slide statement" data-slide-number="9">
|
|
777
|
-
<div class="orb orb-purple" style="width:400px;height:400px;top:-100px;right:-80px;"></div>
|
|
778
|
-
<div class="orb orb-cyan" style="width:350px;height:350px;bottom:-100px;left:-80px;opacity:0.1;"></div>
|
|
779
|
-
|
|
780
|
-
<div class="slide-content">
|
|
781
|
-
<div class="big-text" style="margin-bottom:16px;">Die besten Plugins.</div>
|
|
782
|
-
<div class="big-text" style="margin-bottom:32px;">Ein Klick.</div>
|
|
783
|
-
<div class="small-text">Meine Lieblings-Plugins für jedes Projekt.</div>
|
|
784
|
-
</div>
|
|
785
|
-
|
|
786
|
-
<div class="slide-brand">
|
|
787
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
788
|
-
<div class="slide-num">10/17</div>
|
|
789
|
-
</div>
|
|
790
|
-
</div>
|
|
791
|
-
|
|
792
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
793
|
-
SLIDE 10: PLUGIN PRESETS
|
|
794
|
-
══════════════════════════════════════════════════════════ -->
|
|
795
|
-
<div class="slide" data-slide-number="10">
|
|
796
|
-
<div class="orb orb-cyan" style="width:380px;height:380px;top:-100px;right:-80px;opacity:0.09;"></div>
|
|
797
|
-
<div class="orb orb-purple" style="width:350px;height:350px;bottom:-100px;left:-80px;"></div>
|
|
798
|
-
|
|
799
|
-
<div class="slide-content" style="display:flex;flex-direction:column;gap:24px;">
|
|
800
|
-
<div class="section-label">Plugins</div>
|
|
801
|
-
<div class="slide-title" style="margin-bottom:16px;">Plugin-Auswahl</div>
|
|
802
|
-
|
|
803
|
-
<div class="tier glow-1">
|
|
804
|
-
<div class="tier-name">Minimal</div>
|
|
805
|
-
<div class="tier-plugins">superpowers</div>
|
|
806
|
-
<div class="tier-desc">TDD, Debugging, Plans, Brainstorming</div>
|
|
807
|
-
</div>
|
|
808
|
-
|
|
809
|
-
<div class="tier glow-2">
|
|
810
|
-
<div class="tier-name">Standard</div>
|
|
811
|
-
<div class="tier-plugins">+ feature-dev, pr-review-toolkit</div>
|
|
812
|
-
<div class="tier-desc">Code Explorer, PR Reviews</div>
|
|
813
|
-
</div>
|
|
814
|
-
|
|
815
|
-
<div class="tier glow-3">
|
|
816
|
-
<div class="tier-name">Full</div>
|
|
817
|
-
<div class="tier-plugins">+ frontend-design, ui-ux-pro-max, claude-seo</div>
|
|
818
|
-
<div class="tier-desc">UI/UX Design + SEO Intelligence</div>
|
|
819
|
-
</div>
|
|
820
|
-
</div>
|
|
821
|
-
|
|
822
|
-
<div class="slide-brand">
|
|
823
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
824
|
-
<div class="slide-num">11/17</div>
|
|
825
|
-
</div>
|
|
826
|
-
</div>
|
|
827
|
-
|
|
828
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
829
|
-
SLIDE 11: PLUGIN DETAILS
|
|
830
|
-
══════════════════════════════════════════════════════════ -->
|
|
831
|
-
<div class="slide" data-slide-number="11">
|
|
832
|
-
<div class="orb orb-purple" style="width:400px;height:400px;top:-120px;left:-100px;opacity:0.08;"></div>
|
|
833
|
-
<div class="orb orb-cyan" style="width:300px;height:300px;bottom:-80px;right:-60px;opacity:0.07;"></div>
|
|
834
|
-
|
|
835
|
-
<div class="slide-content" style="display:flex;flex-direction:column;gap:16px;">
|
|
836
|
-
<div class="section-label">Plugin-Details</div>
|
|
837
|
-
<div class="slide-title" style="margin-bottom:12px;font-size:44px;">Was die Plugins können</div>
|
|
838
|
-
|
|
839
|
-
<div class="plugin-mini">
|
|
840
|
-
<div class="plugin-name">superpowers</div>
|
|
841
|
-
<div class="plugin-desc">TDD, Debugging, Brainstorming, Plans, Code Review</div>
|
|
842
|
-
</div>
|
|
843
|
-
|
|
844
|
-
<div class="plugin-mini">
|
|
845
|
-
<div class="plugin-name">feature-dev</div>
|
|
846
|
-
<div class="plugin-desc">Code Explorer, Architektur-Designer, Quality Reviewer</div>
|
|
847
|
-
</div>
|
|
848
|
-
|
|
849
|
-
<div class="plugin-mini">
|
|
850
|
-
<div class="plugin-name">pr-review-toolkit</div>
|
|
851
|
-
<div class="plugin-desc">Test-Analyzer, Silent-Failure-Hunter</div>
|
|
852
|
-
</div>
|
|
853
|
-
|
|
854
|
-
<div class="plugin-mini">
|
|
855
|
-
<div class="plugin-name">frontend-design</div>
|
|
856
|
-
<div class="plugin-desc">Production-grade UI/UX</div>
|
|
857
|
-
</div>
|
|
858
|
-
|
|
859
|
-
<div class="plugin-mini">
|
|
860
|
-
<div class="plugin-name">ui-ux-pro-max</div>
|
|
861
|
-
<div class="plugin-desc">67 UI-Styles, 161 Farbpaletten, 57 Font-Pairings</div>
|
|
862
|
-
</div>
|
|
863
|
-
|
|
864
|
-
<div class="plugin-mini">
|
|
865
|
-
<div class="plugin-name">claude-seo</div>
|
|
866
|
-
<div class="plugin-desc">SEO-Audits, E-E-A-T, Schema-Markup, Core Web Vitals, KI-Suchoptimierung</div>
|
|
867
|
-
</div>
|
|
868
|
-
</div>
|
|
869
|
-
|
|
870
|
-
<div class="slide-brand">
|
|
871
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
872
|
-
<div class="slide-num">12/17</div>
|
|
873
|
-
</div>
|
|
874
|
-
</div>
|
|
875
|
-
|
|
876
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
877
|
-
SLIDE 12: MEMORY + RULES
|
|
878
|
-
══════════════════════════════════════════════════════════ -->
|
|
879
|
-
<div class="slide" data-slide-number="12">
|
|
880
|
-
<div class="orb orb-cyan" style="width:400px;height:400px;top:-120px;right:-100px;"></div>
|
|
881
|
-
<div class="orb orb-purple" style="width:300px;height:300px;bottom:-80px;left:-60px;opacity:0.08;"></div>
|
|
882
|
-
|
|
883
|
-
<div class="slide-content" style="display:flex;flex-direction:column;gap:28px;">
|
|
884
|
-
<div class="section-label">Kontext & Regeln</div>
|
|
885
|
-
|
|
886
|
-
<!-- Memory Card -->
|
|
887
|
-
<div class="glow-box">
|
|
888
|
-
<div class="card-title">🧠 Gedächtnis-System</div>
|
|
889
|
-
<p class="card-desc" style="margin-bottom:12px;">
|
|
890
|
-
Claude merkt sich alles
|
|
891
|
-
</p>
|
|
892
|
-
<p class="card-desc" style="margin-bottom:16px;">
|
|
893
|
-
Entscheidungen, Feedback, Projektkontext
|
|
894
|
-
</p>
|
|
895
|
-
<div class="mini-term" style="font-size:15px;margin-top:12px;">
|
|
896
|
-
<span style="color:var(--text-dim);">.claude/memory/</span><span style="color:var(--cyan);">MEMORY.md</span></div>
|
|
897
|
-
</div>
|
|
898
|
-
|
|
899
|
-
<!-- Rules Card -->
|
|
900
|
-
<div class="glow-box">
|
|
901
|
-
<div class="card-title">📋 Bewährte Regeln</div>
|
|
902
|
-
<p class="card-desc" style="margin-bottom:16px;">
|
|
903
|
-
Vier Regelwerke aus einem echten Produktionsprojekt — damit Claude strukturiert arbeitet statt wild drauflos zu coden. Task-Tracking bei komplexen Aufgaben, automatisches Stoppen und Neu-Planen wenn ein Ansatz nicht funktioniert, und Pflicht-Check gegen den Main-Branch bevor etwas als „fertig“ gilt.
|
|
904
|
-
</p>
|
|
905
|
-
<p style="font-size:15px;color:var(--text-dim);font-family:var(--font-mono);">
|
|
906
|
-
Verfügbar in Deutsch und Englisch
|
|
907
|
-
</p>
|
|
908
|
-
</div>
|
|
909
|
-
</div>
|
|
910
|
-
|
|
911
|
-
<div class="slide-brand">
|
|
912
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
913
|
-
<div class="slide-num">13/17</div>
|
|
914
|
-
</div>
|
|
915
|
-
</div>
|
|
916
|
-
|
|
917
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
918
|
-
SLIDE 13: STATEMENT — CTA Intro
|
|
919
|
-
══════════════════════════════════════════════════════════ -->
|
|
920
|
-
<div class="slide statement" data-slide-number="13">
|
|
921
|
-
<div class="orb orb-cyan" style="width:450px;height:450px;top:-150px;left:-120px;"></div>
|
|
922
|
-
<div class="orb orb-purple" style="width:400px;height:400px;bottom:-130px;right:-100px;"></div>
|
|
923
|
-
|
|
924
|
-
<div class="slide-content">
|
|
925
|
-
<div class="big-text" style="margin-bottom:32px;">Bereit?</div>
|
|
926
|
-
<div class="sub-text">30 Sekunden bis zum perfekten Setup.</div>
|
|
927
|
-
</div>
|
|
928
|
-
|
|
929
|
-
<div class="slide-brand">
|
|
930
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
931
|
-
<div class="slide-num">14/17</div>
|
|
932
|
-
</div>
|
|
933
|
-
</div>
|
|
934
|
-
|
|
935
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
936
|
-
SLIDE 14: HOW IT WORKS
|
|
937
|
-
══════════════════════════════════════════════════════════ -->
|
|
938
|
-
<div class="slide" data-slide-number="14">
|
|
939
|
-
<div class="orb orb-purple" style="width:400px;height:400px;top:-130px;left:-100px;"></div>
|
|
940
|
-
<div class="orb orb-cyan" style="width:350px;height:350px;bottom:-120px;right:-80px;opacity:0.09;"></div>
|
|
941
|
-
|
|
942
|
-
<div class="slide-content" style="display:flex;flex-direction:column;align-items:center;text-align:center;">
|
|
943
|
-
<div class="section-label" style="margin-bottom:16px;">Setup</div>
|
|
944
|
-
<div class="slide-title" style="margin-bottom:48px;">So einfach geht's</div>
|
|
945
|
-
|
|
946
|
-
<div style="display:flex;flex-direction:column;gap:32px;width:100%;max-width:700px;text-align:left;margin-bottom:56px;">
|
|
947
|
-
<div class="step">
|
|
948
|
-
<div class="step-number">1</div>
|
|
949
|
-
<div class="step-text">Terminal öffnen</div>
|
|
950
|
-
</div>
|
|
951
|
-
<div class="step">
|
|
952
|
-
<div class="step-number">2</div>
|
|
953
|
-
<div class="step-text">Ins Projektverzeichnis wechseln</div>
|
|
954
|
-
</div>
|
|
955
|
-
<div class="step">
|
|
956
|
-
<div class="step-number">3</div>
|
|
957
|
-
<div class="step-text">Befehl ausführen</div>
|
|
958
|
-
</div>
|
|
959
|
-
</div>
|
|
960
|
-
|
|
961
|
-
<div class="cmd-box" style="font-size:32px;margin-bottom:32px;">
|
|
962
|
-
<span class="prompt">$</span> npx cc-starter
|
|
963
|
-
</div>
|
|
964
|
-
|
|
965
|
-
<p style="font-size:16px;color:var(--text-dim);font-family:var(--font-mono);">
|
|
966
|
-
Node.js 18+ · Claude Code CLI optional
|
|
967
|
-
</p>
|
|
968
|
-
</div>
|
|
969
|
-
|
|
970
|
-
<div class="slide-brand">
|
|
971
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
972
|
-
<div class="slide-num">15/17</div>
|
|
973
|
-
</div>
|
|
974
|
-
</div>
|
|
975
|
-
|
|
976
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
977
|
-
SLIDE 15: TERMINAL DEMO
|
|
978
|
-
══════════════════════════════════════════════════════════ -->
|
|
979
|
-
<div class="slide" data-slide-number="15">
|
|
980
|
-
<div class="orb orb-purple" style="width:500px;height:500px;top:-180px;right:-180px;"></div>
|
|
981
|
-
<div class="orb orb-cyan" style="width:350px;height:350px;bottom:-100px;left:-100px;opacity:0.08;"></div>
|
|
982
|
-
|
|
983
|
-
<div class="slide-content">
|
|
984
|
-
<div style="background:rgba(20,20,30,0.9);border-radius:16px;border:1px solid rgba(255,255,255,0.12);overflow:hidden;box-shadow:0 0 40px rgba(0,212,255,0.1),0 0 80px rgba(168,85,247,0.06);">
|
|
985
|
-
<!-- Terminal Title Bar -->
|
|
986
|
-
<div style="display:flex;align-items:center;gap:8px;padding:14px 20px;background:rgba(255,255,255,0.04);border-bottom:1px solid rgba(255,255,255,0.06);">
|
|
987
|
-
<span style="width:12px;height:12px;border-radius:50%;background:#ff5f57;"></span>
|
|
988
|
-
<span style="width:12px;height:12px;border-radius:50%;background:#febc2e;"></span>
|
|
989
|
-
<span style="width:12px;height:12px;border-radius:50%;background:#28c840;"></span>
|
|
990
|
-
<span style="font-family:var(--font-mono);font-size:13px;color:var(--text-dim);margin-left:8px;">Terminal</span>
|
|
991
|
-
</div>
|
|
992
|
-
<!-- Terminal Content -->
|
|
993
|
-
<div style="padding:28px 32px;font-family:var(--font-mono);font-size:15px;line-height:1.8;white-space:pre-wrap;">
|
|
994
|
-
<span style="color:var(--text-dim);">$</span> <span style="color:var(--cyan);">npx cc-starter</span>
|
|
995
|
-
|
|
996
|
-
<span style="color:var(--purple);">╔═══════════════════════════════════════╗</span>
|
|
997
|
-
<span style="color:var(--purple);">║</span> <span style="color:var(--text-bright);">cc-starter v1.0.5</span> <span style="color:var(--purple);">║</span>
|
|
998
|
-
<span style="color:var(--purple);">║</span> <span style="color:var(--text-dim);">Claude Code Project Kickstart</span> <span style="color:var(--purple);">║</span>
|
|
999
|
-
<span style="color:var(--purple);">╚═══════════════════════════════════════╝</span>
|
|
1000
|
-
|
|
1001
|
-
<span style="color:var(--purple);">?</span> <span style="color:var(--text-bright);">Sprache / Language:</span> <span style="color:var(--cyan);">English</span>
|
|
1002
|
-
<span style="color:var(--purple);">?</span> <span style="color:var(--text-bright);">Project name:</span> <span style="color:var(--cyan);">my-saas-app</span>
|
|
1003
|
-
<span style="color:var(--purple);">?</span> <span style="color:var(--text-bright);">Short description:</span> <span style="color:var(--cyan);">SaaS dashboard with analytics</span>
|
|
1004
|
-
|
|
1005
|
-
<span style="color:var(--text-dim);">Detected: TypeScript, Next.js, Tailwind CSS</span>
|
|
1006
|
-
|
|
1007
|
-
<span style="color:var(--purple);">?</span> <span style="color:var(--text-bright);">Plugin preset:</span> <span style="color:var(--cyan);">Standard</span>
|
|
1008
|
-
|
|
1009
|
-
<span style="color:#28c840;">✓</span> <span style="color:var(--text-bright);">.claude/rules/</span> <span style="color:var(--text-dim);">4 files</span>
|
|
1010
|
-
<span style="color:#28c840;">✓</span> <span style="color:var(--text-bright);">.claude/memory/</span> <span style="color:var(--text-dim);">MEMORY.md</span>
|
|
1011
|
-
<span style="color:#28c840;">✓</span> <span style="color:var(--text-bright);">CLAUDE.md</span> <span style="color:var(--text-dim);">created</span>
|
|
1012
|
-
<span style="color:#28c840;">✓</span> <span style="color:var(--text-bright);">scripts/stats/</span> <span style="color:var(--text-dim);">4 tools</span>
|
|
1013
|
-
<span style="color:#28c840;">✓</span> <span style="color:var(--text-bright);">Plugins installed</span> <span style="color:var(--text-dim);">3 plugins</span>
|
|
1014
|
-
|
|
1015
|
-
<span style="color:#28c840;font-weight:600;">Done! Run 'claude' to start coding.</span>
|
|
1016
|
-
<span style="color:var(--cyan);">█</span></div>
|
|
1017
|
-
</div>
|
|
1018
|
-
</div>
|
|
1019
|
-
|
|
1020
|
-
<div class="slide-brand">
|
|
1021
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
1022
|
-
<div class="slide-num">16/17</div>
|
|
1023
|
-
</div>
|
|
1024
|
-
</div>
|
|
1025
|
-
|
|
1026
|
-
<!-- ══════════════════════════════════════════════════════════
|
|
1027
|
-
SLIDE 16: CLOSER / CTA
|
|
1028
|
-
══════════════════════════════════════════════════════════ -->
|
|
1029
|
-
<div class="slide" data-slide-number="16">
|
|
1030
|
-
<div class="orb orb-cyan" style="width:500px;height:500px;top:-180px;left:-160px;"></div>
|
|
1031
|
-
<div class="orb orb-purple" style="width:450px;height:450px;bottom:-150px;right:-120px;"></div>
|
|
1032
|
-
<div class="orb orb-cyan" style="width:250px;height:250px;top:40%;left:70%;opacity:0.06;"></div>
|
|
1033
|
-
|
|
1034
|
-
<div class="slide-content" style="display:flex;flex-direction:column;align-items:center;text-align:center;">
|
|
1035
|
-
<div style="font-size:64px;font-weight:900;color:var(--text-bright);margin-bottom:40px;letter-spacing:-0.03em;">
|
|
1036
|
-
Probier es aus.
|
|
1037
|
-
</div>
|
|
1038
|
-
|
|
1039
|
-
<div class="cmd-box" style="font-size:30px;margin-bottom:48px;">
|
|
1040
|
-
<span class="prompt">$</span> npx cc-starter
|
|
1041
|
-
</div>
|
|
1042
|
-
|
|
1043
|
-
<div class="cta-links" style="margin-bottom:40px;text-align:left;">
|
|
1044
|
-
<div class="cta-link">
|
|
1045
|
-
<span class="label">GitHub</span>
|
|
1046
|
-
<span class="url">github.com/WAGMIStudios/cc-starter</span>
|
|
1047
|
-
</div>
|
|
1048
|
-
<div class="cta-link">
|
|
1049
|
-
<span class="label">npm</span>
|
|
1050
|
-
<span class="url">npmjs.com/package/cc-starter</span>
|
|
1051
|
-
</div>
|
|
1052
|
-
<div class="cta-link">
|
|
1053
|
-
<span class="label">Web</span>
|
|
1054
|
-
<span class="url">wagmistudios.github.io/cc-starter</span>
|
|
1055
|
-
</div>
|
|
1056
|
-
</div>
|
|
1057
|
-
|
|
1058
|
-
<p style="font-size:16px;color:var(--text-dim);font-family:var(--font-mono);margin-bottom:20px;letter-spacing:0.05em;">
|
|
1059
|
-
Open Source · MIT Lizenz · Kostenlos
|
|
1060
|
-
</p>
|
|
1061
|
-
<p style="font-size:16px;color:var(--text-dim);margin-bottom:24px;">
|
|
1062
|
-
Built by Lars Fanter
|
|
1063
|
-
</p>
|
|
1064
|
-
<p style="font-size:14px;color:var(--text-dim);font-family:var(--font-mono);">
|
|
1065
|
-
#ClaudeCode #AI #DeveloperTools #OpenSource
|
|
1066
|
-
</p>
|
|
1067
|
-
</div>
|
|
1068
|
-
|
|
1069
|
-
<div class="slide-brand">
|
|
1070
|
-
<div class="brand-name">cc<span>-starter</span></div>
|
|
1071
|
-
<div class="slide-num">17/17</div>
|
|
1072
|
-
</div>
|
|
1073
|
-
</div>
|
|
1074
|
-
|
|
1075
|
-
</div>
|
|
1076
|
-
|
|
1077
|
-
</body>
|
|
1078
|
-
</html>
|