multi-agents-cli 1.1.19 → 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.
- package/core/workflow/agent.js +3 -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/', '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
|
|
package/package.json
CHANGED