@c4t4/heyamigo 0.8.12 → 0.8.13
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/ai/codex.js +14 -6
- package/dist/config.js +10 -4
- package/package.json +1 -1
package/dist/ai/codex.js
CHANGED
|
@@ -11,9 +11,12 @@
|
|
|
11
11
|
// - prompt passed as positional arg
|
|
12
12
|
//
|
|
13
13
|
// Configurable via config.codex:
|
|
14
|
-
// -
|
|
15
|
-
//
|
|
16
|
-
//
|
|
14
|
+
// - model: optional `-m <model>` override. Default = Codex's default.
|
|
15
|
+
// - yolo (default true): emits --dangerously-bypass-approvals-and-sandbox
|
|
16
|
+
// (the documented canonical flag; --yolo is an alias in newer builds).
|
|
17
|
+
// Bundles no-approvals + full sandbox + skip-trust-check. Right
|
|
18
|
+
// default for a headless owner-bot; set false to honor runTask's
|
|
19
|
+
// mode-driven sandbox.
|
|
17
20
|
// - skipGitRepoCheck (default true): adds --skip-git-repo-check when
|
|
18
21
|
// yolo is off. Codex refuses to run in untrusted cwds without it.
|
|
19
22
|
// - extraArgs: appended verbatim. Escape hatch for version drift.
|
|
@@ -65,10 +68,15 @@ function laneTimeoutMs(lane) {
|
|
|
65
68
|
function buildExecArgs(params) {
|
|
66
69
|
const cfg = config.codex;
|
|
67
70
|
const args = ['exec', '--json'];
|
|
71
|
+
if (cfg.model) {
|
|
72
|
+
args.push('-m', cfg.model);
|
|
73
|
+
}
|
|
68
74
|
if (cfg.yolo) {
|
|
69
|
-
//
|
|
70
|
-
//
|
|
71
|
-
|
|
75
|
+
// Canonical "no approvals + full sandbox + no trust check" switch.
|
|
76
|
+
// Some newer Codex builds expose --yolo as an alias for the same
|
|
77
|
+
// behavior; we use the documented name to stay portable. mode is
|
|
78
|
+
// ignored on this path.
|
|
79
|
+
args.push('--dangerously-bypass-approvals-and-sandbox');
|
|
72
80
|
}
|
|
73
81
|
else {
|
|
74
82
|
if (cfg.skipGitRepoCheck)
|
package/dist/config.js
CHANGED
|
@@ -38,15 +38,21 @@ const ConfigSchema = z.object({
|
|
|
38
38
|
}),
|
|
39
39
|
codex: z
|
|
40
40
|
.object({
|
|
41
|
-
//
|
|
42
|
-
//
|
|
43
|
-
|
|
41
|
+
// Optional model override. If unset, Codex uses its default. Passed
|
|
42
|
+
// as `-m <model>` to `codex exec`.
|
|
43
|
+
model: z.string().optional(),
|
|
44
|
+
// Field name kept catchy, but the actual flag emitted is the
|
|
45
|
+
// documented one: --dangerously-bypass-approvals-and-sandbox. Some
|
|
46
|
+
// newer Codex builds also accept --yolo as an alias; we use the
|
|
47
|
+
// canonical name for portability. Right default for a headless
|
|
48
|
+
// owner-bot. Set to false to honor runTask's mode-driven sandbox.
|
|
44
49
|
yolo: z.boolean().default(true),
|
|
45
50
|
// When yolo=false, still bypass the trust-directory prompt. Codex
|
|
46
51
|
// refuses to run in an "untrusted" cwd otherwise.
|
|
47
52
|
skipGitRepoCheck: z.boolean().default(true),
|
|
48
53
|
// Appended verbatim to every `codex exec` invocation. Escape hatch
|
|
49
|
-
// for version-specific flags we haven't first-classed.
|
|
54
|
+
// for version-specific flags we haven't first-classed (e.g. flip
|
|
55
|
+
// back to --yolo if the canonical name ever goes away).
|
|
50
56
|
extraArgs: z.array(z.string()).default([]),
|
|
51
57
|
})
|
|
52
58
|
.default({}),
|