@yemi33/minions 0.1.1593 → 0.1.1595
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 +10 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.1595 (2026-04-28)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
|
+
- match runtime tags to actual logos (pixel-crab Claude, mascot Copilot)
|
|
6
7
|
- replace runtime text tag with inline SVG logos
|
|
7
8
|
|
|
9
|
+
### Fixes
|
|
10
|
+
- invert Copilot icon colors for better dark-theme visibility
|
|
11
|
+
|
|
8
12
|
## 0.1.1592 (2026-04-28)
|
|
9
13
|
|
|
10
14
|
### Features
|
|
@@ -5,17 +5,23 @@
|
|
|
5
5
|
// markup, currentColor-themed). Add a new entry here when a new runtime is
|
|
6
6
|
// registered in engine/runtimes/index.js.
|
|
7
7
|
const RUNTIME_TAGS = {
|
|
8
|
-
//
|
|
8
|
+
// Claude Code — pixel-art "crab" mascot in Anthropic orange. Wide blocky
|
|
9
|
+
// body with two black square eyes, side fin protrusions, and four legs at
|
|
10
|
+
// the bottom with a wide middle gap. Approximates the standalone Claude
|
|
11
|
+
// Code sticker icon.
|
|
9
12
|
claude: {
|
|
10
13
|
label: 'Claude',
|
|
11
14
|
color: '#cc785c',
|
|
12
|
-
svg: '<svg viewBox="
|
|
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>',
|
|
13
16
|
},
|
|
14
|
-
// GitHub Copilot —
|
|
17
|
+
// GitHub Copilot — bespectacled "pilot" mascot, color-inverted so the
|
|
18
|
+
// silhouette is white-ish and the goggle/mouth cutouts pick up the
|
|
19
|
+
// currentColor accent. Reads better as a small inline tag against the
|
|
20
|
+
// dark dashboard theme than the conventional dark-on-light rendering.
|
|
15
21
|
copilot: {
|
|
16
22
|
label: 'Copilot',
|
|
17
23
|
color: '#8957e5',
|
|
18
|
-
svg: '<svg viewBox="0 0
|
|
24
|
+
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="#fff"><ellipse cx="12" cy="11" rx="10" ry="8.5"/><circle cx="2.5" cy="13" r="2.4"/><circle cx="21.5" cy="13" r="2.4"/></g><g fill="currentColor"><circle cx="8" cy="10" r="3"/><circle cx="16" cy="10" r="3"/><rect x="11.2" y="9.5" width="1.6" height="1.6" rx="0.3"/><rect x="8.4" y="14" width="7.2" height="3.8" rx="0.5"/></g><g fill="#fff"><rect x="10.4" y="14.5" width="0.9" height="2.8" rx="0.2"/><rect x="12.7" y="14.5" width="0.9" height="2.8" rx="0.2"/></g></svg>',
|
|
19
25
|
},
|
|
20
26
|
};
|
|
21
27
|
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.1595",
|
|
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"
|