@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.
- package/dist/planner.js +1 -1
- 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 =
|
|
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)})...`);
|