@yemi33/minions 0.1.1596 → 0.1.1598
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 +3 -1
- package/dashboard/js/render-agents.js +6 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.1598 (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
9
|
### Fixes
|
|
10
|
+
- switch Copilot icon to outline style for cleaner inline read
|
|
11
|
+
- un-invert Copilot — purple silhouette + white cutouts
|
|
10
12
|
- redraw Copilot icon to match actual mascot — vertical eye pills, not grill bars
|
|
11
13
|
- invert Copilot icon colors for better dark-theme visibility
|
|
12
14
|
|
|
@@ -14,16 +14,15 @@ 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 mascot
|
|
18
|
-
//
|
|
19
|
-
//
|
|
20
|
-
//
|
|
21
|
-
//
|
|
22
|
-
// the cutouts pick up the runtime accent for visibility on dark theme.
|
|
17
|
+
// GitHub Copilot mascot rendered as an outline — head silhouette, goggles,
|
|
18
|
+
// bridge, and bib are stroked in currentColor (no fill); the two vertical
|
|
19
|
+
// eye pills inside the bib stay filled because at 13px they'd disappear
|
|
20
|
+
// as outlines. Reads cleaner against the dashboard cards than the
|
|
21
|
+
// solid-silhouette versions.
|
|
23
22
|
copilot: {
|
|
24
23
|
label: 'Copilot',
|
|
25
24
|
color: '#8957e5',
|
|
26
|
-
svg: '<svg viewBox="0 0 24 18" width="17" height="13" aria-hidden="true" focusable="false" style="display:inline-block;vertical-align:-2px"
|
|
25
|
+
svg: '<svg viewBox="0 0 24 18" width="17" height="13" aria-hidden="true" focusable="false" style="display:inline-block;vertical-align:-2px" fill="none" stroke="currentColor" stroke-width="1.3" stroke-linejoin="round"><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"/><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"/><rect x="9.4" y="10.7" width="1.7" height="4.7" rx="0.85" fill="currentColor" stroke="none"/><rect x="12.9" y="10.7" width="1.7" height="4.7" rx="0.85" fill="currentColor" stroke="none"/></svg>',
|
|
27
26
|
},
|
|
28
27
|
};
|
|
29
28
|
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.1598",
|
|
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"
|