@yemi33/minions 0.1.1593 → 0.1.1594
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 +2 -1
- package/dashboard/js/render-agents.js +10 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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: head with side ear cups,
|
|
18
|
+
// two round goggles, small bridge, and a rectangular grill mouth with two
|
|
19
|
+
// vertical bars. Matches the standalone github-copilot icon. Cutouts use
|
|
20
|
+
// white so the logo stays recognisable against any agent-card background.
|
|
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="currentColor"><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="#fff"><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="currentColor"><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.1594",
|
|
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"
|