multi-agents-cli 1.0.38 → 1.0.40
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/init.js +6 -5
- package/package.json +1 -1
package/init.js
CHANGED
|
@@ -1080,6 +1080,7 @@ const main = async () => {
|
|
|
1080
1080
|
|
|
1081
1081
|
fs.copyFileSync(path.join(TEMPLATES, 'CLAUDE.md'), path.join(ROOT, 'CLAUDE.md'));
|
|
1082
1082
|
fs.copyFileSync(path.join(TEMPLATES, 'CONTRACTS.md'), path.join(ROOT, 'CONTRACTS.md'));
|
|
1083
|
+
fs.copyFileSync(path.join(TEMPLATES, 'TASKS_HISTORY.md'), path.join(ROOT, 'TASKS_HISTORY.md'));
|
|
1083
1084
|
console.log(` ${green('✓')} Templates copied`);
|
|
1084
1085
|
|
|
1085
1086
|
// ── Copy workflow scripts ────────────────────────────────────────────────────
|
|
@@ -1133,7 +1134,7 @@ const main = async () => {
|
|
|
1133
1134
|
// Remove template-specific gitignore entries so generated files can be committed
|
|
1134
1135
|
const gitignorePath = path.join(ROOT, '.gitignore');
|
|
1135
1136
|
let gitignoreContent = fs.readFileSync(gitignorePath, 'utf8');
|
|
1136
|
-
['client/', 'backend/', 'shared/', 'CLAUDE.md', 'CONTRACTS.md', 'BUILD_STATE.md'].forEach(entry => {
|
|
1137
|
+
['client/', 'backend/', 'shared/', 'CLAUDE.md', 'CONTRACTS.md', 'BUILD_STATE.md', 'TASKS_HISTORY.md'].forEach(entry => {
|
|
1137
1138
|
gitignoreContent = gitignoreContent.replace(`\n${entry}`, '');
|
|
1138
1139
|
gitignoreContent = gitignoreContent.replace(`${entry}\n`, '');
|
|
1139
1140
|
gitignoreContent = gitignoreContent.replace(entry, '');
|
|
@@ -1366,9 +1367,9 @@ fi
|
|
|
1366
1367
|
console.log(` ${bold('How do you want to build?')}\n`);
|
|
1367
1368
|
|
|
1368
1369
|
console.log(` ${dim('1.')} ${bold('Multi-Agent Driven Orchestration')}`);
|
|
1369
|
-
console.log(
|
|
1370
|
+
console.log(dim(' · Every task should start with ') + cyan('npm run agent'));
|
|
1370
1371
|
console.log(`${dim(' · Each agent runs in its own git worktree — an isolated branch')}`);
|
|
1371
|
-
console.log(
|
|
1372
|
+
console.log(dim(' and folder that merges back into main via ') + cyan('npm run complete'));
|
|
1372
1373
|
console.log(`${dim(' · Faster builds and lower token spend than a single long session')}`);
|
|
1373
1374
|
console.log(`${yellow(' ⚠ If you commit directly to main yourself, you bypass the framework')}`);
|
|
1374
1375
|
console.log(`${yellow(' and break task tracking for any active agent branches')}\n`);
|
|
@@ -1461,9 +1462,9 @@ fi
|
|
|
1461
1462
|
separator();
|
|
1462
1463
|
console.log(`\n ${bold('How do you want to build?')}\n`);
|
|
1463
1464
|
console.log(` ${dim('1.')} ${bold('Multi-Agent Driven Orchestration')}`);
|
|
1464
|
-
console.log(
|
|
1465
|
+
console.log(dim(' · Every task should start with ') + cyan('npm run agent'));
|
|
1465
1466
|
console.log(`${dim(' · Each agent runs in its own git worktree — an isolated branch')}`);
|
|
1466
|
-
console.log(
|
|
1467
|
+
console.log(dim(' and folder that merges back into main via ') + cyan('npm run complete'));
|
|
1467
1468
|
console.log(`${dim(' · Faster builds and lower token spend than a single long session')}`);
|
|
1468
1469
|
console.log(`${yellow(' ⚠ If you commit directly to main yourself, you bypass the framework')}`);
|
|
1469
1470
|
console.log(`${yellow(' and break task tracking for any active agent branches')}\n`);
|
package/package.json
CHANGED