@yemi33/minions 0.1.1594 → 0.1.1596
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 +5 -1
- package/dashboard/js/render-agents.js +7 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.1596 (2026-04-28)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- match runtime tags to actual logos (pixel-crab Claude, mascot Copilot)
|
|
7
7
|
- replace runtime text tag with inline SVG logos
|
|
8
8
|
|
|
9
|
+
### Fixes
|
|
10
|
+
- redraw Copilot icon to match actual mascot — vertical eye pills, not grill bars
|
|
11
|
+
- invert Copilot icon colors for better dark-theme visibility
|
|
12
|
+
|
|
9
13
|
## 0.1.1592 (2026-04-28)
|
|
10
14
|
|
|
11
15
|
### Features
|
|
@@ -14,14 +14,16 @@ const RUNTIME_TAGS = {
|
|
|
14
14
|
color: '#cc785c',
|
|
15
15
|
svg: '<svg viewBox="0 0 24 24" width="13" height="13" aria-hidden="true" focusable="false" style="display:inline-block;vertical-align:-2px"><g fill="currentColor"><rect x="4" y="3" width="16" height="15"/><rect x="2" y="8" width="2" height="4"/><rect x="20" y="8" width="2" height="4"/><rect x="4" y="18" width="2.5" height="3"/><rect x="8" y="18" width="2.5" height="3"/><rect x="13.5" y="18" width="2.5" height="3"/><rect x="17.5" y="18" width="2.5" height="3"/></g><g fill="#000"><rect x="7" y="7.5" width="2.5" height="3"/><rect x="14.5" y="7.5" width="2.5" height="3"/></g></svg>',
|
|
16
16
|
},
|
|
17
|
-
// GitHub Copilot —
|
|
18
|
-
//
|
|
19
|
-
//
|
|
20
|
-
//
|
|
17
|
+
// GitHub Copilot mascot — a helmeted face with two BIG rounded goggles
|
|
18
|
+
// dominating the upper half (almost touching the top), a tiny bridge
|
|
19
|
+
// between them, and a white "bib" / chin-guard in the lower half with
|
|
20
|
+
// two VERTICAL pill eyes inside it (not horizontal grill bars — that
|
|
21
|
+
// was the prior misread). Color-inverted so the helmet is white-ish and
|
|
22
|
+
// the cutouts pick up the runtime accent for visibility on dark theme.
|
|
21
23
|
copilot: {
|
|
22
24
|
label: 'Copilot',
|
|
23
25
|
color: '#8957e5',
|
|
24
|
-
svg: '<svg viewBox="0 0 24
|
|
26
|
+
svg: '<svg viewBox="0 0 24 18" width="17" height="13" aria-hidden="true" focusable="false" style="display:inline-block;vertical-align:-2px"><g fill="#fff"><path d="M12 1 C18 1 21 4 21 8 V10 C22.5 10.5 23.5 12 23.5 14 C23.5 15.5 22.5 16.5 21 16.7 V17 C21 17.6 20.5 18 19.5 18 H4.5 C3.5 18 3 17.6 3 17 V16.7 C1.5 16.5 0.5 15.5 0.5 14 C0.5 12 1.5 10.5 3 10 V8 C3 4 6 1 12 1 Z"/></g><g fill="currentColor"><rect x="3.6" y="3.4" width="7.4" height="6.2" rx="2.7"/><rect x="13" y="3.4" width="7.4" height="6.2" rx="2.7"/><rect x="11" y="5.6" width="2" height="1.6" rx="0.4"/><path d="M7.4 9.6 H16.6 V15.4 C16.6 16.4 15.8 17 14.7 17 H9.3 C8.2 17 7.4 16.4 7.4 15.4 Z"/></g><g fill="#fff"><rect x="9.4" y="10.7" width="1.7" height="4.7" rx="0.85"/><rect x="12.9" y="10.7" width="1.7" height="4.7" rx="0.85"/></g></svg>',
|
|
25
27
|
},
|
|
26
28
|
};
|
|
27
29
|
function _runtimeTagHtml(runtime) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1596",
|
|
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"
|