@yemi33/minions 0.1.2038 → 0.1.2039
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/engine/features.js +9 -5
- package/package.json +1 -1
package/engine/features.js
CHANGED
|
@@ -58,13 +58,17 @@ const FEATURES = {
|
|
|
58
58
|
// ETag/status/bytes/render-duration capture, visibility-transition tracking,
|
|
59
59
|
// a small "diag" footer chip that opens a table modal, and a "send to engine"
|
|
60
60
|
// button that POSTs the buffer to /api/diagnostics/refresh for offline triage.
|
|
61
|
-
// Default
|
|
62
|
-
//
|
|
63
|
-
//
|
|
64
|
-
//
|
|
61
|
+
// Default ON (W-mphlr4lv0008c24f) — the diagnostic capture is cheap (in-memory
|
|
62
|
+
// ring buffer, no network, no DOM writes) and is gated by _isRefreshDiagOn()
|
|
63
|
+
// at the top of refresh() so the disabled path remains byte-identical to the
|
|
64
|
+
// pre-flag steady state. Having it always-on means the next staleness
|
|
65
|
+
// complaint can be diagnosed immediately from window._refreshDiagnostics
|
|
66
|
+
// without needing a settings flip first.
|
|
67
|
+
// Disable via config.features['dashboard-refresh-diagnostics']: false or
|
|
68
|
+
// env MINIONS_FEATURE_DASHBOARD_REFRESH_DIAGNOSTICS=0.
|
|
65
69
|
'dashboard-refresh-diagnostics': {
|
|
66
70
|
description: 'Capture the last 50 dashboard /api/status poll cycles (timing, ETag, status code, render duration, per-renderer change flags) in a browser-side ring buffer accessible via window._refreshDiagnostics, a footer "diag" chip, and POST /api/diagnostics/refresh.',
|
|
67
|
-
default:
|
|
71
|
+
default: true,
|
|
68
72
|
addedIn: '0.1.2034',
|
|
69
73
|
},
|
|
70
74
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2039",
|
|
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"
|