multi-agents-cli 1.1.34 → 1.1.35
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 +2 -2
- package/package.json +1 -1
package/core/workflow/agent.js
CHANGED
|
@@ -1350,7 +1350,7 @@ Mark each step complete. Only proceed to the task below when all are checked.
|
|
|
1350
1350
|
};
|
|
1351
1351
|
fs.writeFileSync(path.join(beWorktreePath, 'package.json'), JSON.stringify(bePkg, null, 2), 'utf8');
|
|
1352
1352
|
|
|
1353
|
-
const beGitignore = ['# Framework files — never commit these to the agent branch', 'package.json', '.claude-scope', 'scope.json', 'TASK.md', '.vscode/', '.idea/', '.zed/', 'node_modules/'].join('\n') + '\n';
|
|
1353
|
+
const beGitignore = ['# Framework files — never commit these to the agent branch', '/package.json', '.claude-scope', 'scope.json', 'TASK.md', '.vscode/', '.idea/', '.zed/', 'node_modules/'].join('\n') + '\n';
|
|
1354
1354
|
fs.writeFileSync(path.join(beWorktreePath, '.gitignore'), beGitignore, 'utf8');
|
|
1355
1355
|
|
|
1356
1356
|
// IDE settings for backend/INIT worktree
|
|
@@ -1662,7 +1662,7 @@ ${excludedUrls}
|
|
|
1662
1662
|
// ── Write worktree .gitignore — block framework files from agent commits ────
|
|
1663
1663
|
const worktreeGitignore = [
|
|
1664
1664
|
'# Framework files — never commit these to the agent branch',
|
|
1665
|
-
'package.json',
|
|
1665
|
+
'/package.json',
|
|
1666
1666
|
'.claude-scope',
|
|
1667
1667
|
'scope.json',
|
|
1668
1668
|
'TASK.md',
|
package/package.json
CHANGED