@yemi33/minions 0.1.910 → 0.1.911
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 +5 -1
- package/engine/shared.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.911 (2026-04-13)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
|
+
- audit and harden log buffering implementation (#971)
|
|
6
7
|
- replace magic string 'active' with PR_STATUS.ACTIVE in lifecycle.js (#969)
|
|
7
8
|
- fix dashboard plan-pause nested lock violation (#968)
|
|
8
9
|
- add missing branch_name to central dispatch vars (#967)
|
|
@@ -21,6 +22,9 @@
|
|
|
21
22
|
- make KB sweep endpoint async with status polling (#933)
|
|
22
23
|
- prohibit agents from self-merging their own PRs
|
|
23
24
|
|
|
25
|
+
### Other
|
|
26
|
+
- [E2E] Architecture meeting Tier 1+2: 6 correctness bugs + 2 nested lock violations + log buffering (#972)
|
|
27
|
+
|
|
24
28
|
## 0.1.901 (2026-04-12)
|
|
25
29
|
|
|
26
30
|
### Fixes
|
package/engine/shared.js
CHANGED
|
@@ -8,7 +8,7 @@ const path = require('path');
|
|
|
8
8
|
|
|
9
9
|
const MINIONS_DIR = process.env.MINIONS_TEST_DIR || path.resolve(__dirname, '..');
|
|
10
10
|
const PR_LINKS_PATH = path.join(MINIONS_DIR, 'engine', 'pr-links.json');
|
|
11
|
-
const LOG_PATH = path.join(
|
|
11
|
+
const LOG_PATH = path.join(MINIONS_DIR, 'engine', 'log.json');
|
|
12
12
|
|
|
13
13
|
// ── Timestamps & Logging ────────────────────────────────────────────────────
|
|
14
14
|
// Extracted from engine.js so engine/* modules can import directly without
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.911",
|
|
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"
|