multi-agents-cli 1.0.20 → 1.0.22

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 +6 -5
  2. package/package.json +1 -1
package/init.js CHANGED
@@ -944,12 +944,12 @@ const main = async () => {
944
944
 
945
945
  // ── Copy agents and frameworks to repo root as .agents/ and .frameworks/ ────
946
946
 
947
- copyDir(path.join(TEMPLATES, 'client', 'agents'), path.join(ROOT, '.agents', 'client'));
948
- copyDir(path.join(TEMPLATES, 'client', 'frameworks'), path.join(ROOT, '.frameworks', 'client'));
949
- copyDir(path.join(TEMPLATES, 'shared', 'agents'), path.join(ROOT, '.agents', 'shared'));
947
+ copyDir(path.join(TEMPLATES, '.agents', 'client'), path.join(ROOT, '.agents', 'client'));
948
+ copyDir(path.join(TEMPLATES, '.frameworks', 'client'), path.join(ROOT, '.frameworks', 'client'));
949
+ copyDir(path.join(TEMPLATES, '.agents', 'shared'), path.join(ROOT, '.agents', 'shared'));
950
950
  if (backendType === 'separate') {
951
- copyDir(path.join(TEMPLATES, 'backend', 'agents'), path.join(ROOT, '.agents', 'backend'));
952
- copyDir(path.join(TEMPLATES, 'backend', 'frameworks'), path.join(ROOT, '.frameworks', 'backend'));
951
+ copyDir(path.join(TEMPLATES, '.agents', 'backend'), path.join(ROOT, '.agents', 'backend'));
952
+ copyDir(path.join(TEMPLATES, '.frameworks', 'backend'), path.join(ROOT, '.frameworks', 'backend'));
953
953
  }
954
954
 
955
955
  fs.copyFileSync(path.join(TEMPLATES, 'CLAUDE.md'), path.join(ROOT, 'CLAUDE.md'));
@@ -1002,6 +1002,7 @@ const main = async () => {
1002
1002
  ensureGitignore('.agents-core/');
1003
1003
  ensureGitignore('.scaffold/');
1004
1004
  ensureGitignore('.workflow/');
1005
+ ensureGitignore('node_modules/');
1005
1006
 
1006
1007
  // Remove template-specific gitignore entries so generated files can be committed
1007
1008
  const gitignorePath = path.join(ROOT, '.gitignore');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multi-agents-cli",
3
- "version": "1.0.20",
3
+ "version": "1.0.22",
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",