@yemi33/minions 0.1.170 → 0.1.171

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,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.171 (2026-04-02)
4
+
5
+ ### Dashboard
6
+ - dashboard/js/utils.js
7
+ - dashboard/styles.css
8
+
3
9
  ## 0.1.170 (2026-04-02)
4
10
 
5
11
  ### Engine
@@ -134,7 +134,7 @@ function renderMd(s) {
134
134
  i++;
135
135
  }
136
136
  i--; // back up one since the for loop will increment
137
- var tableHtml = '<table class="pr-table" style="margin:4px 0;font-size:11px"><thead><tr>';
137
+ var tableHtml = '<div class="md-table-wrap"><table style="font-size:11px"><thead><tr>';
138
138
  if (tableRows.length > 0) {
139
139
  tableRows[0].forEach(function(c) { tableHtml += '<th>' + c + '</th>'; });
140
140
  tableHtml += '</tr></thead><tbody>';
@@ -143,7 +143,7 @@ function renderMd(s) {
143
143
  tableRows[ti].forEach(function(c) { tableHtml += '<td>' + c + '</td>'; });
144
144
  tableHtml += '</tr>';
145
145
  }
146
- tableHtml += '</tbody></table>';
146
+ tableHtml += '</tbody></table></div>';
147
147
  }
148
148
  out.push(tableHtml);
149
149
  continue;
@@ -570,8 +570,10 @@
570
570
  .md-content { font-family: 'Segoe UI', system-ui, sans-serif; font-size: 12px; line-height: 1.6; white-space: normal; word-break: break-word; overflow-x: auto; }
571
571
  .md-content pre { font-family: Consolas, 'Courier New', monospace; white-space: pre-wrap; }
572
572
  .md-content code { font-family: Consolas, 'Courier New', monospace; }
573
- .md-content table { border-collapse: collapse; width: 100%; margin: 6px 0; table-layout: fixed; }
574
- .md-content th, .md-content td { padding: 4px 8px; border: 1px solid var(--border); text-align: left; font-size: 11px; word-wrap: break-word; overflow-wrap: break-word; }
573
+ .md-content table { border-collapse: collapse; margin: 6px 0; width: max-content; min-width: 100%; }
574
+ .md-content .md-table-wrap { overflow-x: auto; margin: 6px 0; }
575
+ .md-content th, .md-content td { padding: 4px 8px; border: 1px solid var(--border); text-align: left; font-size: 11px; white-space: nowrap; }
576
+ .md-content td { white-space: normal; min-width: 60px; }
575
577
  .md-content th { background: var(--surface); font-weight: 600; }
576
578
  .status-line { display: flex; align-items: center; gap: var(--space-5); padding: var(--space-5) var(--space-7); background: var(--bg); border-bottom: 1px solid var(--border); font-size: var(--text-md); }
577
579
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.170",
3
+ "version": "0.1.171",
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"
@@ -1,19 +0,0 @@
1
- {
2
- "id": "daily-standup",
3
- "title": "Daily Squad Stand-up",
4
- "stages": [
5
- {
6
- "id": "standup",
7
- "type": "meeting",
8
- "title": "Daily Squad Stand-up � 2026-04-01",
9
- "agenda": "Daily weekday meeting for all agents to review squad setup improvements and discuss progress on agentic harness engineering.\n\n1. What shipped since yesterday's meeting (Track A/B/C progress)?\n2. Any blockers on current work items?\n3. Review recent agentic harness engineering best practices � are there new Anthropic articles or model improvements that change our assumptions?\n4. Propose 1 concrete improvement each agent wants to make to the squad harness this week.\n5. Agree on today's priorities and any re-sequencing needed.\n\nOutput: a bulleted list of decisions made, action items with owners, and any updated priorities.",
10
- "participants": [
11
- "all"
12
- ]
13
- }
14
- ],
15
- "trigger": {
16
- "cron": "0 9 1,2,3,4,5"
17
- },
18
- "enabled": true
19
- }