Skip to content

Commit bf41456

Browse files
committed
fix: use ANTHROPIC_AUTH_TOKEN consistently in all output messages, bump v0.9.6
1 parent 4307766 commit bf41456

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 0.9.6 (2026-03-26)
4+
5+
### Bug Fixes
6+
7+
- **Login prompt fix**: Use `ANTHROPIC_AUTH_TOKEN` instead of `ANTHROPIC_API_KEY` to prevent Claude Code from showing login prompt when launched via `brcc start` (thanks @0xCheetah1, #2)
8+
- Consistent env var in all output messages (proxy-only mode, error fallback)
9+
310
## 0.9.5 (2026-03-25)
411

512
### Bug Fixes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@blockrun/cc",
3-
"version": "0.9.5",
3+
"version": "0.9.6",
44
"description": "Run Claude Code with any model — no rate limits, no account locks, no phone verification. Pay per use with USDC.",
55
"type": "module",
66
"bin": {

src/commands/start.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ function launchServer(
144144
);
145145
console.log(
146146
chalk.bold(
147-
` export ANTHROPIC_API_KEY=sk-ant-api03-brcc-proxy-00000000000000000000000000000000000000000000-00000000000000`
147+
` export ANTHROPIC_AUTH_TOKEN=x402-proxy-handles-auth`
148148
)
149149
);
150150
console.log(`\nThen run ${chalk.bold('claude')} in another terminal.`);
@@ -187,7 +187,7 @@ function launchServer(
187187
);
188188
console.log(
189189
chalk.bold(
190-
` export ANTHROPIC_API_KEY=sk-ant-api03-brcc-proxy-00000000000000000000000000000000000000000000-00000000000000`
190+
` export ANTHROPIC_AUTH_TOKEN=x402-proxy-handles-auth`
191191
)
192192
);
193193
console.log(`\nThen run ${chalk.bold('claude')} in another terminal.`);
@@ -206,7 +206,7 @@ function launchServer(
206206
);
207207
console.log(
208208
chalk.bold(
209-
` export ANTHROPIC_API_KEY=sk-ant-api03-brcc-proxy-00000000000000000000000000000000000000000000-00000000000000`
209+
` export ANTHROPIC_AUTH_TOKEN=x402-proxy-handles-auth`
210210
)
211211
);
212212
console.log(`\nThen run ${chalk.bold('claude')} in another terminal.`);

0 commit comments

Comments
 (0)