@yemi33/minions 0.1.177 → 0.1.178
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/CHANGELOG.md +6 -0
- package/dashboard/layout.html +2 -2
- package/dashboard/styles.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dashboard/layout.html
CHANGED
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>
|
|
6
|
+
<title>Starship Mission Control</title>
|
|
7
7
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>👽</text></svg>">
|
|
8
8
|
<style>/* __CSS__ */</style>
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
|
11
11
|
|
|
12
12
|
<header>
|
|
13
|
-
<h1>
|
|
13
|
+
<h1>Starship Mission Control <span id="header-projects">—</span></h1>
|
|
14
14
|
<div style="display:flex;align-items:center;gap:8px;">
|
|
15
15
|
<span class="engine-badge stopped" id="engine-badge">STOPPED</span>
|
|
16
16
|
<div class="timestamp" id="ts">—</div>
|
package/dashboard/styles.css
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
padding: var(--space-6) var(--space-9); display: flex; align-items: center; justify-content: space-between;
|
|
32
32
|
position: sticky; top: 0; z-index: 100;
|
|
33
33
|
}
|
|
34
|
-
header h1 { font-size: var(--text-2xl); font-weight: 600; color: var(--blue); letter-spacing: 0.5px; }
|
|
34
|
+
header h1 { font-size: var(--text-2xl); font-weight: 600; color: var(--blue); letter-spacing: 0.5px; margin-left: 150px; }
|
|
35
35
|
header h1 span { color: var(--muted); font-weight: 400; font-size: var(--text-lg); margin-left: var(--space-4); }
|
|
36
36
|
.pulse { width: 8px; height: 8px; border-radius: var(--radius-full); background: var(--green); display: inline-block; margin-right: var(--space-3); animation: pulse 2s infinite; }
|
|
37
37
|
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.178",
|
|
4
4
|
"description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
|
|
5
5
|
"bin": {
|
|
6
6
|
"minions": "bin/minions.js"
|