@workermill/agent 0.4.1 → 0.4.2

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 +4 -6
  2. package/package.json +1 -1
package/dist/planner.js CHANGED
@@ -301,12 +301,10 @@ function runAnalyst(claudePath, model, prompt, repoPath, env, timeoutMs = 120_00
301
301
  return new Promise((resolve) => {
302
302
  const proc = spawn(claudePath, [
303
303
  "--print",
304
- "--model",
305
- model,
306
- "--permission-mode",
307
- "bypassPermissions",
308
- "--output-format",
309
- "stream-json",
304
+ "--verbose",
305
+ "--output-format", "stream-json",
306
+ "--model", model,
307
+ "--permission-mode", "bypassPermissions",
310
308
  ], {
311
309
  cwd: repoPath,
312
310
  env,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workermill/agent",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
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",