@yemi33/minions 0.1.426 → 0.1.427

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,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.426 (2026-04-06)
3
+ ## 0.1.427 (2026-04-06)
4
4
 
5
5
  ### Features
6
6
  - version check interval on settings page
@@ -11,6 +11,7 @@
11
11
  - Convert remaining lifecycle.js safeWrite calls to mutateJsonFileLocked
12
12
 
13
13
  ### Fixes
14
+ - Notes & KB sidebar notifies on inbox changes and notes.md edits
14
15
  - live output no longer clobbered by steering send
15
16
  - plan-to-prd playbook — don't include verify item, engine adds it
16
17
  - steering messages right-aligned with immediate feedback
@@ -7,7 +7,7 @@ const _pageCounters = {
7
7
  work: function(d) { return (d.workItems || []).length + '|' + (d.workItems || []).filter(function(w) { return w.status === 'done' || w.status === 'failed'; }).length; },
8
8
  plans: function(d) { return (d.prdProgress?.complete || 0) + '|' + (d.plans || []).length; },
9
9
  prs: function(d) { return (d.pullRequests || []).filter(function(p) { return p.status === 'merged'; }).length; },
10
- inbox: function(d) { return (d.inbox?.items || []).length; },
10
+ inbox: function(d) { return (d.inbox || []).length + '|' + (d.notes?.content || '').length; },
11
11
  meetings: function(d) { return (d.meetings || []).reduce(function(s, m) { return s + (m.round || 0); }, 0); },
12
12
  pipelines: function(d) { return (d.pipelines || []).reduce(function(s, p) { return s + (p.runs || []).length; }, 0); },
13
13
  schedule: function(d) { return (d.schedules || []).length; },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.426",
3
+ "version": "0.1.427",
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"