@kody-ade/kody-engine 0.3.79 → 0.3.80

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 +3 -3
  2. 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.79",
6
+ version: "0.3.80",
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",
@@ -662,7 +662,7 @@ import * as path5 from "path";
662
662
 
663
663
  // src/chat/inbox.ts
664
664
  import { execFileSync } from "child_process";
665
- var DEFAULT_POLL_MS = 3e4;
665
+ var DEFAULT_POLL_MS = 3e3;
666
666
  async function waitForNextUserMessage(opts) {
667
667
  const pollMs = opts.pollIntervalMs ?? DEFAULT_POLL_MS;
668
668
  const logger = opts.logger ?? {
@@ -724,7 +724,7 @@ function currentBranch(cwd) {
724
724
  // src/chat/modes/interactive.ts
725
725
  var DEFAULT_IDLE_EXIT_MS = 5 * 6e4;
726
726
  var DEFAULT_HARD_CAP_MS = 30 * 6e4;
727
- var DEFAULT_POLL_MS2 = 3e4;
727
+ var DEFAULT_POLL_MS2 = 3e3;
728
728
  async function runInteractiveMode(opts) {
729
729
  const sessionFile = sessionFilePath(opts.cwd, opts.sessionId);
730
730
  const idleExitMs = opts.meta.idleExitMs ?? DEFAULT_IDLE_EXIT_MS;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.3.79",
3
+ "version": "0.3.80",
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",