@cyanautomation/kaseki-agent 1.36.5 → 1.36.6

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/README.md CHANGED
@@ -438,11 +438,11 @@ Configuration is loaded from (in order of precedence):
438
438
  {
439
439
  "agent": {
440
440
  "model": "openrouter/free",
441
- "timeout_seconds": 1200
441
+ "timeout_seconds": 10800
442
442
  },
443
443
  "validation": {
444
444
  "allowlist": ["src/lib/", "tests/"],
445
- "max_diff_bytes": 200000
445
+ "max_diff_bytes": 400000
446
446
  },
447
447
  "docker": {
448
448
  "auto_pull": true
@@ -463,7 +463,7 @@ KASEKI_API_KEY=sk-your-kaseki-api-key # Bearer token for authenticated APIs
463
463
  # Optional worker/service settings
464
464
  KASEKI_ROOT=/agents # Base directory
465
465
  KASEKI_MODEL=openrouter/free # AI model
466
- KASEKI_AGENT_TIMEOUT_SECONDS=1200 # Timeout
466
+ KASEKI_AGENT_TIMEOUT_SECONDS=10800 # Timeout
467
467
  KASEKI_PRE_AGENT_VALIDATION=1 # Validate baseline before Pi
468
468
  KASEKI_PRE_AGENT_VALIDATION_COMMANDS="npm run check;npm run test;npm run build"
469
469
  KASEKI_VALIDATION_COMMANDS="npm run check;npm run test;npm run build" # Validate final diff after Pi
@@ -1384,7 +1384,7 @@ to opt out of GitHub publishing for a specific API run.
1384
1384
  | Variable | Default | Notes |
1385
1385
  |---|---|---|
1386
1386
  | `KASEKI_MODEL` | openrouter/free | Pi model string |
1387
- | `KASEKI_AGENT_TIMEOUT_SECONDS` | 1200 | Agent timeout (20 min) |
1387
+ | `KASEKI_AGENT_TIMEOUT_SECONDS` | 10800 | Agent timeout (3 hours) |
1388
1388
  | `TASK_PROMPT` | *(code fix task)* | Agent instructions |
1389
1389
  | `KASEKI_TASK_MODE` | patch | `patch` (require diff) or `inspect` (no diff) |
1390
1390
  | `KASEKI_PUBLISH_MODE` | pr | `pr` (normal PR), `draft_pr` (draft PR), `branch` (branch only), `auto` (legacy: PR if credentials found), or `none` (skip); controller API requests with omitted `publishMode` default to `pr`; direct worker/CLI execution defaults to `pr` if unchanged |
@@ -1400,7 +1400,7 @@ to opt out of GitHub publishing for a specific API run.
1400
1400
  | `KASEKI_STARTUP_CHECK_MODE` | `boot` | For `KASEKI_DRY_RUN=1`, `boot` performs a container smoke test through `/bin/bash`; `baseline-validation` runs `/usr/local/bin/kaseki-agent` to clone, install dependencies, run pre-agent validation, and skip Pi. |
1401
1401
  | `KASEKI_BASELINE_VALIDATION_DRY_RUN` | `0` | Internal/API switch set with `baseline-validation` so pre-agent validation runs even though Pi remains disabled. |
1402
1402
  | `KASEKI_CHANGED_FILES_ALLOWLIST` | `src/lib/parser.ts tests/parser.validation.ts` | Space-separated patterns |
1403
- | `KASEKI_MAX_DIFF_BYTES` | 200000 | Max diff size (200 KB) |
1403
+ | `KASEKI_MAX_DIFF_BYTES` | 400000 | Max diff size (400 KB) |
1404
1404
  | `KASEKI_ALLOW_EMPTY_DIFF` | 0 | Set to `1` to allow empty diff with `KASEKI_TASK_MODE=patch` |
1405
1405
  | `KASEKI_AGENT_GUARDRAILS` | 1 | Prepend safety instructions that reserve commit/push/PR actions for Kaseki |
1406
1406
  | `KASEKI_RESTORE_DISALLOWED_CHANGES` | 1 | Restore changes outside `KASEKI_CHANGED_FILES_ALLOWLIST` before validation and GitHub publishing |