multi-agents-cli 1.1.18 → 1.1.20

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.
@@ -1610,9 +1610,9 @@ Mark each step complete. Only proceed to the task below when all are checked.
1610
1610
  // ── Generate IDE settings ─────────────────────────────────────────────────────
1611
1611
 
1612
1612
  const excludedFolders = {
1613
- 'client': ['backend/', 'worktrees/', '.scaffold/', '.workflow/'],
1614
- 'backend': ['client/', 'worktrees/', '.scaffold/', '.workflow/'],
1615
- 'shared': ['client/', 'backend/', 'worktrees/', '.scaffold/', '.workflow/'],
1613
+ 'client': ['backend/', 'shared/', 'worktrees/', '.scaffold/', '.workflow/', 'CLAUDE.md', 'BUILD_STATE.md', 'CLOUD_STATE.md', 'CONTRACTS.md', 'TASKS_HISTORY.md', 'package-lock.json'],
1614
+ 'backend': ['client/', 'shared/', 'worktrees/', '.scaffold/', '.workflow/', 'CLAUDE.md', 'BUILD_STATE.md', 'CLOUD_STATE.md', 'CONTRACTS.md', 'TASKS_HISTORY.md', 'package-lock.json'],
1615
+ 'shared': ['client/', 'backend/', 'worktrees/', '.scaffold/', '.workflow/', 'CLAUDE.md', 'BUILD_STATE.md', 'CLOUD_STATE.md', 'CONTRACTS.md', 'TASKS_HISTORY.md', 'package-lock.json'],
1616
1616
  };
1617
1617
  const foldersToHide = excludedFolders[project] || [];
1618
1618
 
@@ -1621,16 +1621,21 @@ Mark each step complete. Only proceed to the task below when all are checked.
1621
1621
  const vscodeSettings = {
1622
1622
  'files.exclude': {
1623
1623
  ...Object.fromEntries(foldersToHide.map(f => [f, true])),
1624
- '.idea/': true,
1625
- '.zed/': true,
1626
- '.agents/': true,
1627
- '.frameworks/': true,
1628
- '**/node_modules': true,
1624
+ '.idea/': true,
1625
+ '.zed/': true,
1626
+ '.agents/': true,
1627
+ '.frameworks/': true,
1628
+ '**/node_modules': true,
1629
+ '.git': true,
1630
+ '.gitignore': true,
1631
+ '.claude-scope': true,
1632
+ 'scope.json': true,
1633
+ 'package.json': true,
1629
1634
  },
1630
1635
  'search.exclude': {
1631
1636
  '**/node_modules': true,
1632
1637
  },
1633
- 'explorer.excludeGitIgnore': true,
1638
+ 'explorer.excludeGitIgnore': false,
1634
1639
  };
1635
1640
  fs.writeFileSync(
1636
1641
  path.join(vscodeDir, 'settings.json'),
@@ -1643,7 +1648,7 @@ Mark each step complete. Only proceed to the task below when all are checked.
1643
1648
 
1644
1649
  const ideaDir = path.join(worktreePath, '.idea');
1645
1650
  fs.mkdirSync(ideaDir, { recursive: true });
1646
- const allExcluded = [...foldersToHide, '.agents/', '.frameworks/', 'node_modules/'];
1651
+ const allExcluded = [...foldersToHide, '.agents/', '.frameworks/', 'node_modules/', '.git/', '.claude-scope', 'scope.json', 'package.json', '.gitignore'];
1647
1652
  const excludedUrls = allExcluded
1648
1653
  .map(f => ` <excludeFolder url="file://$MODULE_DIR$/${f.replace(/\/$/, '')}" />`)
1649
1654
  .join('\n');
@@ -1676,9 +1681,14 @@ ${excludedUrls}
1676
1681
  'file_scan_exclusions': [
1677
1682
  '**/.git',
1678
1683
  '**/.idea',
1684
+ '**/.zed',
1679
1685
  '**/.agents',
1680
1686
  '**/.frameworks',
1681
1687
  '**/node_modules',
1688
+ '**/.gitignore',
1689
+ '**/.claude-scope',
1690
+ '**/scope.json',
1691
+ '**/package.json',
1682
1692
  ...foldersToHide.map(f => `**/${f.replace(/\/$/, '')}`),
1683
1693
  ],
1684
1694
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multi-agents-cli",
3
- "version": "1.1.18",
3
+ "version": "1.1.20",
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",