-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagents.html
More file actions
142 lines (124 loc) · 5 KB
/
agents.html
File metadata and controls
142 lines (124 loc) · 5 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Agent Roster | Phil Hills Swarm</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=JetBrains+Mono:wght@400;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
<style>
body {
background-color: #0d1117;
color: #c9d1d9;
font-family: 'Inter', sans-serif;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
.roster-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.agent-card {
background: #161b22;
border: 1px solid #30363d;
border-radius: 8px;
padding: 2rem;
transition: transform 0.2s;
}
.agent-card:hover {
transform: translateY(-5px);
border-color: #58a6ff;
}
.agent-name {
font-family: 'JetBrains Mono', monospace;
font-size: 1.2rem;
margin-bottom: 0.5rem;
color: #58a6ff;
}
.agent-role {
color: #8b949e;
font-size: 0.9rem;
margin-bottom: 1rem;
}
.agent-status {
display: inline-block;
padding: 2px 8px;
border-radius: 12px;
font-size: 0.75rem;
background: #238636;
color: white;
}
.last-action {
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid #30363d;
font-size: 0.85rem;
color: #8b949e;
}
</style>
</head>
<body>
<header style="padding: 20px; border-bottom: 1px solid #30363d;">
<nav class="container" style="display: flex; justify-content: space-between; align-items: center; padding: 0;">
<a href="/" style="font-weight: bold; color: white; text-decoration: none;">← Return to Glass Server</a>
<div style="font-family: 'JetBrains Mono'; color: #238636;">● SWARM_ONLINE</div>
</nav>
</header>
<main class="container">
<h1>Active Agent Roster</h1>
<p>The specialized autonomous agents powering the Q-Protocol mesh.</p>
<div class="roster-grid">
<!-- Henry -->
<div class="agent-card">
<div class="agent-name">Henry</div>
<div class="agent-role">Principal Engineer</div>
<span class="agent-status" style="background: #1f6feb;">BUILDING</span>
<p>Responsible for code synthesis, refactoring, and maintaining the physics engine.</p>
<div class="last-action">LAST: REFAC: PHYSICS_ENGINE -> BLAKE3</div>
</div>
<!-- Sentinel -->
<div class="agent-card">
<div class="agent-name">Sentinel</div>
<div class="agent-role">Security Auditor</div>
<span class="agent-status" style="background: #da3633;">PATROLLING</span>
<p>Red Team operator. Validates identity schema and prevents data collisions.</p>
<div class="last-action">LAST: AUDIT: IDENTITY_SCHEMA_2.0</div>
</div>
<!-- Sidewinder -->
<div class="agent-card">
<div class="agent-name">Sidewinder</div>
<div class="agent-role">Compliance Officer</div>
<span class="agent-status" style="background: #d29922;">SCANNING</span>
<p>Internal Affairs. Monitors ledger for duplicate compute and efficiently.</p>
<div class="last-action">LAST: COMPLIANCE: CHECK_DFI_COLLISIONS</div>
</div>
<!-- Biographer -->
<div class="agent-card">
<div class="agent-name">Biographer</div>
<div class="agent-role">Narrative Synthesizer</div>
<span class="agent-status">PUBLISHING</span>
<p>Decompresses ledger blocks into human-readable documentation and whitepapers.</p>
<div class="last-action">LAST: SYNTH: WHITE_PAPER_PDF</div>
</div>
<!-- Pulse -->
<div class="agent-card">
<div class="agent-name">Pulse</div>
<div class="agent-role">Intelligence Officer</div>
<span class="agent-status" style="background: #8957e5;">INGESTING</span>
<p>Scans external feeds (GitHub, News) to keep Swarm Memory current.</p>
<div class="last-action">LAST: INGEST: GITHUB_REPOS_180+</div>
</div>
</div>
</main>
<footer class="container" style="margin-top: 4rem; color: #8b949e; font-size: 0.9rem;">
© 2026 Phil Hills. Agents operate under Q-Protocol Constitutional Rules.
</footer>
</body>
</html>