agents-cli-automation 1.0.3 → 1.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agents-cli-automation",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Agents CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -33,7 +33,7 @@ export default async function initCommand() {
33
33
  await fs.ensureDir(agentsDir);
34
34
 
35
35
  // Save file with .agent extension
36
- const destFile = path.join(agentsDir, "playwrightsetup.agent");
36
+ const destFile = path.join(agentsDir, "playwrightsetup-agent.md");
37
37
 
38
38
  // Copy template content
39
39
  await fs.copyFile(templatePath, destFile);