@yemi33/minions 0.1.2161 → 0.1.2162

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.
@@ -146,7 +146,7 @@ const RENDER_VERSIONS = {
146
146
  dispatch: 2,
147
147
  engineLog: 2,
148
148
  metrics: 1,
149
- workItems: 2,
149
+ workItems: 3,
150
150
  skills: 1,
151
151
  mcpServers: 1,
152
152
  schedules: 1,
@@ -35,12 +35,13 @@ const _WI_ENRICHMENT_FIELDS = [
35
35
  //
36
36
  // Triggers:
37
37
  // * _preDispatchEval.valid === false (pre-dispatch acceptance gate rejected)
38
- // * _pendingReason in { pr_not_found, no_agent, budget_exceeded, dependency_unmet }
38
+ // * _pendingReason in { pr_not_found, no_agent, budget_exceeded }
39
39
  //
40
40
  // Does NOT trigger for transient reasons that auto-clear:
41
41
  // * cooldown / retry_cooldown — wait it out
42
42
  // * already_dispatched — engine reconciles on next tick
43
43
  // * branch_locked — wait for the holding dispatch
44
+ // * dependency_unmet — auto-clears when upstream dep finishes (engine discovery loop + DEPENDENCY_MET watch)
44
45
  //
45
46
  // Returns { kind, short, full } when the item needs attention, else null.
46
47
  // Pure helper (no DOM / escapeHtml deps) so it can be unit-tested in Node.
@@ -74,13 +75,6 @@ function needsAttentionInfo(item) {
74
75
  var budgetMsg = 'Assigned agent ' + agent + ' is over its maxBudgetUsd cap.';
75
76
  return { kind: 'budget_exceeded', short: budgetMsg, full: budgetMsg };
76
77
  }
77
- if (reason === 'dependency_unmet') {
78
- var deps = Array.isArray(item.depends_on) && item.depends_on.length
79
- ? item.depends_on.join(', ')
80
- : '<unknown>';
81
- var depMsg = 'Waiting on dependencies: ' + deps + '. (One or more are not yet done.)';
82
- return { kind: 'dependency_unmet', short: depMsg, full: depMsg };
83
- }
84
78
  return null;
85
79
  }
86
80
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.2161",
3
+ "version": "0.1.2162",
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"