multi-agents-cli 1.0.11 → 1.0.13

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 +2 -0
  2. package/package.json +1 -1
package/init.js CHANGED
@@ -812,6 +812,8 @@ const main = async () => {
812
812
  copyDir(path.join(TEMPLATES, 'shared'), path.join(ROOT, 'shared'));
813
813
  if (backendType === 'separate') {
814
814
  copyDir(path.join(TEMPLATES, 'backend'), path.join(ROOT, 'backend'));
815
+ // Ensure backend/ is tracked by git even before the API agent scaffolds
816
+ fs.writeFileSync(path.join(ROOT, 'backend', '.gitkeep'), '', 'utf8');
815
817
  }
816
818
  fs.copyFileSync(path.join(TEMPLATES, 'CLAUDE.md'), path.join(ROOT, 'CLAUDE.md'));
817
819
  fs.copyFileSync(path.join(TEMPLATES, 'CONTRACTS.md'), path.join(ROOT, 'CONTRACTS.md'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multi-agents-cli",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
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",