@yemi33/minions 0.1.501 → 0.1.502

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,12 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.501 (2026-04-07)
3
+ ## 0.1.502 (2026-04-07)
4
4
 
5
5
  ### Features
6
6
  - explicitly-assigned work items bypass concurrency cap
7
7
  - strengthen CC dispatch contract with domain terminology mapping
8
8
 
9
9
  ### Fixes
10
+ - correct stale dispatch priority comment
10
11
  - comprehensive steering failure handling with user-visible feedback
11
12
 
12
13
  ## 0.1.498 (2026-04-07)
package/engine.js CHANGED
@@ -2475,7 +2475,7 @@ async function tickInner() {
2475
2475
 
2476
2476
  const slotsAvailable = Math.max(0, maxConcurrent - activeCount);
2477
2477
 
2478
- // Priority dispatch: fixes > reviews > plan-to-prd > implement > verify > other
2478
+ // Priority dispatch: implement > fix/ask > review > test/verify > plan > other
2479
2479
  const typePriority = { 'implement:large': 0, implement: 0, fix: 1, ask: 1, review: 2, test: 3, verify: 3, plan: 4, 'plan-to-prd': 4 };
2480
2480
  const itemPriority = { high: 0, medium: 1, low: 2 };
2481
2481
  dispatch.pending.sort((a, b) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.501",
3
+ "version": "0.1.502",
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"