multi-agents-cli 1.0.38 → 1.0.39
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 +2 -1
- 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, '');
|
package/package.json
CHANGED