@ai-qa/workflow 2.0.19 → 2.0.20

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.
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ require('../cli.js');
package/cli.js CHANGED
File without changes
package/install.js CHANGED
@@ -50,17 +50,17 @@ const QA_ITEMS = [
50
50
  { src: 'package.json', dest: 'package.json' },
51
51
  { src: 'install.js', dest: 'install.js' },
52
52
  { src: 'tsconfig.json', dest: 'tsconfig.json' },
53
+ { src: 'bin', dest: 'bin', dir: true },
53
54
 
54
55
 
55
56
  ];
56
-
57
57
  // Files to copy even during update (excludes user config files unless --force)
58
58
  const UPDATE_ITEMS = IS_FORCE ? QA_ITEMS : QA_ITEMS.filter(item => {
59
59
  if (item.dir) return !USER_DIRS.has(item.dest);
60
60
  return !USER_FILES.has(item.dest);
61
61
  });
62
62
 
63
- const DIRS_TO_CREATE = ['user-story', 'specs', 'tests', 'test-results', '.qa-context', '.auth', 'templates'];
63
+ const DIRS_TO_CREATE = ['user-story', 'specs', 'tests', 'test-results', '.qa-context', '.auth', 'templates', 'bin'];
64
64
 
65
65
  const BANNER = `
66
66
  ╔══════════════════════════════════════════╗
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-qa/workflow",
3
- "version": "2.0.19",
3
+ "version": "2.0.20",
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",
@@ -36,7 +36,8 @@
36
36
  "tsconfig.json",
37
37
  ".github/",
38
38
  "tsconfig.json",
39
- ".env"
39
+ ".env",
40
+ "bin/"
40
41
  ],
41
42
  "license": "MIT",
42
43
  "author": "AI QA Workflow",
@@ -45,7 +46,7 @@
45
46
  "url": "https://github.com/houcine111/AI-QA-workflow.git"
46
47
  },
47
48
  "bin": {
48
- "ai-qa-workflow": "./cli.js"
49
+ "ai-qa-workflow": "./bin/ai-qa-workflow"
49
50
  },
50
51
  "scripts": {
51
52
  "qa": "node ai-qa-workflow.js",