testdriverai 7.9.21-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.
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "7.9.21-test",
3
+ "version": "7.9.22-test",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "sdk.js",
6
6
  "types": "sdk.d.ts",