@yemi33/minions 0.1.495 → 0.1.496

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,8 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.495 (2026-04-07)
3
+ ## 0.1.496 (2026-04-07)
4
4
 
5
5
  ### Fixes
6
+ - new PRs trigger red dot notification on Pull Requests page
6
7
  - lock timeout retry with backoff to prevent tick cascade failures (#389)
7
8
  - GitHub PR poll backoff for inaccessible repos (closes #377) (#386)
8
9
  - reconcile agent completions during engine downtime (closes #376) (#385)
@@ -6,7 +6,7 @@ const _pageCounters = {
6
6
  home: function(d) { return (d.dispatch?.completed || []).length; },
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
- prs: function(d) { return (d.pullRequests || []).filter(function(p) { return p.status === 'merged'; }).length; },
9
+ prs: function(d) { return (d.pullRequests || []).length + '|' + (d.pullRequests || []).filter(function(p) { return p.status === 'merged'; }).length; },
10
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); },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.495",
3
+ "version": "0.1.496",
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"