@navels/neal 0.3.2 → 0.3.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.
@@ -299,9 +299,12 @@ export async function runExecuteReviewerAdjudication(args) {
299
299
  : null;
300
300
  const reviewerResult = await (args.runReviewerRound ?? runReviewerRound)({
301
301
  reviewer: args.state.agentConfig.reviewer,
302
- // Resume the reviewer's own session from the previous round of this
303
- // scope's review engagement (null on round 1: scope-boundary resets clear
304
- // it). Sessionless providers are filtered at the round layer.
302
+ // Resume the reviewer's own session. The handle persists across review
303
+ // rounds AND across ordinary top-level scope advances (the next-scope
304
+ // resets in transitions.ts clear coderSessionHandle but deliberately not
305
+ // this); it is null only at run start, on split-plan entry, on
306
+ // derived-plan parent advance, and after reviewer errors. Sessionless
307
+ // providers are filtered at the round layer.
305
308
  resumeHandle: args.state.reviewerSessionHandle,
306
309
  cwd: args.state.cwd,
307
310
  planDoc: context.planDoc,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@navels/neal",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "A source-first multi-agent CLI for planning, executing, reviewing, and resuming scoped code changes.",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "author": "Lee Nave",
10
10
  "type": "module",
11
- "packageManager": "pnpm@11.13.1",
11
+ "packageManager": "pnpm@11.20.0",
12
12
  "homepage": "https://github.com/navels/neal#readme",
13
13
  "repository": {
14
14
  "type": "git",
@@ -40,8 +40,8 @@
40
40
  "examples"
41
41
  ],
42
42
  "engines": {
43
- "node": ">=24.18.0",
44
- "pnpm": ">=11.13.1"
43
+ "node": ">=24.19.0",
44
+ "pnpm": ">=11.20.0"
45
45
  },
46
46
  "scripts": {
47
47
  "build": "rm -rf dist && node node_modules/typescript-7/bin/tsc -p tsconfig.json && chmod +x dist/neal/index.js",
@@ -55,10 +55,10 @@
55
55
  "typecheck": "node node_modules/typescript-7/bin/tsc --noEmit -p tsconfig.json && node node_modules/typescript-7/bin/tsc -p tsconfig.test.json"
56
56
  },
57
57
  "dependencies": {
58
- "@ai-sdk/openai-compatible": "3.0.12",
59
- "@anthropic-ai/claude-agent-sdk": "0.3.220",
60
- "@openai/codex-sdk": "0.146.0",
61
- "ai": "7.0.31",
58
+ "@ai-sdk/openai-compatible": "3.0.27",
59
+ "@anthropic-ai/claude-agent-sdk": "0.3.227",
60
+ "@openai/codex-sdk": "0.147.0",
61
+ "ai": "7.0.58",
62
62
  "dotenv": "^17.4.2",
63
63
  "yaml": "^2.9.0",
64
64
  "zod": "4.4.3"
@@ -66,10 +66,10 @@
66
66
  "devDependencies": {
67
67
  "@eslint/js": "^10.0.1",
68
68
  "@types/node": "^24.13.3",
69
- "eslint": "^10.7.0",
70
- "tsx": "^4.23.1",
69
+ "eslint": "^10.8.1",
70
+ "tsx": "^4.23.11",
71
71
  "typescript": "^6.0.3",
72
72
  "typescript-7": "npm:typescript@^7.0.2",
73
- "typescript-eslint": "^8.64.0"
73
+ "typescript-eslint": "^8.66.0"
74
74
  }
75
75
  }