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.
- package/FIFONY.md +4 -4
- package/README.md +10 -10
- package/app/dist/assets/{KeyboardShortcutsHelp-Z75R2hRw.js → KeyboardShortcutsHelp-DY-LvE5e.js} +1 -1
- package/app/dist/assets/OnboardingWizard-CUJljANw.js +1 -0
- package/app/dist/assets/{analytics.lazy-CXA9LrMl.js → analytics.lazy-B6YosS6d.js} +1 -1
- package/app/dist/assets/index-8bqCCQE2.js +42 -0
- package/app/dist/index.html +3 -3
- package/app/dist/manifest.webmanifest +3 -3
- package/app/dist/offline.html +2 -2
- package/app/dist/service-worker.js +1 -1
- package/app/public/manifest.webmanifest +3 -3
- package/app/public/offline.html +2 -2
- package/dist/agent/run-local.js +2 -6
- package/dist/agent/run-local.js.map +1 -1
- package/dist/{chunk-JUSVR3DW.js → chunk-737QCF4B.js} +6 -6
- package/dist/{chunk-JUSVR3DW.js.map → chunk-737QCF4B.js.map} +1 -1
- package/dist/mcp/server.js +1 -1
- package/package.json +2 -2
- package/app/dist/assets/OnboardingWizard-CYEoKVK-.js +0 -1
- package/app/dist/assets/index-DMURYaTH.js +0 -42
package/dist/agent/run-local.js
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
renderPrompt,
|
|
7
7
|
renderPromptString,
|
|
8
8
|
resolveTaskCapabilities
|
|
9
|
-
} from "../chunk-
|
|
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
|
}
|