agents-cli-automation 1.0.20 → 1.0.22

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.20",
3
+ "version": "1.0.22",
4
4
  "description": "Agents CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -33,7 +33,8 @@ export default async function initCommand() {
33
33
  "JavaScript (ES Modules)",
34
34
  "Java (Maven + JUnit)",
35
35
  "C# (NUnit + .NET)",
36
- "API+DB+UI Full Stack (All-in-One Template)"
36
+ "API+DB+UI Full Stack (All-in-One Template)",
37
+ "Playwright CLI Agent (Token Efficient - CoPilot Chat)"
37
38
  ]
38
39
  }
39
40
  ]);
@@ -53,9 +54,12 @@ export default async function initCommand() {
53
54
  } else if (language.includes("C#")) {
54
55
  templateFile = "playwright-agent-csharp.md";
55
56
  templateName = "C#";
56
- }else if (language.includes("API+DB+UI")) {
57
+ } else if (language.includes("API+DB+UI")) {
57
58
  templateFile = "playwright-agent-api-db-ui.md";
58
59
  templateName = "API+DB+UI Full Stack";
60
+ } else if (language.includes("Playwright CLI")) {
61
+ templateFile = "playwright-agent-cli.md";
62
+ templateName = "Playwright CLI Agent";
59
63
  }
60
64
 
61
65
  const templatePath = path.resolve(__dirname, `../templates/${templateFile}`);