@yemi33/minions 0.1.26 → 0.1.27

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,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.27 (2026-03-28)
4
+
5
+ ### Engine
6
+ - engine.js
7
+
3
8
  ## 0.1.26 (2026-03-28)
4
9
 
5
10
  ### Engine
package/engine.js CHANGED
@@ -52,11 +52,10 @@ function validateConfig(config) {
52
52
  console.error('FATAL: No agents defined in config.json');
53
53
  errors++;
54
54
  }
55
- // Projects
55
+ // Projects (optional — engine works with central work items even without projects)
56
56
  const projects = getProjects(config);
57
57
  if (projects.length === 0) {
58
- console.error('FATAL: No projects configured');
59
- errors++;
58
+ console.log(' No projects linked — add one with: minions add <dir>');
60
59
  }
61
60
  for (const p of projects) {
62
61
  if (!p.localPath || !fs.existsSync(path.resolve(p.localPath))) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.26",
3
+ "version": "0.1.27",
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"