@yemi33/minions 0.1.382 → 0.1.383

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.382 (2026-04-06)
3
+ ## 0.1.383 (2026-04-06)
4
4
 
5
5
  ### Fixes
6
+ - SyntaxError — await in non-async discoverWork function
6
7
  - branch regex missed W- and PL- work item IDs — wrong PR agent attribution
7
8
 
8
9
  ## 0.1.381 (2026-04-06)
package/engine.js CHANGED
@@ -2106,7 +2106,7 @@ function discoverWork(config) {
2106
2106
  // Pipeline orchestration — check stage completions and start ready stages
2107
2107
  try {
2108
2108
  const { discoverPipelineWork } = require('./engine/pipeline');
2109
- await discoverPipelineWork(config);
2109
+ discoverPipelineWork(config).catch(e => log('warn', 'discover pipeline work: ' + e.message));
2110
2110
  } catch (e) { log('warn', 'discover pipeline work: ' + e.message); }
2111
2111
 
2112
2112
  // Periodic plan completion sweep — catch PRDs that completed while engine was down
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.382",
3
+ "version": "0.1.383",
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"