Skip to content

Commit 07baa85

Browse files
fix(ci): add node so claude-code's native binary installs
Pinning claude-code to 2.1.143 alone did not unbreak the validate job — `claude plugin validate` still failed "claude native binary not installed". claude-code's native binary is downloaded by a node postinstall script, and the agents mise.toml never declared `node`, so the postinstall could not run. ai-mktpl's mise.toml has `node` and its validate passes; jack's mise.toml declares `depends = "node"` on claude-code for the same reason. Add node 24.15.0 + `depends = "node"` on the claude-code tool entry. https://claude.ai/code/session_01AiWbZuSU6UCjuXnrBBFk9p
1 parent 7dd388a commit 07baa85

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

mise.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44
[tools]
55
jq = "1.8.1"
66
bun = "1.3.13"
7-
# Pinned: claude-code 2.1.146 ships a broken native-binary install that fails
8-
# `claude plugin validate` in CI ("claude native binary not installed").
9-
# 2.1.143 is the last known-good release. Do not float to "latest".
10-
"npm:@anthropic-ai/claude-code" = "2.1.143"
7+
node = "24.15.0"
8+
# claude-code's native binary is installed by a node postinstall script:
9+
# `depends = "node"` ensures node installs first, else the binary is missing
10+
# ("claude native binary not installed", which fails `claude plugin validate`).
11+
# Pinned to 2.1.143 — 2.1.146 ships a broken native-binary install regardless.
12+
"npm:@anthropic-ai/claude-code" = { version = "2.1.143", depends = "node" }
1113
"pipx:litellm" = { version = "1.83.14", extras = "proxy" }
1214
tilt = "0.37.3"
1315

0 commit comments

Comments
 (0)