multi-agents-cli 1.1.20 → 1.1.21
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 +4 -3
- package/package.json +1 -1
package/core/workflow/agent.js
CHANGED
|
@@ -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/', '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'],
|
|
1613
|
+
'client': ['backend/', 'shared/', 'client/', 'worktrees/', '.scaffold/', '.workflow/', 'CLAUDE.md', 'BUILD_STATE.md', 'CLOUD_STATE.md', 'CONTRACTS.md', 'TASKS_HISTORY.md', 'package-lock.json'],
|
|
1614
|
+
'backend': ['client/', 'shared/', 'backend/', 'worktrees/', '.scaffold/', '.workflow/', 'CLAUDE.md', 'BUILD_STATE.md', 'CLOUD_STATE.md', 'CONTRACTS.md', 'TASKS_HISTORY.md', 'package-lock.json'],
|
|
1615
|
+
'shared': ['client/', 'backend/', 'shared/', '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
|
|
|
@@ -1631,6 +1631,7 @@ Mark each step complete. Only proceed to the task below when all are checked.
|
|
|
1631
1631
|
'.claude-scope': true,
|
|
1632
1632
|
'scope.json': true,
|
|
1633
1633
|
'package.json': true,
|
|
1634
|
+
'.vscode/': true,
|
|
1634
1635
|
},
|
|
1635
1636
|
'search.exclude': {
|
|
1636
1637
|
'**/node_modules': true,
|
package/package.json
CHANGED