@workermill/agent 0.4.5 → 0.4.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.
Files changed (2) hide show
  1. package/dist/planner.js +1 -1
  2. package/package.json +1 -1
package/dist/planner.js CHANGED
@@ -297,7 +297,7 @@ async function cloneTargetRepo(repo, token, scmProvider, taskId) {
297
297
  * Run an analyst agent via Claude CLI with tool access to the cloned repo.
298
298
  * Returns the analyst's report text, or an empty string on failure.
299
299
  */
300
- function runAnalyst(name, claudePath, model, prompt, repoPath, env, timeoutMs = 120_000) {
300
+ function runAnalyst(name, claudePath, model, prompt, repoPath, env, timeoutMs = 900_000) {
301
301
  const label = chalk.blue(`[${name}]`);
302
302
  return new Promise((resolve) => {
303
303
  console.log(`${ts()} ${label} Starting (${chalk.dim(model)})...`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workermill/agent",
3
- "version": "0.4.5",
3
+ "version": "0.4.6",
4
4
  "description": "WorkerMill Remote Agent - Run AI workers locally with your Claude Max subscription",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",