@qa-gentic/stlc-agents 1.0.8 → 1.0.9
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/README.md +10 -1
- package/bin/postinstall.js +4 -0
- package/bin/qa-stlc.js +39 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,10 +35,19 @@ A sixth server — **Playwright MCP** (`http://localhost:8931/mcp`) — drives a
|
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
37
|
# 1. Install the CLI + npm package globally
|
|
38
|
+
# You will be prompted to choose your integration: ado / jira / both
|
|
39
|
+
# The choice is saved to ~/.qa-stlc/integration and reused by all subsequent commands.
|
|
38
40
|
npm install -g @qa-gentic/stlc-agents
|
|
39
41
|
```
|
|
40
42
|
|
|
41
|
-
|
|
43
|
+
> **Note:** On most systems, the installer will prompt you to select your integration (ADO, Jira, or both) and then automatically run `qa-stlc init` and offer to scaffold a new project. If you do **not** see the prompt (for example, if npm skips postinstall for an already-installed package, or in some non-interactive environments), simply run:
|
|
44
|
+
>
|
|
45
|
+
> ```bash
|
|
46
|
+
> qa-stlc init
|
|
47
|
+
> qa-stlc scaffold
|
|
48
|
+
> ```
|
|
49
|
+
>
|
|
50
|
+
> This will perform the same setup steps as the postinstall script.
|
|
42
51
|
|
|
43
52
|
```bash
|
|
44
53
|
# 2. Bootstrap your project (installs Python agents, copies skills, writes MCP config)
|
package/bin/postinstall.js
CHANGED
|
@@ -92,4 +92,8 @@ ${b("Next steps")} — run these inside your project root:
|
|
|
92
92
|
${C.cyan}npx @playwright/mcp@latest --port 8931${C.reset}
|
|
93
93
|
|
|
94
94
|
${d("Docs: https://github.com/qa-gentic/stlc-agents")}
|
|
95
|
+
|
|
96
|
+
${d(" Tip: npm sometimes suppresses postinstall output for global packages.")}
|
|
97
|
+
${d(" If you missed these instructions, run qa-stlc in your project.")}
|
|
98
|
+
${d(" Or reinstall with: npm install -g --foreground-scripts @qa-gentic/stlc-agents")}
|
|
95
99
|
`);
|
package/bin/qa-stlc.js
CHANGED
|
@@ -101,9 +101,43 @@ Quick Start (run once in your project root):
|
|
|
101
101
|
$ npx @playwright/mcp@latest --port 8931
|
|
102
102
|
`);
|
|
103
103
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
// Show help if no command given
|
|
104
|
+
// Show next-step instructions if invoked with no command.
|
|
105
|
+
// This is the reliable fallback when npm suppresses postinstall output.
|
|
107
106
|
if (!process.argv.slice(2).length) {
|
|
108
|
-
|
|
109
|
-
|
|
107
|
+
const C = {
|
|
108
|
+
reset: "\x1b[0m", bold: "\x1b[1m",
|
|
109
|
+
green: "\x1b[32m", cyan: "\x1b[36m", dim: "\x1b[2m",
|
|
110
|
+
};
|
|
111
|
+
const b = (s) => `${C.bold}${s}${C.reset}`;
|
|
112
|
+
const d = (s) => `${C.dim}${s}${C.reset}`;
|
|
113
|
+
console.log(`
|
|
114
|
+
${b("QA STLC Agents")} v${pkg.version}
|
|
115
|
+
|
|
116
|
+
${b("Next steps")} — run these inside your project root:
|
|
117
|
+
|
|
118
|
+
${b("1.")} Choose your integration and bootstrap:
|
|
119
|
+
|
|
120
|
+
${C.cyan}qa-stlc init --vscode --integration ado${C.reset} ${d("# VS Code / GitHub Copilot — Azure DevOps")}
|
|
121
|
+
${C.cyan}qa-stlc init --vscode --integration jira${C.reset} ${d("# VS Code / GitHub Copilot — Jira Cloud")}
|
|
122
|
+
${C.cyan}qa-stlc init --vscode --integration both${C.reset} ${d("# VS Code / GitHub Copilot — ADO + Jira")}
|
|
123
|
+
${C.cyan}qa-stlc init --integration ado${C.reset} ${d("# Claude Code — Azure DevOps")}
|
|
124
|
+
|
|
125
|
+
${d("Installs skills, writes MCP config, sets your integration.")}
|
|
126
|
+
${d("Run once; re-run any time to change integration.")}
|
|
127
|
+
|
|
128
|
+
${b("2.")} Scaffold a new Playwright + Cucumber + TypeScript QA project:
|
|
129
|
+
|
|
130
|
+
${C.cyan}qa-stlc scaffold --name my-qa-project${C.reset}
|
|
131
|
+
|
|
132
|
+
${b("3.")} Start the Playwright browser server (keep running in a separate terminal):
|
|
133
|
+
|
|
134
|
+
${C.cyan}npx @playwright/mcp@latest --port 8931${C.reset}
|
|
135
|
+
|
|
136
|
+
Run ${b("qa-stlc --help")} for the full command reference.
|
|
137
|
+
|
|
138
|
+
${d("Docs: https://github.com/qa-gentic/stlc-agents")}
|
|
139
|
+
`);
|
|
140
|
+
process.exit(0);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
program.parse(process.argv);
|
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.9",
|
|
4
4
|
"description": "QA STLC Agents — five MCP servers + skills for AI-powered test case, Gherkin, Playwright generation, and Helix-QA file writing against Azure DevOps and Jira Cloud. Full pipeline for both: fetch → test cases → Gherkin → Playwright → Helix-QA. Works with Claude Code, GitHub Copilot, Cursor, Windsurf.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"playwright",
|