fifony 0.1.17 → 0.1.18
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const CACHE_VERSION = "
|
|
1
|
+
const CACHE_VERSION = "1773793968420";
|
|
2
2
|
const CORE_CACHE = `fifony-core-${CACHE_VERSION}`;
|
|
3
3
|
const ASSET_CACHE = `fifony-assets-${CACHE_VERSION}`;
|
|
4
4
|
const APP_SHELL_ROUTES = ["/kanban", "/issues", "/agents", "/settings", "/onboarding"];
|
package/dist/agent/run-local.js
CHANGED
|
@@ -734,13 +734,14 @@ function buildClaudeCommand(options) {
|
|
|
734
734
|
return parts.join(" ");
|
|
735
735
|
}
|
|
736
736
|
function buildCodexCommand(options) {
|
|
737
|
-
const parts = ["codex"
|
|
738
|
-
if (options.model && options.model !== "codex") {
|
|
739
|
-
parts.push(`--model ${options.model}`);
|
|
740
|
-
}
|
|
737
|
+
const parts = ["codex"];
|
|
741
738
|
if (options.reasoningEffort) {
|
|
742
739
|
parts.push(`--reasoning-effort ${options.reasoningEffort}`);
|
|
743
740
|
}
|
|
741
|
+
parts.push("exec", "--skip-git-repo-check");
|
|
742
|
+
if (options.model && options.model !== "codex") {
|
|
743
|
+
parts.push(`--model ${options.model}`);
|
|
744
|
+
}
|
|
744
745
|
if (options.addDirs?.length) {
|
|
745
746
|
for (const dir of options.addDirs) {
|
|
746
747
|
parts.push(`--add-dir "${dir}"`);
|