@navels/neal 0.4.1 → 0.4.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/docs/maintenance.md +7 -6
- package/docs/release.md +9 -0
- package/package.json +3 -3
package/docs/maintenance.md
CHANGED
|
@@ -46,12 +46,13 @@ is gated on it as a whole.
|
|
|
46
46
|
It runs the full suite plus a live `neal compat --role all` pass-through on
|
|
47
47
|
every bumped adapter in the PR (in a throwaway worktree, with roles and
|
|
48
48
|
models pinned explicitly so nothing leaks from `~/.neal/config.yml`), posts
|
|
49
|
-
the compat matrices to the PR, and approves on PASS
|
|
50
|
-
|
|
51
|
-
4. **Adopt.**
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
49
|
+
the compat matrices to the PR, and approves on PASS, leaving the PR open
|
|
50
|
+
for the release script.
|
|
51
|
+
4. **Adopt.** Run `scripts/release-sdk-bump.sh <pr-number>`: it merges the PR,
|
|
52
|
+
opens and merges the release-preparation PR (version bump + changelog), and
|
|
53
|
+
runs the Publish workflow through the npm 2FA approval. See
|
|
54
|
+
[docs/release.md](release.md). Urgent bumps (a fix neal needs immediately)
|
|
55
|
+
may skip the Renovate soak with a manual PR. Qualify them the same way.
|
|
55
56
|
|
|
56
57
|
## TypeScript 6 and 7 side by side
|
|
57
58
|
|
package/docs/release.md
CHANGED
|
@@ -45,6 +45,15 @@ patch release for a compatibility fix that preserves documented behavior, a
|
|
|
45
45
|
minor release for behavior changes before `1.0.0`, and a major release after
|
|
46
46
|
`1.0.0` if a documented public contract breaks.
|
|
47
47
|
|
|
48
|
+
For a qualified dependency-bump PR, `scripts/release-sdk-bump.sh <pr-number>`
|
|
49
|
+
runs this entire process as one command: it merges the dependency PR, opens and
|
|
50
|
+
merges the release-preparation pull request with a generated changelog section,
|
|
51
|
+
runs the Publish workflow dry run and, after a confirmation, the real run, and
|
|
52
|
+
prompts for the npm 2FA stage approval. It refuses PRs that touch anything
|
|
53
|
+
beyond `package.json` and `pnpm-lock.yaml`, and refuses native agentic-SDK
|
|
54
|
+
bumps that lack a `scripts/qualify-sdk.sh` PASS review. Every other release
|
|
55
|
+
follows the manual steps below.
|
|
56
|
+
|
|
48
57
|
## Prepare a release
|
|
49
58
|
|
|
50
59
|
Bump `package.json.version` and add a nonempty `## [<version>]` section to
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@navels/neal",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.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": {
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"@ai-sdk/openai-compatible": "3.0.30",
|
|
59
|
-
"@anthropic-ai/claude-agent-sdk": "0.3.
|
|
60
|
-
"@openai/codex-sdk": "0.
|
|
59
|
+
"@anthropic-ai/claude-agent-sdk": "0.3.238",
|
|
60
|
+
"@openai/codex-sdk": "0.149.0",
|
|
61
61
|
"ai": "7.0.65",
|
|
62
62
|
"dotenv": "^17.4.2",
|
|
63
63
|
"yaml": "^2.9.0",
|