@yemi33/minions 0.1.192 → 0.1.193

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,9 +1,10 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.192 (2026-04-02)
3
+ ## 0.1.193 (2026-04-02)
4
4
 
5
5
  ### Engine
6
6
  - engine/queries.js
7
+ - engine/shared.js
7
8
 
8
9
  ### Dashboard
9
10
  - dashboard.js
package/engine/shared.js CHANGED
@@ -7,6 +7,7 @@ const fs = require('fs');
7
7
  const path = require('path');
8
8
 
9
9
  const MINIONS_DIR = path.resolve(__dirname, '..');
10
+ const CENTRAL_WI_PATH = path.join(MINIONS_DIR, 'work-items.json');
10
11
  const PR_LINKS_PATH = path.join(MINIONS_DIR, 'engine', 'pr-links.json');
11
12
  const LOG_PATH = path.join(__dirname, 'log.json');
12
13
 
@@ -561,6 +562,7 @@ function linkPrToItem(project, prId, itemId) {
561
562
 
562
563
  module.exports = {
563
564
  MINIONS_DIR,
565
+ CENTRAL_WI_PATH,
564
566
  PR_LINKS_PATH,
565
567
  LOG_PATH,
566
568
  ts,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.192",
3
+ "version": "0.1.193",
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"