-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_1.html
More file actions
1295 lines (1163 loc) · 52.7 KB
/
Copy pathindex_1.html
File metadata and controls
1295 lines (1163 loc) · 52.7 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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>THE SUPERPOWERS -- Manga Archives</title>
<meta name="description" content="7 High-Performance Zero-Dependency Skills for Any AI Agent">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@400;700;900&family=Space+Grotesk:wght@400;600;700&family=JetBrains+Mono:wght@400;600&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/darkroomengineering/lenis@1.1.13/dist/lenis.min.js"></script>
<script>
// Runs synchronously after the CDN tags: if anime.js is present and the user
// has not asked for reduced motion, opt into the hidden-then-reveal start state.
(function () {
var reduced = window.matchMedia
&& window.matchMedia('(prefers-reduced-motion: reduce)').matches;
if (typeof anime === 'function' && !reduced) {
document.documentElement.className += ' js-animate';
}
// Resolve the theme before first paint so a returning visitor never sees
// the OS default flash before their own saved choice is applied.
try {
var saved = localStorage.getItem('superpowers-theme');
if (saved === 'dark' || saved === 'light') {
document.documentElement.setAttribute('data-theme', saved);
}
} catch (err) { /* storage unavailable (private mode, some file:// contexts) */ }
})();
</script>
<style>
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
/* Theme resolution, in precedence order:
1. html[data-theme] — set by the head script from a saved choice, or
by the toggle. Single source of truth.
2. prefers-color-scheme — the JS-less fallback, applied only when the
head script did not run (JS disabled).
3. :root light defaults.
Keeping the attribute on <html> means one selector governs everything and
there are no competing body-level rules to reason about. */
:root {
--bg: #f4f0ea;
--ink: #111113;
--ink-mid: #4a4a4f;
--ink-light: #8e8e93;
--panel: #faf7f2;
--red: #d9383a;
--code-bg: #1a1a1c;
--code-text: #e2e2e5;
--shadow: #111113;
}
[data-theme="dark"] {
--bg: #0d0d0f;
--ink: #f0f0f3;
--ink-mid: #a0a0a5;
--ink-light: #6e6e73;
--panel: #141417;
--code-bg: #050506;
--code-text: #f0f0f3;
--shadow: #f0f0f3;
}
@media (prefers-color-scheme: dark) {
html:not([data-theme]) {
--bg: #0d0d0f;
--ink: #f0f0f3;
--ink-mid: #a0a0a5;
--ink-light: #6e6e73;
--panel: #141417;
--code-bg: #050506;
--code-text: #f0f0f3;
--shadow: #f0f0f3;
}
}
/* Entrance animations start from opacity:0, but only when JS has proven
it can finish them. Without this gate a blocked anime.js CDN leaves the
nav, cover, and every panel permanently invisible. */
.js-animate .nav,
.js-animate .cover,
.js-animate .panel { opacity: 0; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: var(--bg);
color: var(--ink);
font-family: 'Noto Sans JP', 'Space Grotesk', sans-serif;
transition: background 0.4s, color 0.4s;
overflow-x: hidden;
line-height: 1.65;
}
.halftone {
position: fixed; top: 0; left: 0;
width: 100vw; height: 100vh;
background-image: radial-gradient(var(--ink) 1px, transparent 1px);
background-size: 22px 22px;
opacity: 0.035;
pointer-events: none;
z-index: 1;
}
.wrap {
max-width: 960px;
margin: 0 auto;
padding: 50px 20px;
position: relative;
z-index: 2;
}
/* NAV */
.nav {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 20px;
border-bottom: 4px solid var(--ink);
margin-bottom: 50px;
}
.logo-text {
font-family: 'Bebas Neue', sans-serif;
font-size: 2.6rem;
letter-spacing: 0.08em;
text-transform: uppercase;
line-height: 1;
}
.logo-sub {
font-family: 'Noto Sans JP', sans-serif;
font-size: 0.8rem;
font-weight: 700;
color: var(--red);
letter-spacing: 0.12em;
}
.toggle-btn {
background: transparent;
border: 2px solid var(--ink);
color: var(--ink);
padding: 7px 14px;
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
font-size: 0.8rem;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 0.04em;
transition: all 0.2s;
}
.nav-controls {
display: flex;
gap: 10px;
align-items: center;
}
.toggle-btn:hover {
background: var(--ink);
color: var(--bg);
}
/* COVER */
.cover {
border: 4px solid var(--ink);
background: var(--panel);
padding: 44px 32px;
margin-bottom: 70px;
position: relative;
box-shadow: 12px 12px 0 var(--shadow);
}
.cover-tag {
position: absolute;
top: -16px; left: 22px;
background: var(--red);
color: #fff;
font-family: 'Bebas Neue', sans-serif;
font-size: 1.1rem;
padding: 1px 12px;
letter-spacing: 0.1em;
}
.cover h1 {
font-family: 'Bebas Neue', sans-serif;
font-size: 4rem;
line-height: 0.95;
letter-spacing: 0.04em;
text-transform: uppercase;
margin-bottom: 16px;
}
.cover p {
font-size: 1.1rem;
color: var(--ink-mid);
max-width: 680px;
font-weight: 600;
}
/* SLASH DIVIDERS */
.slash-divider {
display: flex;
justify-content: center;
padding: 24px 0;
}
.slash-divider svg {
width: 100%;
max-width: 700px;
height: 40px;
overflow: visible;
}
.slash-line {
stroke: var(--red);
stroke-width: 3;
fill: none;
stroke-linecap: round;
}
/* PANELS */
.grid { display: flex; flex-direction: column; gap: 0; }
.panel {
border: 4px solid var(--ink);
background: var(--panel);
padding: 36px;
position: relative;
box-shadow: 10px 10px 0 var(--shadow);
}
.panel-num {
font-family: 'Bebas Neue', sans-serif;
font-size: 1.4rem;
color: var(--red);
letter-spacing: 0.1em;
margin-bottom: 6px;
display: inline-block;
border-bottom: 2px solid var(--red);
}
.panel-jp {
font-family: 'Noto Sans JP', sans-serif;
font-size: 0.85rem;
font-weight: 700;
color: var(--ink-light);
margin-left: 10px;
letter-spacing: 0.08em;
}
.panel-title {
font-family: 'Bebas Neue', sans-serif;
font-size: 3rem;
letter-spacing: 0.05em;
line-height: 1;
margin-bottom: 10px;
text-transform: uppercase;
}
.panel-headline {
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 14px;
font-style: italic;
}
.panel-body {
font-size: 0.95rem;
color: var(--ink-mid);
margin-bottom: 22px;
}
/* SPEECH BUBBLE */
.bubble {
border: 3px solid var(--ink);
background: var(--bg);
padding: 18px 22px;
margin-bottom: 24px;
position: relative;
}
.bubble::before {
content: "";
position: absolute;
bottom: -13px; left: 32px;
border-width: 13px 13px 0 0;
border-style: solid;
border-color: var(--ink) transparent transparent transparent;
}
.bubble-label {
font-family: 'Bebas Neue', sans-serif;
font-size: 1rem;
color: var(--red);
letter-spacing: 0.08em;
margin-bottom: 5px;
}
.bubble-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 5px;
}
.bubble-list li {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.9rem;
font-weight: 600;
}
.bubble-list li::before {
content: "+";
color: var(--red);
font-weight: 700;
font-size: 1rem;
}
/* CODE */
.code-box {
background: var(--code-bg);
color: var(--code-text);
padding: 16px 20px;
border-radius: 3px;
font-family: 'JetBrains Mono', monospace;
font-size: 0.82rem;
border-left: 4px solid var(--red);
overflow-x: auto;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 16px;
}
.copy-btn {
background: rgba(255,255,255,0.1);
border: none;
color: #fff;
font-family: 'Space Grotesk', sans-serif;
font-size: 0.7rem;
font-weight: 700;
padding: 3px 9px;
cursor: pointer;
text-transform: uppercase;
transition: background 0.2s;
flex-shrink: 0;
margin-left: 12px;
}
.copy-btn:hover { background: var(--red); }
/* PLATFORM SELECTOR */
.platform-row {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
margin-top: 4px;
}
.platform-label {
font-family: 'Space Grotesk', sans-serif;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--ink-light);
}
.platform-select {
background: var(--code-bg);
color: var(--code-text);
border: 2px solid var(--ink);
padding: 5px 10px;
font-family: 'Space Grotesk', sans-serif;
font-size: 0.8rem;
font-weight: 600;
cursor: pointer;
}
.setup-cmd {
font-family: 'JetBrains Mono', monospace;
font-size: 0.78rem;
color: var(--code-text);
margin-top: 8px;
padding: 10px 14px;
background: var(--code-bg);
border-left: 4px solid var(--red);
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
}
.setup-cmd span {
flex: 1;
word-break: break-all;
}
/* FOOTER */
footer {
margin-top: 80px;
text-align: center;
padding-top: 36px;
border-top: 4px solid var(--ink);
font-family: 'Bebas Neue', sans-serif;
font-size: 1.3rem;
letter-spacing: 0.1em;
color: var(--ink-light);
}
/* TEAR OVERLAY */
/* Hidden by default and revealed only once JS confirms it can drive the
tear. If a CDN is blocked or JS fails, the page content stays visible
instead of sitting behind an opaque overlay that never lifts. */
.tear-overlay {
position: fixed;
top: 0; left: 0;
width: 100vw; height: 100vh;
z-index: 100;
pointer-events: none;
visibility: hidden;
}
.tear-overlay.tear-armed { visibility: visible; }
.tear-half {
position: absolute;
top: 0;
width: 100vw;
height: 100vh;
background: var(--bg);
will-change: transform;
transition: none;
}
.tear-left {
left: 0;
clip-path: polygon(
0% 0%,
50% 0%,
50% 2%,
51.2% 4%,
49.5% 6.5%,
50.8% 9%,
49.2% 12%,
51.5% 14.5%,
49.8% 17%,
50.5% 20%,
49% 23%,
51.3% 25.5%,
49.7% 28%,
50.9% 31%,
49.3% 34%,
51.1% 36.5%,
49.6% 39%,
50.4% 42%,
49.1% 45%,
51.4% 47.5%,
49.5% 50%,
50.7% 53%,
49.2% 56%,
51.6% 58.5%,
49.8% 61%,
50.3% 64%,
49.4% 67%,
51.2% 69.5%,
49.6% 72%,
50.8% 75%,
49.1% 78%,
51.5% 80.5%,
49.7% 83%,
50.5% 86%,
49.3% 89%,
51.1% 91.5%,
49.8% 94%,
50.6% 97%,
50% 100%,
0% 100%
);
}
.tear-right {
left: 0;
clip-path: polygon(
100% 0%,
50% 0%,
50% 2%,
51.2% 4%,
49.5% 6.5%,
50.8% 9%,
49.2% 12%,
51.5% 14.5%,
49.8% 17%,
50.5% 20%,
49% 23%,
51.3% 25.5%,
49.7% 28%,
50.9% 31%,
49.3% 34%,
51.1% 36.5%,
49.6% 39%,
50.4% 42%,
49.1% 45%,
51.4% 47.5%,
49.5% 50%,
50.7% 53%,
49.2% 56%,
51.6% 58.5%,
49.8% 61%,
50.3% 64%,
49.4% 67%,
51.2% 69.5%,
49.6% 72%,
50.8% 75%,
49.1% 78%,
51.5% 80.5%,
49.7% 83%,
50.5% 86%,
49.3% 89%,
51.1% 91.5%,
49.8% 94%,
50.6% 97%,
50% 100%,
100% 100%
);
}
.tear-label {
position: fixed;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
z-index: 101;
font-family: 'Bebas Neue', sans-serif;
font-size: 1.4rem;
letter-spacing: 0.25em;
color: var(--red);
opacity: 0;
pointer-events: none;
white-space: nowrap;
transition: opacity 0.3s;
}
.tear-texture-left,
.tear-texture-right {
position: absolute;
top: 0;
width: 6px;
height: 100%;
z-index: 2;
opacity: 0.25;
}
.tear-texture-left {
right: 0;
background: linear-gradient(to left, var(--ink) 0%, transparent 100%);
}
.tear-texture-right {
left: 0;
background: linear-gradient(to right, var(--ink) 0%, transparent 100%);
}
@media (max-width: 900px) {
.panel { padding: 32px; }
.setup-cmd { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 600px) {
.cover h1 { font-size: 2.6rem; }
.panel-title { font-size: 2.2rem; }
.panel { padding: 24px; }
.tear-label { font-size: 1rem; }
.panel-num { font-size: 0.7rem; }
.panel-headline { font-size: 1.15rem; }
.copy-btn { width: 100%; }
}
/* Wide content must scroll inside itself, never the page body. */
.setup-cmd span, pre, code { overflow-wrap: anywhere; }
/* Vestibular safety: the tear, the smooth-scroll hijack, and every
entrance animation are motion effects. Honour the OS setting. */
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.001ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.001ms !important;
scroll-behavior: auto !important;
}
.tear-overlay, .tear-overlay.tear-armed { visibility: hidden !important; }
.panel { opacity: 1 !important; transform: none !important; }
.slash-line { stroke-dashoffset: 0 !important; }
}
:focus-visible {
outline: 3px solid var(--red);
outline-offset: 3px;
}
</style>
</head>
<body>
<!-- TEAR OVERLAY -->
<div class="tear-overlay" id="tearOverlay">
<div class="tear-half tear-left" id="tearLeft">
<div class="tear-texture-left"></div>
</div>
<div class="tear-half tear-right" id="tearRight">
<div class="tear-texture-right"></div>
</div>
</div>
<div class="tear-label" id="tearLabel">引き裂く SCROLL TO TEAR</div>
<div class="halftone"></div>
<div style="height:300px"></div>
<div class="wrap">
<header class="nav">
<div>
<div class="logo-text">THE SUPERPOWERS</div>
<div class="logo-sub">資料集 VOL.01 -- SINGLE WORD EXECUTION</div>
</div>
<div class="nav-controls">
<button class="toggle-btn" type="button" id="sound-toggle" onclick="toggleSound()" aria-label="Toggle ambient sound">音 UNMUTE</button>
<button class="toggle-btn" type="button" id="theme-toggle" onclick="toggleTheme()" aria-pressed="false" aria-label="Switch to dark theme">紙 PAPER</button>
</div>
</header>
<section class="cover">
<div class="cover-tag">特別号 SPECIAL ISSUE</div>
<h1>SEVEN CAPABILITIES.<br>ZERO SLOP.</h1>
<p>高性能エージェント基盤 -- A minimalist reference for high-performance agent architecture. Single-word, zero-dependency tools designed for instant reflexes, path containment, and self-healing autonomy.</p>
</section>
<main class="grid">
<!-- ACT 01 -->
<article class="panel" data-skill="ultra-instinct">
<div class="panel-num">第一幕 ACT 01 // ULTRA INSTINCT<span class="panel-jp">反射経路</span></div>
<h2 class="panel-title">ultra instinct</h2>
<div class="panel-headline">"Bypass the 20-Second Pause. Execute Routine Tasks Instantly."</div>
<p class="panel-body">Intercepts simple subtasks (like status checks, formatting, or directory listing) and executes them deterministically in under 10 milliseconds via local pattern matching -- skipping heavy LLM reasoning loops entirely.</p>
<div class="platform-row">
<span class="platform-label">Setup for:</span>
<select class="platform-select" aria-label="Choose your agent for the ultra-instinct skill" onchange="updateSetup(this, 'ultra-instinct')">
<option value="antigravity">Antigravity</option>
<option value="claude">Claude Code</option>
<option value="opencode">OpenCode</option>
<option value="cursor">Cursor</option>
<option value="windsurf">Windsurf</option>
<option value="other">Others</option>
</select>
</div>
<div class="setup-cmd">
<span>Clone https://github.com/Meard-AI/Superpowers and copy the 'ultra-instinct' skill folder into .agents/skills/ultra-instinct at your workspace root -- Antigravity auto-discovers it from there, no restart needed.</span>
<button class="copy-btn" type="button" onclick="copyCmd(this)" aria-label="Copy setup instructions to clipboard">COPY</button>
</div>
</article>
<div class="slash-divider"><svg viewBox="0 0 700 40"><line class="slash-line" x1="0" y1="38" x2="700" y2="2"/></svg></div>
<!-- ACT 02 -->
<article class="panel" data-skill="copy-ability">
<div class="panel-num">第二幕 ACT 02 // COPY<span class="panel-jp">複写能力</span></div>
<h2 class="panel-title">copy</h2>
<div class="panel-headline">"Observe Once. Replicate Forever."</div>
<p class="panel-body">Parses raw execution transcripts, terminal session logs, or API traces and automatically packages them into parameterised, reusable custom agent skills.</p>
<div class="platform-row">
<span class="platform-label">Setup for:</span>
<select class="platform-select" aria-label="Choose your agent for the copy-ability skill" onchange="updateSetup(this, 'copy-ability')">
<option value="antigravity">Antigravity</option>
<option value="claude">Claude Code</option>
<option value="opencode">OpenCode</option>
<option value="cursor">Cursor</option>
<option value="windsurf">Windsurf</option>
<option value="other">Others</option>
</select>
</div>
<div class="setup-cmd">
<span>Clone https://github.com/Meard-AI/Superpowers and copy the 'copy-ability' skill folder into .agents/skills/copy-ability at your workspace root -- Antigravity auto-discovers it from there, no restart needed.</span>
<button class="copy-btn" type="button" onclick="copyCmd(this)" aria-label="Copy setup instructions to clipboard">COPY</button>
</div>
</article>
<div class="slash-divider"><svg viewBox="0 0 700 40"><line class="slash-line" x1="700" y1="38" x2="0" y2="2"/></svg></div>
<!-- ACT 03 -->
<article class="panel" data-skill="invisible-attacks">
<div class="panel-num">第三幕 ACT 03 // FENCE<span class="panel-jp">境界防衛</span></div>
<h2 class="panel-title">fence</h2>
<div class="panel-headline">"Strict Air-Gapped Path Containment."</div>
<p class="panel-body">Calculates absolute canonical paths using realpath resolution and verifies file mutations against target root boundaries -- hard-blocking unauthorized directory escapes.</p>
<div class="platform-row">
<span class="platform-label">Setup for:</span>
<select class="platform-select" aria-label="Choose your agent for the invisible-attacks skill" onchange="updateSetup(this, 'invisible-attacks')">
<option value="antigravity">Antigravity</option>
<option value="claude">Claude Code</option>
<option value="opencode">OpenCode</option>
<option value="cursor">Cursor</option>
<option value="windsurf">Windsurf</option>
<option value="other">Others</option>
</select>
</div>
<div class="setup-cmd">
<span>Clone https://github.com/Meard-AI/Superpowers and copy the 'invisible-attacks' skill folder into .agents/skills/invisible-attacks at your workspace root -- Antigravity auto-discovers it from there, no restart needed.</span>
<button class="copy-btn" type="button" onclick="copyCmd(this)" aria-label="Copy setup instructions to clipboard">COPY</button>
</div>
</article>
<div class="slash-divider"><svg viewBox="0 0 700 40"><line class="slash-line" x1="0" y1="38" x2="700" y2="2"/></svg></div>
<!-- ACT 04 -->
<article class="panel" data-skill="mastery">
<div class="panel-num">第四幕 ACT 04 // GEAR<span class="panel-jp">段階適応</span></div>
<h2 class="panel-title">gear</h2>
<div class="panel-headline">"Shift Operating Gears Mid-Flight."</div>
<p class="panel-body">Dynamically adapts system prompts, token budgets, and allowed toolsets based on the current project phase (plan, build, audit, format).</p>
<div class="platform-row">
<span class="platform-label">Setup for:</span>
<select class="platform-select" aria-label="Choose your agent for the mastery skill" onchange="updateSetup(this, 'mastery')">
<option value="antigravity">Antigravity</option>
<option value="claude">Claude Code</option>
<option value="opencode">OpenCode</option>
<option value="cursor">Cursor</option>
<option value="windsurf">Windsurf</option>
<option value="other">Others</option>
</select>
</div>
<div class="setup-cmd">
<span>Clone https://github.com/Meard-AI/Superpowers and copy the 'mastery' skill folder into .agents/skills/mastery at your workspace root -- Antigravity auto-discovers it from there, no restart needed.</span>
<button class="copy-btn" type="button" onclick="copyCmd(this)" aria-label="Copy setup instructions to clipboard">COPY</button>
</div>
</article>
<div class="slash-divider"><svg viewBox="0 0 700 40"><line class="slash-line" x1="700" y1="38" x2="0" y2="2"/></svg></div>
<!-- ACT 05 -->
<article class="panel" data-skill="heat-mode">
<div class="panel-num">第五幕 ACT 05 // HEAT MODE<span class="panel-jp">自己修復</span></div>
<h2 class="panel-title">heat mode</h2>
<div class="panel-headline">"Break Infinite Apology and Failure Loops."</div>
<p class="panel-body">Monitors command streams for repetitive error patterns. When an agent stalls, it forces a self-healing protocol -- relaxing strict schemas and executing diagnostic fallbacks.</p>
<div class="platform-row">
<span class="platform-label">Setup for:</span>
<select class="platform-select" aria-label="Choose your agent for the heat-mode skill" onchange="updateSetup(this, 'heat-mode')">
<option value="antigravity">Antigravity</option>
<option value="claude">Claude Code</option>
<option value="opencode">OpenCode</option>
<option value="cursor">Cursor</option>
<option value="windsurf">Windsurf</option>
<option value="other">Others</option>
</select>
</div>
<div class="setup-cmd">
<span>Clone https://github.com/Meard-AI/Superpowers and copy the 'heat-mode' skill folder into .agents/skills/heat-mode at your workspace root -- Antigravity auto-discovers it from there, no restart needed.</span>
<button class="copy-btn" type="button" onclick="copyCmd(this)" aria-label="Copy setup instructions to clipboard">COPY</button>
</div>
</article>
<div class="slash-divider"><svg viewBox="0 0 700 40"><line class="slash-line" x1="0" y1="38" x2="700" y2="2"/></svg></div>
<!-- ACT 06 -->
<article class="panel" data-skill="cqc">
<div class="panel-num">第六幕 ACT 06 // JAIL<span class="panel-jp">領域制限</span></div>
<h2 class="panel-title">jail</h2>
<div class="panel-headline">"High-Speed Refactoring Inside a Locked Sub-Zone."</div>
<p class="panel-body">Grants agents high-frequency file editing privileges strictly inside a designated subdirectory while enforcing real-time perimeter checks on all subshell commands.</p>
<div class="platform-row">
<span class="platform-label">Setup for:</span>
<select class="platform-select" aria-label="Choose your agent for the cqc skill" onchange="updateSetup(this, 'cqc')">
<option value="antigravity">Antigravity</option>
<option value="claude">Claude Code</option>
<option value="opencode">OpenCode</option>
<option value="cursor">Cursor</option>
<option value="windsurf">Windsurf</option>
<option value="other">Others</option>
</select>
</div>
<div class="setup-cmd">
<span>Clone https://github.com/Meard-AI/Superpowers and copy the 'cqc' skill folder into .agents/skills/cqc at your workspace root -- Antigravity auto-discovers it from there, no restart needed.</span>
<button class="copy-btn" type="button" onclick="copyCmd(this)" aria-label="Copy setup instructions to clipboard">COPY</button>
</div>
</article>
<div class="slash-divider"><svg viewBox="0 0 700 40"><line class="slash-line" x1="700" y1="38" x2="0" y2="2"/></svg></div>
<!-- ACT 07 -->
<article class="panel" data-skill="animal-instinct">
<div class="panel-num">第七幕 ACT 07 // FUZZ<span class="panel-jp">突然変異</span></div>
<h2 class="panel-title">fuzz</h2>
<div class="panel-headline">"Genetic Payload Mutation and Bug Hunting."</div>
<p class="panel-body">Applies 5 genetic mutations (null byte injections, extreme unicode, format strings, boundary numbers) to code snippets or API payloads to uncover hidden crashes before production.</p>
<div class="platform-row">
<span class="platform-label">Setup for:</span>
<select class="platform-select" aria-label="Choose your agent for the animal-instinct skill" onchange="updateSetup(this, 'animal-instinct')">
<option value="antigravity">Antigravity</option>
<option value="claude">Claude Code</option>
<option value="opencode">OpenCode</option>
<option value="cursor">Cursor</option>
<option value="windsurf">Windsurf</option>
<option value="other">Others</option>
</select>
</div>
<div class="setup-cmd">
<span>Clone https://github.com/Meard-AI/Superpowers and copy the 'animal-instinct' skill folder into .agents/skills/animal-instinct at your workspace root -- Antigravity auto-discovers it from there, no restart needed.</span>
<button class="copy-btn" type="button" onclick="copyCmd(this)" aria-label="Copy setup instructions to clipboard">COPY</button>
</div>
</article>
</main>
<footer>THE SUPERPOWERS SUITE -- ZERO DEPENDENCIES -- ALL PYTHON 3 -- 終 END OF VOL. 01</footer>
</div>
<script>
// Per-agent install instructions. Paths verified against each tool's
// own current convention -- these are NOT identical, despite the
// repo shipping one path for all of them.
const AGENT_SETUP = {
antigravity: {
label: 'Antigravity',
cmd: (skill) => `Clone https://github.com/Meard-AI/Superpowers and copy the '${skill}' skill folder into .agents/skills/${skill} at your workspace root -- Antigravity auto-discovers it from there, no restart needed.`
},
claude: {
label: 'Claude Code',
cmd: (skill) => `Clone https://github.com/Meard-AI/Superpowers and copy the '${skill}' skill folder into .claude/skills/${skill} (project) or ~/.claude/skills/${skill} (personal, all projects) -- Claude Code loads it automatically when relevant.`
},
opencode: {
label: 'OpenCode',
cmd: (skill) => `Clone https://github.com/Meard-AI/Superpowers and copy the '${skill}' skill folder into .opencode/skills/${skill} -- OpenCode also reads .claude/skills/ and .agents/skills/ if you'd rather share paths across tools.`
},
cursor: {
label: 'Cursor',
cmd: (skill) => `Clone https://github.com/Meard-AI/Superpowers and copy the '${skill}' skill folder into .cursor/skills/${skill} -- Cursor also reads .agents/skills/ and .claude/skills/, so this works even if another agent already put it there.`
},
windsurf: {
label: 'Windsurf',
cmd: (skill) => `Clone https://github.com/Meard-AI/Superpowers and copy the '${skill}' skill folder into .windsurf/skills/${skill} in your project -- Cascade picks it up on the next session (reload the workspace after adding it).`
},
other: {
label: 'Others',
cmd: (skill) => `Clone https://github.com/Meard-AI/Superpowers and copy the '${skill}' skill folder into .agents/skills/${skill} -- this is the emerging cross-tool convention; check your agent's docs if it doesn't pick it up automatically.`
}
};
function updateSetup(selectEl, skill) {
const agent = AGENT_SETUP[selectEl.value] || AGENT_SETUP.other;
const setupCmdEl = selectEl.closest('.panel').querySelector('.setup-cmd span');
setupCmdEl.textContent = agent.cmd(skill);
}
function copyCmd(btn) {
const text = btn.previousElementSibling.textContent.trim();
function feedback(label) {
btn.textContent = label;
setTimeout(() => { btn.textContent = 'COPY'; }, 1400);
}
// The async Clipboard API needs a secure context and REJECTS on file://
// in Chrome. Reporting DONE regardless is a false success, so fall back
// to execCommand and only claim success when a copy actually happened.
function legacyCopy() {
try {
const ta = document.createElement('textarea');
ta.value = text;
ta.setAttribute('readonly', '');
ta.style.cssText = 'position:absolute;left:-9999px;top:0;';
document.body.appendChild(ta);
ta.select();
const ok = document.execCommand('copy');
document.body.removeChild(ta);
return ok;
} catch (err) {
return false;
}
}
if (navigator.clipboard && window.isSecureContext) {
navigator.clipboard.writeText(text)
.then(() => feedback('DONE'))
.catch(() => feedback(legacyCopy() ? 'DONE' : 'COPY FAILED'));
} else {
feedback(legacyCopy() ? 'DONE' : 'COPY FAILED');
}
}
function prefersDark() {
return window.matchMedia
&& window.matchMedia('(prefers-color-scheme: dark)').matches;
}
function currentTheme() {
// The attribute lives on <html>, matching the head script and the CSS.
// With no attribute the OS preference is in force, so read that —
// otherwise the first click is a no-op for a user already on dark.
const explicit = document.documentElement.getAttribute('data-theme');
if (explicit === 'dark' || explicit === 'light') return explicit;
return prefersDark() ? 'dark' : 'light';
}
function syncThemeButton(theme) {
const btn = document.getElementById('theme-toggle');
if (!btn) return;
btn.textContent = theme === 'dark' ? '墨 INK' : '紙 PAPER';
btn.setAttribute('aria-pressed', String(theme === 'dark'));
btn.setAttribute('aria-label',
theme === 'dark' ? 'Switch to light theme' : 'Switch to dark theme');
}
function toggleTheme() {
const next = currentTheme() === 'dark' ? 'light' : 'dark';
document.documentElement.setAttribute('data-theme', next);
try { localStorage.setItem('superpowers-theme', next); } catch (err) { /* ignore */ }
syncThemeButton(next);
// anime.js is a CDN dependency and the toggle must work without it.
var reduced = window.matchMedia
&& window.matchMedia('(prefers-reduced-motion: reduce)').matches;
if (typeof anime === 'function' && !reduced) {
try {
anime({
targets: '.wrap',
scale: [0.99, 1],
opacity: [0.88, 1],
duration: 300,
easing: 'easeInOutQuad'
});
} catch (err) { /* cosmetic only */ }
}
}
// -- AMBIENT SOUND ENGINE --
// Generative pad, not a recording -- no external audio file, no
// licensing question. Browsers block audio before a user gesture,
// so this arms on the first click/keypress/scroll and then plays
// continuously until muted. Also tries to start immediately in
// case the browser's autoplay heuristics allow it (e.g. after a
// prior visit) -- if that throws, the gesture listener catches it.
let audioCtx = null;
let masterGain = null;
let ambientNodes = [];
let soundStarted = false;
let soundMuted = false;
function buildAmbientPad() {
audioCtx = new (window.AudioContext || window.webkitAudioContext)();
masterGain = audioCtx.createGain();
masterGain.gain.value = 0; // fade in below
masterGain.connect(audioCtx.destination);
// Soft lowpass so nothing here reads as a "tone" or melody --
// just warm, breathing air.
const filter = audioCtx.createBiquadFilter();
filter.type = 'lowpass';
filter.frequency.value = 900;
filter.Q.value = 0.3;
filter.connect(masterGain);
// Filter LFO -- slow, so the pad seems to breathe rather than
// sit static.
const filterLFO = audioCtx.createOscillator();
filterLFO.frequency.value = 0.06;
const filterLFOGain = audioCtx.createGain();
filterLFOGain.gain.value = 220;
filterLFO.connect(filterLFOGain);
filterLFOGain.connect(filter.frequency);
filterLFO.start();
// A soft, slow delay for width/depth without needing an
// impulse-response file (no external reverb asset either).
const delay = audioCtx.createDelay(2.0);
delay.delayTime.value = 0.6;
const feedback = audioCtx.createGain();
feedback.gain.value = 0.35;
delay.connect(feedback);
feedback.connect(delay);
filter.connect(delay);
delay.connect(masterGain);
// Layered detuned oscillators, a minor-leaning stack (A2/C3/E3/A3)
// for a calm, slightly melancholic ambient character rather than
// a flat drone.
const freqs = [110.00, 130.81, 164.81, 220.00];
freqs.forEach((freq, i) => {
const osc = audioCtx.createOscillator();
osc.type = 'sine';
osc.frequency.value = freq;
osc.detune.value = (i % 2 === 0 ? -1 : 1) * (4 + i * 2);