triage-ai 1.5.2 → 1.5.3
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/models/codex.d.ts
CHANGED
|
@@ -13,7 +13,8 @@ export declare class CodexModel extends SubprocessModel {
|
|
|
13
13
|
/**
|
|
14
14
|
* Build Codex CLI command.
|
|
15
15
|
*
|
|
16
|
-
* Uses --full-auto
|
|
16
|
+
* Uses --full-auto for non-interactive operation.
|
|
17
|
+
* No sandbox restriction — Codex can explore the filesystem freely.
|
|
17
18
|
* Prompt is read from stdin (base class writes it); `-` tells codex to read
|
|
18
19
|
* the prompt from stdin instead of expecting a positional argument.
|
|
19
20
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"codex.d.ts","sourceRoot":"","sources":["../../src/models/codex.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAE5C,qBAAa,UAAW,SAAQ,eAAe;;IAQ7C
|
|
1
|
+
{"version":3,"file":"codex.d.ts","sourceRoot":"","sources":["../../src/models/codex.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAE5C,qBAAa,UAAW,SAAQ,eAAe;;IAQ7C;;;;;;;OAOG;IACH,aAAa,CAAC,WAAW,EAAE,MAAM,GAAG;QAClC,GAAG,EAAE,MAAM,EAAE,CAAC;QACd,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,CAAC;KACzC;CAOF"}
|
package/dist/models/codex.js
CHANGED
|
@@ -18,12 +18,13 @@ export class CodexModel extends SubprocessModel {
|
|
|
18
18
|
/**
|
|
19
19
|
* Build Codex CLI command.
|
|
20
20
|
*
|
|
21
|
-
* Uses --full-auto
|
|
21
|
+
* Uses --full-auto for non-interactive operation.
|
|
22
|
+
* No sandbox restriction — Codex can explore the filesystem freely.
|
|
22
23
|
* Prompt is read from stdin (base class writes it); `-` tells codex to read
|
|
23
24
|
* the prompt from stdin instead of expecting a positional argument.
|
|
24
25
|
*/
|
|
25
26
|
_buildCommand(_promptFile) {
|
|
26
|
-
const cmd = [...this.command, 'exec', '--full-auto', '--
|
|
27
|
+
const cmd = [...this.command, 'exec', '--full-auto', '--skip-git-repo-check', '-'];
|
|
27
28
|
return {
|
|
28
29
|
cmd,
|
|
29
30
|
env: {},
|
package/dist/models/codex.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"codex.js","sourceRoot":"","sources":["../../src/models/codex.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAE5C,MAAM,OAAO,UAAW,SAAQ,eAAe;IAC7C;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,IAAI,GAAG,OAAO,CAAC;QACpB,IAAI,CAAC,SAAS,GAAG,kBAAkB,CAAC;QACpC,IAAI,CAAC,UAAU,GAAG,CAAC,OAAO,CAAC,CAAC;IAC9B,CAAC;IAED
|
|
1
|
+
{"version":3,"file":"codex.js","sourceRoot":"","sources":["../../src/models/codex.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAE5C,MAAM,OAAO,UAAW,SAAQ,eAAe;IAC7C;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,IAAI,GAAG,OAAO,CAAC;QACpB,IAAI,CAAC,SAAS,GAAG,kBAAkB,CAAC;QACpC,IAAI,CAAC,UAAU,GAAG,CAAC,OAAO,CAAC,CAAC;IAC9B,CAAC;IAED;;;;;;;OAOG;IACH,aAAa,CAAC,WAAmB;QAI/B,MAAM,GAAG,GAAG,CAAC,GAAG,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,aAAa,EAAE,uBAAuB,EAAE,GAAG,CAAC,CAAC;QACnF,OAAO;YACL,GAAG;YACH,GAAG,EAAE,EAAE;SACR,CAAC;IACJ,CAAC;CACF"}
|
package/package.json
CHANGED