multi-agents-cli 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/init.js +5 -0
  2. package/package.json +1 -1
package/init.js CHANGED
@@ -66,6 +66,11 @@ const ROOT = process.cwd();
66
66
  const RUNTIME_DIR = path.join(ROOT, '.scaffold');
67
67
  const LOCK_FILE = path.join(RUNTIME_DIR, '.initialized');
68
68
 
69
+ // Ensure .scaffold/ exists
70
+ if (!fs.existsSync(RUNTIME_DIR)) {
71
+ fs.mkdirSync(RUNTIME_DIR, { recursive: true });
72
+ }
73
+
69
74
  // ── Decision tree ─────────────────────────────────────────────────────────────
70
75
 
71
76
  const CLIENT_FRAMEWORKS = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multi-agents-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Multi-agent workflow orchestration for Claude Code — isolated git worktrees, structured state tracking, autonomous task chaining",
5
5
  "keywords": [
6
6
  "claude-code",