@ai-qa/workflow 2.0.13 → 2.0.14
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/install.js +1 -1
- package/opencode.json +41 -0
- package/package.json +2 -1
- package/qa-dashboard/.env +0 -3
package/install.js
CHANGED
|
@@ -41,7 +41,7 @@ const QA_ITEMS = [
|
|
|
41
41
|
{ src: '.geminirules', dest: '.geminirules' },
|
|
42
42
|
{ src: '.github/copilot-instructions.md', dest: '.github/copilot-instructions.md' },
|
|
43
43
|
{ src: 'router.md', dest: 'router.md' },
|
|
44
|
-
|
|
44
|
+
{ src: 'opencode.json', dest: 'opencode.json' },
|
|
45
45
|
|
|
46
46
|
];
|
|
47
47
|
|
package/opencode.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/config.json",
|
|
3
|
+
"mcp": {
|
|
4
|
+
"playwright": {
|
|
5
|
+
"type": "local",
|
|
6
|
+
"command": ["npx", "-y", "@playwright/mcp"],
|
|
7
|
+
"enabled": true,
|
|
8
|
+
"description": "Browser automation - navigate, click, type, screenshot. Required for test generation. Install: npm install -D @playwright/mcp"
|
|
9
|
+
},
|
|
10
|
+
"github": {
|
|
11
|
+
"type": "local",
|
|
12
|
+
"command": ["npx", "-y", "@modelcontextprotocol/server-github"],
|
|
13
|
+
"enabled": true,
|
|
14
|
+
"description": "GitHub integration - PRs, issues, commits. Requires GITHUB_TOKEN env var. Install: npm install -D @modelcontextprotocol/server-github"
|
|
15
|
+
},
|
|
16
|
+
"applitools-mcp": {
|
|
17
|
+
"type": "local",
|
|
18
|
+
"command": ["npx", "-y", "@applitools/mcp@latest"],
|
|
19
|
+
"enabled": true,
|
|
20
|
+
"description": "Visual testing - requires APPLITOOLS_API_KEY env var",
|
|
21
|
+
"env": {
|
|
22
|
+
"APPLITOOLS_API_KEY": "${APPLITOOLS_API_KEY}"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"agent": {
|
|
27
|
+
"qa-planner": {
|
|
28
|
+
"description": "Reads user story, explores website via Playwright MCP, creates test plan in specs/",
|
|
29
|
+
"mode": "subagent"
|
|
30
|
+
},
|
|
31
|
+
"qa-generator": {
|
|
32
|
+
"description": "Opens browser via MCP, captures real selectors, writes Playwright .spec.ts files from test plans",
|
|
33
|
+
"mode": "subagent"
|
|
34
|
+
},
|
|
35
|
+
"qa-healer": {
|
|
36
|
+
"description": "Debugs failing Playwright tests, fixes selectors/timing, classifies defects (2 attempts max)",
|
|
37
|
+
"mode": "subagent"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"default_agent": "general"
|
|
41
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-qa/workflow",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.14",
|
|
4
4
|
"description": "AI QA Workflow Template — transforms any AI agent into an autonomous QA engineer. AI explores, plans, generates tests, and heals. Scripts execute and report.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"qa",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
".cursorrules",
|
|
30
30
|
".geminirules",
|
|
31
31
|
".opencode/",
|
|
32
|
+
"opencode.json",
|
|
32
33
|
".qa-workflow.json",
|
|
33
34
|
"router.md",
|
|
34
35
|
".github/"
|
package/qa-dashboard/.env
DELETED