@ai-qa/workflow 2.0.15 → 2.0.16
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 +8 -6
- package/package.json +1 -1
package/install.js
CHANGED
|
@@ -45,6 +45,8 @@ const QA_ITEMS = [
|
|
|
45
45
|
{ src: 'opencode.json', dest: 'opencode.json' },
|
|
46
46
|
{ src: 'playwright.config.ts', dest: 'playwright.config.ts' },
|
|
47
47
|
{ src: 'cli.js', dest: 'cli.js' },
|
|
48
|
+
{ src: 'package.json', dest: 'package.json' },
|
|
49
|
+
{ src: 'install.js', dest: 'install.js' },
|
|
48
50
|
|
|
49
51
|
];
|
|
50
52
|
|
|
@@ -257,12 +259,12 @@ async function main() {
|
|
|
257
259
|
// Parse flags and target
|
|
258
260
|
const nonFlagArgs = args.filter(a => !a.startsWith('-'));
|
|
259
261
|
|
|
260
|
-
if (
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
} else if (args.includes('
|
|
264
|
-
|
|
265
|
-
|
|
262
|
+
if (args.includes('update')) {
|
|
263
|
+
targetPath = process.cwd();
|
|
264
|
+
mode = 'update';
|
|
265
|
+
} else if (IS_SELF || args.includes('init')) {
|
|
266
|
+
targetPath = process.cwd();
|
|
267
|
+
mode = 'install';
|
|
266
268
|
} else if (IS_UPDATE) {
|
|
267
269
|
targetPath = path.resolve(nonFlagArgs[0] || process.cwd());
|
|
268
270
|
mode = 'update';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-qa/workflow",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.16",
|
|
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",
|