claude-task-worker 0.22.0 → 0.23.0

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/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1024,7 +1024,7 @@ import { spawn } from "node:child_process";
1024
1024
  init_table();
1025
1025
 
1026
1026
  // src/task-result.ts
1027
- var TASK_TIMEOUT_MS = 90 * 60 * 1e3;
1027
+ var TASK_TIMEOUT_MS = 120 * 60 * 1e3;
1028
1028
  var STDERR_TAIL_LIMIT = 8 * 1024;
1029
1029
  function buildTaskResult(code, timedOut, stdout, stderrTail) {
1030
1030
  const emptyOutput = stdout.trim() === "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-task-worker",
3
- "version": "0.22.0",
3
+ "version": "0.23.0",
4
4
  "description": "CLI tool that polls GitHub Issues/PRs and delegates work to Claude CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",