@kody-ade/kody-engine 0.2.18 → 0.2.19
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/kody2.js +6 -3
- package/package.json +1 -1
package/dist/bin/kody2.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.2.
|
|
6
|
+
version: "0.2.19",
|
|
7
7
|
description: "kody2 \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
8
8
|
license: "MIT",
|
|
9
9
|
type: "module",
|
|
@@ -3648,11 +3648,14 @@ function configureGitIdentity(cwd) {
|
|
|
3648
3648
|
} catch {
|
|
3649
3649
|
}
|
|
3650
3650
|
try {
|
|
3651
|
-
execFileSync14("git", ["config", "user.name", "
|
|
3651
|
+
execFileSync14("git", ["config", "user.name", "github-actions[bot]"], { cwd, stdio: "pipe" });
|
|
3652
3652
|
} catch {
|
|
3653
3653
|
}
|
|
3654
3654
|
try {
|
|
3655
|
-
execFileSync14("git", ["config", "user.email", "
|
|
3655
|
+
execFileSync14("git", ["config", "user.email", "41898282+github-actions[bot]@users.noreply.github.com"], {
|
|
3656
|
+
cwd,
|
|
3657
|
+
stdio: "pipe"
|
|
3658
|
+
});
|
|
3656
3659
|
} catch {
|
|
3657
3660
|
}
|
|
3658
3661
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kody-ade/kody-engine",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.19",
|
|
4
4
|
"description": "kody2 — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|