agex 0.1.1 → 0.1.2

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.
@@ -395,14 +395,14 @@ async function runReview(request) {
395
395
  model: request.model,
396
396
  prompt: planPrompt,
397
397
  cwd: request.cwd,
398
- streamOutput: false
398
+ streamOutput: true
399
399
  });
400
400
  const execution = await runAgent({
401
401
  agent: request.agent,
402
402
  model: request.model,
403
403
  prompt: plan.json.stdout,
404
404
  cwd: request.cwd,
405
- streamOutput: false
405
+ streamOutput: true
406
406
  });
407
407
  const outputJson = {
408
408
  baseRef: request.baseRef,
package/dist/cli.js CHANGED
@@ -3,7 +3,7 @@ import {
3
3
  proov,
4
4
  runAgent,
5
5
  runReview
6
- } from "./chunk-2HGT4G2N.js";
6
+ } from "./chunk-H3CMLOXO.js";
7
7
  import "./chunk-2ZRS4JND.js";
8
8
 
9
9
  // src/commands/proov.ts
@@ -316,12 +316,7 @@ function parseArgs3(args) {
316
316
  }
317
317
  async function runReview2(args) {
318
318
  const request = parseArgs3(args);
319
- const result = await runReview(request);
320
- process.stdout.write(`${result.text}
321
-
322
- ---AGEX_JSON---
323
- ${JSON.stringify(result.json, null, 2)}
324
- `);
319
+ await runReview(request);
325
320
  }
326
321
 
327
322
  // src/cli.ts
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@ import {
2
2
  proov,
3
3
  runAgent,
4
4
  runReview
5
- } from "./chunk-2HGT4G2N.js";
5
+ } from "./chunk-H3CMLOXO.js";
6
6
  import "./chunk-2ZRS4JND.js";
7
7
  export {
8
8
  proov,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agex",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -19,9 +19,9 @@
19
19
  "tsup": "^8.4.0",
20
20
  "typescript": "^5.9.3",
21
21
  "vitest": "^2.1.9",
22
+ "agex-review": "0.1.0",
22
23
  "agex-browse": "0.1.0",
23
24
  "agex-proov": "0.1.0",
24
- "agex-review": "0.1.0",
25
25
  "agex-run": "0.1.0"
26
26
  },
27
27
  "scripts": {