juggernaut-bedrock 5.0.2 → 5.0.4

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.
Files changed (2) hide show
  1. package/README.md +14 -1
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -28,6 +28,17 @@ npx juggernaut-bedrock version
28
28
 
29
29
  Works on **macOS**, **Linux**, **Windows**, and **WSL** — `x64` and `arm64`.
30
30
 
31
+ ## Upgrading
32
+
33
+ Older Juggernaut users can install v5 directly:
34
+
35
+ ```bash
36
+ npm install -g juggernaut-bedrock@latest
37
+ juggernaut apply --auth=iam
38
+ ```
39
+
40
+ Using a Bedrock API key from an old Windows v3 install? See the Windows v3 API-key bridge in the [GitHub README](https://github.com/jpvelasco/juggernaut#windows-v3-api-key-installs). You do not need to install v4 first.
41
+
31
42
  ## Quickstart
32
43
 
33
44
  ```bash
@@ -93,6 +104,8 @@ No overwriting the real Claude Code binary. No copying API keys into env vars.
93
104
  | **Opus** | Claude Opus 4.8 | `global.anthropic.claude-opus-4-8` |
94
105
  | **Fast** | Claude Haiku 4.5 | `global.anthropic.claude-haiku-4-5-20251001-v1:0` |
95
106
 
107
+ Juggernaut enables Claude Code's 1M context accounting for Opus and Sonnet by appending `[1m]` to the alias environment variables. Claude Code strips the suffix before provider calls. Use `--no-1m-context` to opt out.
108
+
96
109
  Override any tier: `juggernaut apply --auth=iam --model=global.anthropic.claude-sonnet-4-6`
97
110
 
98
111
  ## Effort levels
@@ -103,7 +116,7 @@ Controls adaptive thinking depth. Valid values: `low | medium | high | xhigh | m
103
116
  juggernaut apply --auth=iam --effort=max
104
117
  ```
105
118
 
106
- Default: `xhigh`. On Opus 4.8/4.7, effort level controls adaptive thinking depth — manual thinking mode is not supported.
119
+ Default: `high`. On Opus 4.8/4.7, effort level controls adaptive thinking depth — manual thinking mode is not supported.
107
120
 
108
121
  ## Permission modes
109
122
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juggernaut-bedrock",
3
- "version": "5.0.2",
3
+ "version": "5.0.4",
4
4
  "description": "Route Claude Code through Amazon Bedrock in one command — IAM, SSO, or API key. Cross-platform CLI for GenAI developers.",
5
5
  "bin": {
6
6
  "juggernaut": "./index.js"
@@ -9,11 +9,11 @@
9
9
  "test": "node --test index.test.js"
10
10
  },
11
11
  "optionalDependencies": {
12
- "juggernaut-bedrock-linux-x64": "5.0.2",
13
- "juggernaut-bedrock-linux-arm64": "5.0.2",
14
- "juggernaut-bedrock-darwin-x64": "5.0.2",
15
- "juggernaut-bedrock-darwin-arm64": "5.0.2",
16
- "juggernaut-bedrock-win32-x64": "5.0.2"
12
+ "juggernaut-bedrock-linux-x64": "5.0.4",
13
+ "juggernaut-bedrock-linux-arm64": "5.0.4",
14
+ "juggernaut-bedrock-darwin-x64": "5.0.4",
15
+ "juggernaut-bedrock-darwin-arm64": "5.0.4",
16
+ "juggernaut-bedrock-win32-x64": "5.0.4"
17
17
  },
18
18
  "os": [
19
19
  "darwin",