@yemi33/minions 0.1.166 → 0.1.167
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 +9 -0
- package/engine.js +1 -2
- package/minions.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/engine.js
CHANGED
|
@@ -787,8 +787,7 @@ function detectDependencyCycles(items) {
|
|
|
787
787
|
// writeInboxAlert — now in engine/dispatch.js
|
|
788
788
|
|
|
789
789
|
// Reconciles work items against known PRs.
|
|
790
|
-
// Primary linkage comes from prdItems in pull-requests.json
|
|
791
|
-
// uses engine/pr-links.json so matching does not depend on branch/title parsing.
|
|
790
|
+
// Primary linkage comes from prdItems in pull-requests.json (via getPrLinks()).
|
|
792
791
|
// onlyIds: if provided, only items whose ID is in this Set are eligible.
|
|
793
792
|
function reconcileItemsWithPrs(items, allPrs, { onlyIds } = {}) {
|
|
794
793
|
const prLinks = shared.getPrLinks();
|
package/minions.js
CHANGED
|
@@ -480,7 +480,7 @@ function nukeMinions() {
|
|
|
480
480
|
console.log('\n Cleaning runtime state...');
|
|
481
481
|
const runtimeDirs = ['projects', 'plans', 'prd', 'knowledge', 'skills', 'notes', 'identity'];
|
|
482
482
|
const runtimeFiles = ['config.json', 'work-items.json', 'notes.md', 'routing.md'];
|
|
483
|
-
const engineRuntimeFiles = ['control.json', 'dispatch.json', 'log.json', 'metrics.json', 'cooldowns.json', '
|
|
483
|
+
const engineRuntimeFiles = ['control.json', 'dispatch.json', 'log.json', 'metrics.json', 'cooldowns.json', 'kb-checkpoint.json', 'cc-session.json', 'doc-sessions.json'];
|
|
484
484
|
|
|
485
485
|
for (const dir of runtimeDirs) {
|
|
486
486
|
const p = path.join(MINIONS_HOME, dir);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.167",
|
|
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"
|