@yemi33/minions 0.1.791 → 0.1.792

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,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.791 (2026-04-10)
3
+ ## 0.1.792 (2026-04-10)
4
4
 
5
5
  ### Features
6
6
  - add open-source community sources to agentic research pipeline
@@ -8,6 +8,7 @@
8
8
  - cap review→fix cycles at evalMaxIterations (default 3)
9
9
 
10
10
  ### Fixes
11
+ - warn on invalid pipeline JSON instead of silently dropping + add test
11
12
  - repair invalid JSON in daily-arch-improvement pipeline
12
13
  - flush queued CC messages as single combined request
13
14
  - human feedback fixes are never capped (only minion review→fix loop is)
@@ -20,7 +20,17 @@ function getPipelines() {
20
20
  if (!fs.existsSync(PIPELINES_DIR)) return [];
21
21
  return safeReadDir(PIPELINES_DIR)
22
22
  .filter(f => f.endsWith('.json'))
23
- .map(f => safeJson(path.join(PIPELINES_DIR, f)))
23
+ .map(f => {
24
+ const filePath = path.join(PIPELINES_DIR, f);
25
+ try {
26
+ const parsed = JSON.parse(fs.readFileSync(filePath, 'utf8'));
27
+ if (!parsed) log('warn', `getPipelines: ${f} parsed to null — skipping`);
28
+ return parsed;
29
+ } catch (e) {
30
+ log('warn', `getPipelines: ${f} is invalid JSON — skipping (${e.message})`);
31
+ return null;
32
+ }
33
+ })
24
34
  .filter(Boolean);
25
35
  }
26
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.791",
3
+ "version": "0.1.792",
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"