Skip to content

Commit b316c22

Browse files
Gregg CochranCopilot
andcommitted
Swarm-enhanced showcase site — 18 visual improvements
Terminal demo: CRT scanline, phosphor glow, typing banner, counter animations, pulse wave, Rich-style panel borders, active sessions + installed agents panels, heartbeat, uptime. Hero: typing subtitle rotation, dynamic cycling badge, stat counter strip with scroll-triggered count-up. Polish: scroll progress bar, click-to-copy install commands, architecture diagram particles, CTA shimmer effect, feature card glow borders + 3D tilt, varied scroll reveals. Accessibility: prefers-reduced-motion support. Applied via Swarm Command SS-50 (29 workers, 3 commanders, 0.95 consensus, 0.0% shadow score). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent bcd1bdd commit b316c22

2 files changed

Lines changed: 550 additions & 109 deletions

File tree

patch_js.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
with open('/Users/greggcochran/copilot-cli-agent-pulse/site/index.html', 'r') as f:
2+
content = f.read()
3+
4+
start_marker = " /* \u2500\u2500 Terminal Demo Animation \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */"
5+
end_marker = " demObs.observe(document.getElementById('demo'));"
6+
7+
si = content.find(start_marker)
8+
ei = content.find(end_marker) + len(end_marker)
9+
print(f"Found JS section: {si} to {ei}")
10+
11+
with open('/Users/greggcochran/copilot-cli-agent-pulse/site/index.html', 'w') as f:
12+
f.write(content[:si])
13+
f.write("PLACEHOLDER_JS_SECTION")
14+
f.write(content[ei:])
15+
print("Placeholder written")

0 commit comments

Comments
 (0)