From 31ce21402984a01b9555fb33665f4d5eadd9450e Mon Sep 17 00:00:00 2001 From: Axiom Bot <0xAxiom@users.noreply.github.com> Date: Thu, 30 Apr 2026 23:21:04 -0700 Subject: [PATCH] fix(cli): update @anthropic-ai/sdk constraint from ^0.32.0 to ^0.92.0 The package.json had ^0.32.0 but the lock file contained 0.92.0. On a fresh npm install, npm would resolve ^0.32.0 to 0.32.1 (the latest patch in that range), installing a version ~60 releases behind what the codebase was developed and tested against. This mismatch would silently break API calls on new installs. Align the constraint with what is actually installed and tested. --- CLI/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CLI/package.json b/CLI/package.json index a069ef4..15ced11 100644 --- a/CLI/package.json +++ b/CLI/package.json @@ -36,7 +36,7 @@ "node": ">=18.0.0" }, "dependencies": { - "@anthropic-ai/sdk": "^0.32.0", + "@anthropic-ai/sdk": "^0.92.0", "ajv": "^8.17.1", "chalk": "^5.3.0", "commander": "^12.1.0",