Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/easy-pianos-joke.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-windows-cmd-shim-spawn.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.32.1

### Patch Changes

- [#295](https://github.com/AgentsKit-io/code-review/pull/295) [`57d62f7`](https://github.com/AgentsKit-io/code-review/commit/57d62f78f6c1687b87f680b846f50c64d02ae81f) Thanks [@rembradtech](https://github.com/rembradtech)! - Fix local CLI providers (`claude-cli`, `codex-cli`, ...) failing to spawn on Windows. npm's global install of any Node CLI produces a `.cmd` shim there, and Windows' `CreateProcess` cannot execute one without a shell, so the previous plain `child_process.spawn` failed with `ENOENT`/`EINVAL` for every local provider regardless of the configured path — reproduced live via `doctor --provider claude-cli`, which reported `executable: not found` even though the CLI ran fine directly in the same shell. Switched to `cross-spawn`, which detects this case and re-execs through `cmd.exe` with the same argument escaping Node's own `shell: true` uses.

## 0.32.0

### Minor Changes
Expand Down
6 changes: 6 additions & 0 deletions llms-full.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1390,6 +1390,12 @@ Canonical source: https://raw.githubusercontent.com/AgentsKit-io/code-review/mai

# Changelog

## 0.32.1

### Patch Changes

- [#295](https://github.com/AgentsKit-io/code-review/pull/295) [`57d62f7`](https://github.com/AgentsKit-io/code-review/commit/57d62f78f6c1687b87f680b846f50c64d02ae81f) Thanks [@rembradtech](https://github.com/rembradtech)! - Fix local CLI providers (`claude-cli`, `codex-cli`, ...) failing to spawn on Windows. npm's global install of any Node CLI produces a `.cmd` shim there, and Windows' `CreateProcess` cannot execute one without a shell, so the previous plain `child_process.spawn` failed with `ENOENT`/`EINVAL` for every local provider regardless of the configured path — reproduced live via `doctor --provider claude-cli`, which reported `executable: not found` even though the CLI ran fine directly in the same shell. Switched to `cross-spawn`, which detects this case and re-execs through `cmd.exe` with the same argument escaping Node's own `shell: true` uses.

## 0.32.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agentskit/code-review",
"version": "0.32.0",
"version": "0.32.1",
"type": "module",
"description": "Provider-agnostic, low-noise AI code review for local development and GitHub Actions.",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion readme-standard-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
"docs/OPERATIONS.md",
"test/cli-smoke.test.mjs"
],
"sourceHash": "sha256:127a850799e25fa7b4286ec14edcc5d8e86547c9515e26454f545dc60d89cdfb"
"sourceHash": "sha256:be9281c91b349016a6e8800d0b237219d6bd01db7377a00a1c2767596cc42a00"
},
"exceptions": []
}
Expand Down
Loading