@navels/neal 0.6.7 → 0.6.8
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/docs/maintenance.md +3 -3
- package/package.json +12 -12
package/docs/maintenance.md
CHANGED
|
@@ -10,7 +10,7 @@ Grouped so at most a handful of dependency PRs are ever open at once:
|
|
|
10
10
|
| Bucket | Contents | Cadence | Update posture |
|
|
11
11
|
| --- | --- | --- | --- |
|
|
12
12
|
| **Weekly non-major** | everything except the native SDKs (minor/patch/pin/digest) | weekly, one grouped PR | auto-merge after CI and the live smoke pass, subject to a 3-day soak |
|
|
13
|
-
| **Native SDKs** | `@openai/codex-sdk` and `@anthropic-ai/claude-agent-sdk`, both exact-pinned. `ai`, `@ai-sdk/openai-compatible`, and `zod` also stay exact-pinned. | one grouped PR, opened after the 3-day soak instead of waiting for the weekly schedule | qualify on a subscription-authenticated machine with `scripts/qualify-sdk.sh`. Never auto-merge.
|
|
13
|
+
| **Native SDKs** | `@openai/codex-sdk` and `@anthropic-ai/claude-agent-sdk`, both exact-pinned. `ai`, `@ai-sdk/openai-compatible`, and `zod` also stay exact-pinned. | one grouped PR, opened after the 3-day soak instead of waiting for the weekly schedule | qualify on a subscription-authenticated machine with `scripts/qualify-sdk.sh`. Never auto-merge. The CI smoke skips itself on these PRs because it does not exercise the native adapters. |
|
|
14
14
|
| **Library majors** | every npm major except the native SDKs (`typescript`, `@types/node`, `ai`, `@ai-sdk/openai-compatible`, `zod`, etc.) | monthly, one grouped PR | review manually because some need code changes |
|
|
15
15
|
| **GitHub Actions majors** | `actions/checkout`, `actions/setup-node`, `actions/upload-artifact`, etc. | monthly, one grouped PR separate from library majors | review and merge on green CI. Do not auto-merge because a major action bump can still change behavior. |
|
|
16
16
|
|
|
@@ -19,7 +19,7 @@ tool-calling, structured output, or sandbox behavior. That breaks neal's loop
|
|
|
19
19
|
**without** breaking compilation. And CI can't behaviorally exercise the
|
|
20
20
|
native adapters: their auth is subscription-based and lives only on a
|
|
21
21
|
maintainer's machine. Everything else is behaviorally exercised in CI: the
|
|
22
|
-
live smoke runs on
|
|
22
|
+
live smoke runs on package.json/lockfile PRs that change something it exercises, so the weekly grouped PR
|
|
23
23
|
is gated on it as a whole.
|
|
24
24
|
|
|
25
25
|
## The update flow
|
|
@@ -31,7 +31,7 @@ is gated on it as a whole.
|
|
|
31
31
|
2. **Verify (automatic).** CI (`.github/workflows/ci.yml`) runs typecheck + lint
|
|
32
32
|
+ unit tests + package verification on Node 24.18.0, which catches
|
|
33
33
|
**API-shape / contract** breaks. The live smoke
|
|
34
|
-
(`.github/workflows/smoke.yml`) runs on
|
|
34
|
+
(`.github/workflows/smoke.yml`) runs on package.json / lockfile PRs that change something it exercises (a version bump or a native-SDK pin bump skips it): a
|
|
35
35
|
real `neal compat` run against a cheap OpenRouter model through
|
|
36
36
|
`openai-compatible`, catching **behavioral** breaks in the AI-SDK tier. The
|
|
37
37
|
weekly non-major PR auto-merges when both are green.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@navels/neal",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.8",
|
|
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.
|
|
11
|
+
"packageManager": "pnpm@11.26.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.
|
|
44
|
-
"pnpm": ">=11.
|
|
43
|
+
"node": ">=24.21.0",
|
|
44
|
+
"pnpm": ">=11.26.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,21 +55,21 @@
|
|
|
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.
|
|
59
|
-
"@anthropic-ai/claude-agent-sdk": "0.3.
|
|
60
|
-
"@openai/codex-sdk": "0.
|
|
61
|
-
"ai": "7.0.
|
|
58
|
+
"@ai-sdk/openai-compatible": "3.0.47",
|
|
59
|
+
"@anthropic-ai/claude-agent-sdk": "0.3.269",
|
|
60
|
+
"@openai/codex-sdk": "0.154.0",
|
|
61
|
+
"ai": "7.0.97",
|
|
62
62
|
"dotenv": "^17.4.2",
|
|
63
63
|
"yaml": "^2.9.0",
|
|
64
|
-
"zod": "4.
|
|
64
|
+
"zod": "4.6.2"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@eslint/js": "^10.0.1",
|
|
68
|
-
"@types/node": "^24.13.
|
|
69
|
-
"eslint": "^10.
|
|
68
|
+
"@types/node": "^24.13.4",
|
|
69
|
+
"eslint": "^10.10.0",
|
|
70
70
|
"tsx": "^4.23.13",
|
|
71
71
|
"typescript": "^6.0.3",
|
|
72
72
|
"typescript-7": "npm:typescript@^7.0.2",
|
|
73
|
-
"typescript-eslint": "^8.
|
|
73
|
+
"typescript-eslint": "^8.70.0"
|
|
74
74
|
}
|
|
75
75
|
}
|