@yemi33/minions 0.1.503 → 0.1.504

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,6 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.503 (2026-04-07)
3
+ ## 0.1.504 (2026-04-07)
4
+
5
+ ### Features
6
+ - 9 live output tests + render [steering-failed] in live stream
4
7
 
5
8
  ### Fixes
6
9
  - live output reads only tail bytes from disk, increase cap to 64KB
@@ -54,6 +54,13 @@ function renderLiveChatMessage(raw) {
54
54
  continue;
55
55
  }
56
56
 
57
+ // Steering failure notices
58
+ if (trimmed.startsWith('[steering-failed]')) {
59
+ const msg = trimmed.replace('[steering-failed] ', '');
60
+ el.innerHTML += '<div style="background:rgba(248,81,73,0.1);border:1px solid var(--red);color:var(--red);padding:6px 12px;border-radius:8px;margin:4px 0;font-size:11px">\u26A0 ' + escHtml(msg) + '</div>';
61
+ continue;
62
+ }
63
+
57
64
  // JSON array format (--output-format json)
58
65
  if (trimmed.startsWith('[')) {
59
66
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.503",
3
+ "version": "0.1.504",
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"