fifony 0.1.19 → 0.1.20-next.675ea21

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.
@@ -6,7 +6,7 @@ import {
6
6
  renderPrompt,
7
7
  renderPromptString,
8
8
  resolveTaskCapabilities
9
- } from "../chunk-JUSVR3DW.js";
9
+ } from "../chunk-737QCF4B.js";
10
10
 
11
11
  // src/agent/run-local.ts
12
12
  import { mkdirSync as mkdirSync6 } from "fs";
@@ -734,11 +734,7 @@ function buildClaudeCommand(options) {
734
734
  return parts.join(" ");
735
735
  }
736
736
  function buildCodexCommand(options) {
737
- const parts = ["codex"];
738
- if (options.reasoningEffort) {
739
- parts.push(`--reasoning-effort ${options.reasoningEffort}`);
740
- }
741
- parts.push("exec", "--skip-git-repo-check");
737
+ const parts = ["codex", "exec", "--skip-git-repo-check"];
742
738
  if (options.model && options.model !== "codex") {
743
739
  parts.push(`--model ${options.model}`);
744
740
  }