@ai-qa/workflow 2.0.10 → 2.0.11
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 +3 -3
- package/package.json +1 -2
package/install.js
CHANGED
|
@@ -22,7 +22,7 @@ const USER_DIRS = new Set([
|
|
|
22
22
|
'specs',
|
|
23
23
|
'tests',
|
|
24
24
|
'test-results',
|
|
25
|
-
|
|
25
|
+
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
@@ -33,7 +33,6 @@ const USER_DIRS = new Set([
|
|
|
33
33
|
const QA_ITEMS = [
|
|
34
34
|
{ src: 'ai-qa-workflow.js', dest: 'ai-qa-workflow.js' },
|
|
35
35
|
{ src: 'scripts', dest: 'scripts', dir: true },
|
|
36
|
-
{ src: 'opencode.json', dest: 'opencode.json' },
|
|
37
36
|
{ src: '.qa-workflow.json', dest: '.qa-workflow.json' },
|
|
38
37
|
{ src: 'prompts', dest: 'prompts', dir: true },
|
|
39
38
|
{ src: '.github/agents', dest: '.github/agents', dir: true },
|
|
@@ -43,10 +42,11 @@ const QA_ITEMS = [
|
|
|
43
42
|
{ src: '.cursorrules', dest: '.cursorrules' },
|
|
44
43
|
{ src: '.geminirules', dest: '.geminirules' },
|
|
45
44
|
{ src: '.github/copilot-instructions.md', dest: '.github/copilot-instructions.md' },
|
|
46
|
-
{ src: 'router.md', dest: '
|
|
45
|
+
{ src: 'router.md', dest: 'router.md' },
|
|
47
46
|
{ src: 'user-story', dest: 'user-story', dir: true },
|
|
48
47
|
{ src: 'specs', dest: 'specs', dir: true },
|
|
49
48
|
{ src: 'tests', dest: 'tests', dir: true },
|
|
49
|
+
{ src: '.opencode.json', dest: '.opencode.json' },
|
|
50
50
|
|
|
51
51
|
];
|
|
52
52
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-qa/workflow",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.11",
|
|
4
4
|
"description": "One-command AI QA Pipeline — User Story to Test Report. Auto-detects project config, generates Playwright tests, self-heals failures, dashboard UI.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"qa",
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
"dashboard"
|
|
13
13
|
],
|
|
14
14
|
"files": [
|
|
15
|
-
"agents/",
|
|
16
15
|
".github/agents/",
|
|
17
16
|
"prompts/",
|
|
18
17
|
"scripts/",
|