@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 +2 -1
- package/engine/shared.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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.
|
|
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"
|