@kody-ade/kody-engine 0.4.584 → 0.4.585

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.
Files changed (2) hide show
  1. package/dist/bin/kody.js +7 -2
  2. package/package.json +1 -1
package/dist/bin/kody.js CHANGED
@@ -15,7 +15,7 @@ var init_package = __esm({
15
15
  "package.json"() {
16
16
  package_default = {
17
17
  name: "@kody-ade/kody-engine",
18
- version: "0.4.584",
18
+ version: "0.4.585",
19
19
  description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative implementation profiles.",
20
20
  license: "MIT",
21
21
  type: "module",
@@ -8632,6 +8632,7 @@ function git(args, cwd) {
8632
8632
  return execFileSync6("git", args, {
8633
8633
  encoding: "utf-8",
8634
8634
  timeout: 12e4,
8635
+ maxBuffer: GIT_MAX_BUFFER_BYTES,
8635
8636
  cwd,
8636
8637
  env: { ...process.env, HUSKY: "0", SKIP_HOOKS: "1" },
8637
8638
  stdio: ["pipe", "pipe", "pipe"]
@@ -8746,6 +8747,7 @@ function isTrustedConfigActivationChange(filePath, deliveryPathAllowlist, cwd) {
8746
8747
  function listChangedFiles(cwd) {
8747
8748
  const raw = execFileSync6("git", ["status", "--porcelain=v1", "-z", "--untracked-files=all"], {
8748
8749
  encoding: "utf-8",
8750
+ maxBuffer: GIT_MAX_BUFFER_BYTES,
8749
8751
  cwd,
8750
8752
  env: { ...process.env, HUSKY: "0", SKIP_HOOKS: "1" },
8751
8753
  stdio: ["pipe", "pipe", "pipe"]
@@ -8758,6 +8760,7 @@ function listAllowlistedIgnoredFiles(deliveryPathAllowlist, cwd) {
8758
8760
  if (deliveryPathAllowlist.length === 0) return [];
8759
8761
  const raw = execFileSync6("git", ["ls-files", "--others", "--ignored", "--exclude-standard", "-z"], {
8760
8762
  encoding: "utf-8",
8763
+ maxBuffer: GIT_MAX_BUFFER_BYTES,
8761
8764
  cwd,
8762
8765
  env: { ...process.env, HUSKY: "0", SKIP_HOOKS: "1" },
8763
8766
  stdio: ["pipe", "pipe", "pipe"]
@@ -8768,6 +8771,7 @@ function listFilesInCommit(ref = "HEAD", cwd) {
8768
8771
  try {
8769
8772
  const raw = execFileSync6("git", ["show", "--name-only", "--pretty=format:", "-z", ref], {
8770
8773
  encoding: "utf-8",
8774
+ maxBuffer: GIT_MAX_BUFFER_BYTES,
8771
8775
  cwd,
8772
8776
  env: { ...process.env, HUSKY: "0", SKIP_HOOKS: "1" },
8773
8777
  stdio: ["pipe", "pipe", "pipe"]
@@ -8843,11 +8847,12 @@ function hasCommitsAhead(branch, defaultBranch, cwd) {
8843
8847
  }
8844
8848
  }
8845
8849
  }
8846
- var FORBIDDEN_PATH_PREFIXES, ALLOWED_PATH_PREFIXES, FORBIDDEN_PATH_EXACT, FORBIDDEN_PATH_SUFFIXES, ACTIVATION_FIELDS, CONVENTIONAL_PREFIXES;
8850
+ var GIT_MAX_BUFFER_BYTES, FORBIDDEN_PATH_PREFIXES, ALLOWED_PATH_PREFIXES, FORBIDDEN_PATH_EXACT, FORBIDDEN_PATH_SUFFIXES, ACTIVATION_FIELDS, CONVENTIONAL_PREFIXES;
8847
8851
  var init_commit = __esm({
8848
8852
  "src/commit.ts"() {
8849
8853
  "use strict";
8850
8854
  init_pushWithRetry();
8855
+ GIT_MAX_BUFFER_BYTES = 64 * 1024 * 1024;
8851
8856
  FORBIDDEN_PATH_PREFIXES = [
8852
8857
  ".kody/",
8853
8858
  // legacy consumer state must never be reintroduced or committed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.584",
3
+ "version": "0.4.585",
4
4
  "description": "kody — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative implementation profiles.",
5
5
  "license": "MIT",
6
6
  "type": "module",