@yemi33/minions 0.1.70 → 0.1.71

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,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.71 (2026-03-31)
4
+
5
+ ### Dashboard
6
+ - dashboard/js/refresh.js
7
+
3
8
  ## 0.1.70 (2026-03-31)
4
9
 
5
10
  ### Other
@@ -57,22 +57,8 @@ async function refresh() {
57
57
 
58
58
  refresh();
59
59
 
60
- // SSE status stream real-time push + hot-reload on one connection
61
- // (avoids exhausting HTTP/1.1's 6-connection-per-origin limit)
62
- let _statusStream = null;
63
- try {
64
- _statusStream = new EventSource('/api/status-stream');
65
- _statusStream.onmessage = (e) => {
66
- try { _processStatusUpdate(JSON.parse(e.data)); } catch (e2) { console.error('status-stream:', e2.message); }
67
- };
68
- _statusStream.addEventListener('reload', () => { location.reload(); });
69
- _statusStream.onerror = () => {
70
- if (_statusStream) { _statusStream.close(); _statusStream = null; }
71
- setInterval(refresh, 4000);
72
- };
73
- } catch {
74
- setInterval(refresh, 4000);
75
- }
60
+ // Poll for status updates (SSE caused HTTP/1.1 connection exhaustion CC fetch would fail)
61
+ setInterval(refresh, 4000);
76
62
 
77
63
  // Wire sidebar navigation
78
64
  document.querySelectorAll('.sidebar-link').forEach(link => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.70",
3
+ "version": "0.1.71",
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"