multi-agents-cli 1.1.18 → 1.1.19
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/core/workflow/agent.js +17 -7
- package/package.json +1 -1
package/core/workflow/agent.js
CHANGED
|
@@ -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/':
|
|
1625
|
-
'.zed/':
|
|
1626
|
-
'.agents/':
|
|
1627
|
-
'.frameworks/':
|
|
1628
|
-
'**/node_modules':
|
|
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':
|
|
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