@yemi33/minions 0.1.89 → 0.1.91

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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.91 (2026-04-01)
4
+
5
+ ### Dashboard
6
+ - dashboard/styles.css
7
+
8
+ ## 0.1.90 (2026-04-01)
9
+
10
+ ### Dashboard
11
+ - dashboard/js/command-center.js
12
+
3
13
  ## 0.1.89 (2026-04-01)
4
14
 
5
15
  ### Dashboard
@@ -414,11 +414,11 @@ async function ccExecuteAction(action) {
414
414
  case 'create-meeting': {
415
415
  const res = await fetch('/api/meetings', {
416
416
  method: 'POST', headers: { 'Content-Type': 'application/json' },
417
- body: JSON.stringify({ title: action.title || action.topic, agenda: action.agenda || action.topic, participants: action.agents, rounds: action.rounds, project: action.project })
417
+ body: JSON.stringify({ title: action.title, agenda: action.agenda, participants: action.agents, rounds: action.rounds, project: action.project })
418
418
  });
419
419
  if (!res.ok) { const d = await res.json().catch(() => ({})); throw new Error(d.error || 'Meeting create failed'); }
420
420
  const d = await res.json();
421
- status.innerHTML = '&#10003; Meeting started: <strong>' + escHtml(action.topic) + '</strong>' + (d.id ? ' (' + escHtml(d.id) + ')' : '');
421
+ status.innerHTML = '&#10003; Meeting started: <strong>' + escHtml(action.title) + '</strong>' + (d.id ? ' (' + escHtml(d.id) + ')' : '');
422
422
  status.style.color = 'var(--green)';
423
423
  wakeEngine();
424
424
  break;
@@ -131,9 +131,12 @@
131
131
  .token-bar:hover .token-bar-tip { display: block; }
132
132
  .token-chart-labels { display: flex; gap: 3px; }
133
133
  .token-chart-labels span { flex: 1; min-width: 8px; max-width: 24px; font-size: 8px; color: var(--muted); text-align: center; overflow: hidden; }
134
- .token-agent-table { width: 100%; margin-top: var(--space-5); }
134
+ .token-agent-table { width: 100%; margin-top: var(--space-5); table-layout: fixed; }
135
135
  .token-agent-table th { text-align: left; font-size: var(--text-sm); color: var(--muted); font-weight: 500; padding: var(--space-2) var(--space-4); border-bottom: 1px solid var(--border); }
136
- .token-agent-table td { font-size: var(--text-base); padding: var(--space-2) var(--space-4); }
136
+ .token-agent-table th:first-child { width: 28%; }
137
+ .token-agent-table th:not(:first-child) { text-align: right; }
138
+ .token-agent-table td { font-size: var(--text-base); padding: var(--space-2) var(--space-4); font-variant-numeric: tabular-nums; }
139
+ .token-agent-table td:not(:first-child) { text-align: right; }
137
140
  .kb-tabs { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-bottom: var(--space-4); }
138
141
  .kb-tab { background: var(--surface2); border: 1px solid var(--border); color: var(--muted); font-size: var(--text-base); cursor: pointer; padding: var(--space-1) var(--space-5); border-radius: var(--radius-sm); transition: all var(--transition-base); }
139
142
  .kb-tab:hover { color: var(--text); border-color: var(--text); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.89",
3
+ "version": "0.1.91",
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"