@yemi33/minions 0.1.136 → 0.1.137

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,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.137 (2026-04-01)
4
+
5
+ ### Dashboard
6
+ - dashboard.js
7
+ - dashboard/js/refresh.js
8
+ - dashboard/pages/inbox.html
9
+ - dashboard/pages/pipelines.html
10
+
3
11
  ## 0.1.136 (2026-04-01)
4
12
 
5
13
  ### Dashboard
@@ -51,6 +51,9 @@ function _processStatusUpdate(data) {
51
51
  if (autoEl) autoEl.innerHTML = data.autoMode?.approvePlans
52
52
  ? '<span style="font-size:9px;font-weight:600;padding:1px 6px;border-radius:3px;background:rgba(63,185,80,0.15);color:var(--green);border:1px solid rgba(63,185,80,0.3)">AUTO-APPROVE</span>'
53
53
  : '';
54
+ // Inbox consolidation threshold from config
55
+ const threshEl = document.getElementById('inbox-threshold');
56
+ if (threshEl && data.autoMode?.inboxThreshold) threshEl.textContent = data.autoMode.inboxThreshold;
54
57
  renderPrs(data.pullRequests || []);
55
58
  renderArchiveButtons(data.archivedPrds || []);
56
59
  renderEngineStatus(data.engine);
@@ -1,5 +1,5 @@
1
1
  <section>
2
- <h2>Notes Inbox <span class="count" id="inbox-count">0</span> <button class="pr-pager-btn" style="font-size:9px;padding:1px 6px;color:var(--green);border-color:var(--green);margin-left:8px" onclick="openQuickNoteModal()">+ Note</button> <span style="font-size:10px;color:var(--muted);font-weight:400;text-transform:none;letter-spacing:0">auto-consolidates at 3 notes</span></h2>
2
+ <h2>Notes Inbox <span class="count" id="inbox-count">0</span> <button class="pr-pager-btn" style="font-size:9px;padding:1px 6px;color:var(--green);border-color:var(--green);margin-left:8px" onclick="openQuickNoteModal()">+ Note</button> <span style="font-size:10px;color:var(--muted);font-weight:400;text-transform:none;letter-spacing:0">auto-consolidates at <span id="inbox-threshold">3</span> notes</span></h2>
3
3
  <div class="inbox-list" id="inbox-list">Loading...</div>
4
4
  </section>
5
5
  <section>
@@ -1,6 +1,7 @@
1
1
  <section>
2
2
  <h2>Pipelines <span class="count" id="pipelines-count">0</span>
3
3
  <button class="pr-pager-btn" style="font-size:9px;padding:1px 6px;color:var(--green);border-color:var(--green);margin-left:8px" onclick="openCreatePipelineModal()">+ New Pipeline</button>
4
+ <span style="font-size:10px;color:var(--muted);font-weight:400;text-transform:none;letter-spacing:0">chain stages like audit → meeting → plan → merge</span>
4
5
  </h2>
5
6
  <div id="pipelines-content"><p class="empty">No pipelines yet. Create one to chain stages like audit → meeting → plan → merge.</p></div>
6
7
  </section>
package/dashboard.js CHANGED
@@ -244,6 +244,7 @@ function getStatus() {
244
244
  approvePlans: !!CONFIG.engine?.autoApprovePlans,
245
245
  decompose: CONFIG.engine?.autoDecompose !== false,
246
246
  tempAgents: !!CONFIG.engine?.allowTempAgents,
247
+ inboxThreshold: CONFIG.engine?.inboxConsolidateThreshold || shared.ENGINE_DEFAULTS.inboxConsolidateThreshold,
247
248
  },
248
249
  initialized: !!(CONFIG.agents && Object.keys(CONFIG.agents).length > 0),
249
250
  installId: safeRead(path.join(MINIONS_DIR, '.install-id')).trim() || null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.136",
3
+ "version": "0.1.137",
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"