@kody-ade/kody-engine 0.3.8 → 0.3.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/dist/bin/kody.js CHANGED
@@ -3,7 +3,7 @@
3
3
  // package.json
4
4
  var package_default = {
5
5
  name: "@kody-ade/kody-engine",
6
- version: "0.3.8",
6
+ version: "0.3.9",
7
7
  description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
8
8
  license: "MIT",
9
9
  type: "module",
@@ -2065,11 +2065,11 @@ var diagMcp = async (_ctx) => {
2065
2065
  process.stderr.write(`[kody diag] chromium present: ${hasChromium ? "yes" : "no"}
2066
2066
  `);
2067
2067
  try {
2068
- const v = execFileSync7("npx", ["-y", "@playwright/mcp@latest", "--version"], {
2069
- stdio: "pipe",
2070
- timeout: 6e4,
2071
- encoding: "utf8"
2072
- }).trim();
2068
+ const v = execFileSync7(
2069
+ "npx",
2070
+ ["-y", "--package=@playwright/mcp@latest", "--", "playwright-mcp", "--version"],
2071
+ { stdio: "pipe", timeout: 6e4, encoding: "utf8" }
2072
+ ).trim();
2073
2073
  process.stderr.write(`[kody diag] @playwright/mcp version: ${v}
2074
2074
  `);
2075
2075
  } catch (e) {
@@ -42,7 +42,7 @@
42
42
  {
43
43
  "name": "playwright",
44
44
  "command": "npx",
45
- "args": ["-y", "@playwright/mcp@latest"]
45
+ "args": ["-y", "--package=@playwright/mcp@latest", "--", "playwright-mcp"]
46
46
  }
47
47
  ]
48
48
  },
@@ -32,7 +32,7 @@
32
32
  {
33
33
  "name": "playwright",
34
34
  "command": "npx",
35
- "args": ["-y", "@playwright/mcp@latest"]
35
+ "args": ["-y", "--package=@playwright/mcp@latest", "--", "playwright-mcp"]
36
36
  }
37
37
  ]
38
38
  },
@@ -32,7 +32,7 @@
32
32
  {
33
33
  "name": "playwright",
34
34
  "command": "npx",
35
- "args": ["-y", "@playwright/mcp@latest"]
35
+ "args": ["-y", "--package=@playwright/mcp@latest", "--", "playwright-mcp"]
36
36
  }
37
37
  ]
38
38
  },
@@ -33,7 +33,7 @@
33
33
  {
34
34
  "name": "playwright",
35
35
  "command": "npx",
36
- "args": ["-y", "@playwright/mcp@latest"]
36
+ "args": ["-y", "--package=@playwright/mcp@latest", "--", "playwright-mcp"]
37
37
  }
38
38
  ]
39
39
  },
@@ -43,7 +43,7 @@
43
43
  {
44
44
  "name": "playwright",
45
45
  "command": "npx",
46
- "args": ["-y", "@playwright/mcp@latest"]
46
+ "args": ["-y", "--package=@playwright/mcp@latest", "--", "playwright-mcp"]
47
47
  }
48
48
  ]
49
49
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
4
4
  "description": "kody — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
5
5
  "license": "MIT",
6
6
  "type": "module",