@mndrk/agx 1.4.49 → 1.4.51

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.
@@ -39,7 +39,7 @@ function createCloudIterationHelpers(env) {
39
39
  logger?.log('system', `[swarm] iteration start\n`);
40
40
 
41
41
  const results = await pMap(providers, (provider, index) => {
42
- const args = [provider, '--cloud-task', taskId];
42
+ const args = [provider, '-y', '--cloud-task', taskId];
43
43
  const modelForProvider = swarmModels.length
44
44
  ? swarmModels[index]?.model || null
45
45
  : null;
@@ -99,7 +99,7 @@ function createCloudIterationHelpers(env) {
99
99
  async function runSingleAgentIteration({ taskId, task, provider, model, prompt, logger, onStdout, onStderr, artifacts, cancellationWatcher, env, cwd }) {
100
100
  logExecutionFlow('runSingleAgentIteration', 'input', `taskId=${taskId}, provider=${provider}, model=${model}, prompt=${Boolean(prompt) ? 'present' : 'none'}`);
101
101
  logExecutionFlow('runSingleAgentIteration', 'processing', 'preparing runAgxCommand');
102
- const args = [provider, '--cloud-task', taskId];
102
+ const args = [provider, '-y', '--cloud-task', taskId];
103
103
  if (model) {
104
104
  args.push('--model', model);
105
105
  }
package/lib/executor.js CHANGED
@@ -31,7 +31,7 @@ const PROJECT_CONTEXT = [
31
31
  const ENGINES = {
32
32
  claude: {
33
33
  cmd: 'claude',
34
- args: ['-p'],
34
+ args: ['--dangerously-skip-permissions', '-p'],
35
35
  available: () => commandExists('claude'),
36
36
  },
37
37
  gemini: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mndrk/agx",
3
- "version": "1.4.49",
3
+ "version": "1.4.51",
4
4
  "description": "Autonomous AI Agent Orchestrator for Claude, Gemini, and Ollama",
5
5
  "main": "lib/index.js",
6
6
  "exports": {