@qa-gentic/stlc-agents 1.0.4 → 1.0.5
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/bin/qa-stlc.js +13 -0
- package/package.json +1 -1
package/bin/qa-stlc.js
CHANGED
|
@@ -81,6 +81,19 @@ program
|
|
|
81
81
|
.option("--no-install", "Skip npm install after scaffolding")
|
|
82
82
|
.action(cmdScaffold);
|
|
83
83
|
|
|
84
|
+
// ── Quick-start hint appended to every --help output ─────────────────────────
|
|
85
|
+
program.addHelpText("after", `
|
|
86
|
+
Quick Start (run once in your project root):
|
|
87
|
+
$ qa-stlc init --vscode GitHub Copilot / VS Code
|
|
88
|
+
$ qa-stlc init Claude Code
|
|
89
|
+
|
|
90
|
+
Then scaffold a new QA project:
|
|
91
|
+
$ qa-stlc scaffold --name my-qa-project
|
|
92
|
+
|
|
93
|
+
Start Playwright MCP (keep running in a separate terminal):
|
|
94
|
+
$ npx @playwright/mcp@latest --port 8931
|
|
95
|
+
`);
|
|
96
|
+
|
|
84
97
|
program.parse(process.argv);
|
|
85
98
|
|
|
86
99
|
// Show help if no command given
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qa-gentic/stlc-agents",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "QA STLC Agents — four MCP servers + skills for AI-powered test case, Gherkin, Playwright generation, and Helix-QA file writing against Azure DevOps. Includes Playwright + Cucumber + TypeScript scaffold. Works with Claude Code, GitHub Copilot, Cursor, Windsurf.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"playwright",
|