infinicode 2.8.64 → 2.8.65
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/dist/kernel/agents/backends/registry.js +4 -2
- package/dist/kernel/federation/dashboard-html.d.ts +1 -1
- package/dist/kernel/federation/dashboard-html.js +93 -12
- package/package.json +1 -1
- package/packages/robopark/scheduler/main.py +193 -17
- package/packages/robopark/scheduler/preview_agent.py +67 -25
|
@@ -106,8 +106,10 @@ const CODEX_SPEC = {
|
|
|
106
106
|
bin: 'codex',
|
|
107
107
|
binEnv: 'INFINICODE_CODEX_BIN',
|
|
108
108
|
extraArgsEnv: 'INFINICODE_CODEX_ARGS',
|
|
109
|
-
|
|
110
|
-
|
|
109
|
+
// Mesh agents commonly run from a service home rather than a Git checkout.
|
|
110
|
+
// Codex rejects those directories unless this non-interactive safety check is skipped.
|
|
111
|
+
runArgs: (prompt, task) => ['exec', '--skip-git-repo-check', ...(task.model ? ['--model', task.model] : []), prompt],
|
|
112
|
+
resumeArgs: (sessionId, message) => ['exec', '--skip-git-repo-check', 'resume', sessionId, message],
|
|
111
113
|
parseLine: (line, acc) => {
|
|
112
114
|
const obj = tryJson(line);
|
|
113
115
|
if (obj) {
|