diff --git a/SYSTEM.md b/SYSTEM.md index 990fae1..8d45857 100644 --- a/SYSTEM.md +++ b/SYSTEM.md @@ -19,7 +19,7 @@ You are an agent working on The Nexus, Timmy's sovereign 3D home. - style.css: Cyberpunk glassmorphism theme. - index.html: Entry point. Minimal changes only. - ws-client.js: WebSocket client for Hermes gateway. -- portals.json, lora-status.json, sovereignty-status.json: Data feeds. +- portals.json, sovereignty-status.json: Data feeds. ## Sovereignty diff --git a/api/status.json b/api/status.json deleted file mode 100644 index e5a9137..0000000 --- a/api/status.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "agents": [ - { "name": "claude", "status": "working", "issue": "Live agent status board (#199)", "prs_today": 3 }, - { "name": "gemini", "status": "idle", "issue": null, "prs_today": 1 }, - { "name": "kimi", "status": "working", "issue": "Portal system YAML registry (#5)", "prs_today": 2 }, - { "name": "groq", "status": "idle", "issue": null, "prs_today": 0 }, - { "name": "grok", "status": "dead", "issue": null, "prs_today": 0 } - ] -} diff --git a/apply_cyberpunk.py b/apply_cyberpunk.py deleted file mode 100644 index 477bf5b..0000000 --- a/apply_cyberpunk.py +++ /dev/null @@ -1,66 +0,0 @@ -import re -import os - -# 1. Update style.css -with open('style.css', 'a') as f: - f.write(''' -/* === CRT / CYBERPUNK OVERLAY === */ -.crt-overlay { - position: fixed; - inset: 0; - z-index: 9999; - pointer-events: none; - background: - linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%), - linear-gradient(90deg, rgba(255, 0, 0, 0.04), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.04)); - background-size: 100% 4px, 4px 100%; - animation: flicker 0.15s infinite; - box-shadow: inset 0 0 100px rgba(0,0,0,0.9); -} - -@keyframes flicker { - 0% { opacity: 0.95; } - 50% { opacity: 1; } - 100% { opacity: 0.98; } -} - -.crt-overlay::after { - content: " "; - display: block; - position: absolute; - top: 0; - left: 0; - bottom: 0; - right: 0; - background: rgba(18, 16, 16, 0.1); - opacity: 0; - z-index: 999; - pointer-events: none; - animation: crt-pulse 4s linear infinite; -} - -@keyframes crt-pulse { - 0% { opacity: 0.05; } - 50% { opacity: 0.15; } - 100% { opacity: 0.05; } -} -''') - -# 2. Update index.html -if os.path.exists('index.html'): - with open('index.html', 'r') as f: - html = f.read() - if '
' not in html: - html = html.replace('