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.
@@ -13,7 +13,8 @@ export declare class CodexModel extends SubprocessModel {
13
13
  /**
14
14
  * Build Codex CLI command.
15
15
  *
16
- * Uses --full-auto --sandbox read-only for non-interactive read-only operation.
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;;;;;;OAMG;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"}
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"}
@@ -18,12 +18,13 @@ export class CodexModel extends SubprocessModel {
18
18
  /**
19
19
  * Build Codex CLI command.
20
20
  *
21
- * Uses --full-auto --sandbox read-only for non-interactive read-only operation.
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', '--sandbox', 'read-only', '--skip-git-repo-check', '-'];
27
+ const cmd = [...this.command, 'exec', '--full-auto', '--skip-git-repo-check', '-'];
27
28
  return {
28
29
  cmd,
29
30
  env: {},
@@ -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;;;;;;OAMG;IACH,aAAa,CAAC,WAAmB;QAI/B,MAAM,GAAG,GAAG,CAAC,GAAG,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,aAAa,EAAE,WAAW,EAAE,WAAW,EAAE,uBAAuB,EAAE,GAAG,CAAC,CAAC;QAC7G,OAAO;YACL,GAAG;YACH,GAAG,EAAE,EAAE;SACR,CAAC;IACJ,CAAC;CACF"}
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triage-ai",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "Multi-model code triage — run Claude, Gemini and Codex in parallel to analyze your codebase and merge their findings",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",