testdriverai 7.9.20-test → 7.9.22-test
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/lib/init-project.js +0 -10
- package/package.json +1 -1
package/lib/init-project.js
CHANGED
|
@@ -447,16 +447,6 @@ jobs:
|
|
|
447
447
|
if (copiedCount > 0) {
|
|
448
448
|
progress(`✓ Copied ${copiedCount} agent(s) to .github/agents/`);
|
|
449
449
|
}
|
|
450
|
-
|
|
451
|
-
// Also set testdriver.md as copilot-instructions.md if it doesn't already exist
|
|
452
|
-
const copilotInstructionsPath = path.join(targetDir, ".github", "copilot-instructions.md");
|
|
453
|
-
const testdriverAgentSource = path.join(agentsSourceDir, "testdriver.md");
|
|
454
|
-
if (!fs.existsSync(copilotInstructionsPath) && fs.existsSync(testdriverAgentSource)) {
|
|
455
|
-
fs.copyFileSync(testdriverAgentSource, copilotInstructionsPath);
|
|
456
|
-
progress("✓ Created .github/copilot-instructions.md");
|
|
457
|
-
} else if (fs.existsSync(copilotInstructionsPath)) {
|
|
458
|
-
progress("⊘ copilot-instructions.md already exists, skipping");
|
|
459
|
-
}
|
|
460
450
|
} else {
|
|
461
451
|
progress("⚠ Agents directory not found (will be available after npm install)");
|
|
462
452
|
}
|