@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 +6 -6
- package/dist/executables/fix/profile.json +1 -1
- package/dist/executables/plan/profile.json +1 -1
- package/dist/executables/research/profile.json +1 -1
- package/dist/executables/review/profile.json +1 -1
- package/dist/executables/ui-review/profile.json +1 -1
- package/package.json +1 -1
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.
|
|
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(
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
encoding: "utf8"
|
|
2072
|
-
|
|
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) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kody-ade/kody-engine",
|
|
3
|
-
"version": "0.3.
|
|
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",
|