agents-cli-automation 1.0.19 → 1.0.20

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.19",
3
+ "version": "1.0.20",
4
4
  "description": "Agents CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -32,7 +32,8 @@ export default async function initCommand() {
32
32
  "TypeScript (Recommended - Latest & Type Safe)",
33
33
  "JavaScript (ES Modules)",
34
34
  "Java (Maven + JUnit)",
35
- "C# (NUnit + .NET)"
35
+ "C# (NUnit + .NET)",
36
+ "API+DB+UI Full Stack (All-in-One Template)"
36
37
  ]
37
38
  }
38
39
  ]);
@@ -52,6 +53,9 @@ export default async function initCommand() {
52
53
  } else if (language.includes("C#")) {
53
54
  templateFile = "playwright-agent-csharp.md";
54
55
  templateName = "C#";
56
+ }else if (language.includes("API+DB+UI")) {
57
+ templateFile = "playwright-agent-api-db-ui.md";
58
+ templateName = "API+DB+UI Full Stack";
55
59
  }
56
60
 
57
61
  const templatePath = path.resolve(__dirname, `../templates/${templateFile}`);