Skip to content

Commit 790a6ae

Browse files
committed
Add claude sub deprecation notice to cli / web
1 parent c826050 commit 790a6ae

File tree

3 files changed

+21
-9
lines changed

3 files changed

+21
-9
lines changed

cli/src/components/claude-connect-banner.tsx

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,12 @@ export const ClaudeConnectBanner = () => {
7171
<BottomBanner borderColorKey="success" onClose={handleClose}>
7272
<box style={{ flexDirection: 'column', gap: 0, flexGrow: 1 }}>
7373
<text style={{ fg: theme.success }}>✓ Connected to Claude</text>
74+
<text style={{ fg: theme.warning, marginTop: 1 }}>
75+
Deprecated — Claude subscription support will be removed March 1st, based on user reports of bans.
76+
</text>
77+
<text style={{ fg: theme.muted, marginTop: 1 }}>
78+
Use /subscribe to switch to Codebuff Strong for usage across all models.
79+
</text>
7480
<box style={{ flexDirection: 'row', gap: 2, marginTop: 1 }}>
7581
<text style={{ fg: theme.muted }}>Since {connectedDate}</text>
7682
<text style={{ fg: theme.muted }}>·</text>
@@ -112,9 +118,11 @@ export const ClaudeConnectBanner = () => {
112118
Sign in with your Claude account in the browser, then paste the code
113119
here.
114120
</text>
121+
<text style={{ fg: theme.warning, marginTop: 1 }}>
122+
Deprecated — Claude subscription support will be removed March 1st, based on user reports of bans.
123+
</text>
115124
<text style={{ fg: theme.muted, marginTop: 1 }}>
116-
Note: Using your Claude Pro/Max subscription in Codebuff is not
117-
officially supported by Anthropic.
125+
Use /subscribe to switch to Codebuff Strong for usage across all models.
118126
</text>
119127
</box>
120128
</BottomBanner>
@@ -125,7 +133,7 @@ export const ClaudeConnectBanner = () => {
125133
return (
126134
<BottomBanner borderColorKey="info" onClose={handleClose}>
127135
<box style={{ flexDirection: 'column', gap: 0, flexGrow: 1 }}>
128-
<text style={{ fg: theme.info }}>Connect to Claude</text>
136+
<text style={{ fg: theme.info }}>Connect to Claude (Deprecated)</text>
129137
<box style={{ flexDirection: 'row', gap: 2, marginTop: 1 }}>
130138
<text style={{ fg: theme.muted }}>Use your Pro/Max subscription</text>
131139
<text style={{ fg: theme.muted }}>·</text>
@@ -140,8 +148,10 @@ export const ClaudeConnectBanner = () => {
140148
</Button>
141149
</box>
142150
<text style={{ fg: theme.warning, marginTop: 1 }}>
143-
Using your Claude Pro/Max subscription in Codebuff is not officially
144-
supported by Anthropic.
151+
Deprecated — Claude subscription support will be removed March 1st, based on user reports of bans.
152+
</text>
153+
<text style={{ fg: theme.muted, marginTop: 1 }}>
154+
Use /subscribe to switch to Codebuff Strong for usage across all models.
145155
</text>
146156
</box>
147157
</BottomBanner>

cli/src/data/slash-commands.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ export const SLASH_COMMANDS: SlashCommand[] = [
3838
},
3939
{
4040
id: 'connect:claude',
41-
label: 'connect:claude',
42-
description: 'Connect your Claude Pro/Max subscription',
41+
label: 'connect:claude (deprecated)',
42+
description: 'Claude subscription will be removed March 1st',
4343
aliases: ['claude'],
4444
},
4545
{

web/src/content/help/faq.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ Multiple. The orchestrator ("Buffy") uses Claude Opus 4.5 in Default and Max mod
1717

1818
## Can I use my Claude Pro or Max subscription with Codebuff?
1919

20-
Yes! If you have a Claude Pro or Max subscription, you can connect it to Codebuff with the command `/connect:claude`. Codebuff will use your subscription for Claude model requests, saving you credits.
20+
UPDATE: Connecting to your Claude subscription is deprecated in Codebuff and will be removed on March 1st.
2121

22-
Note: Using your Claude Pro/Max subscription in Codebuff is not officially supported by Anthropic.
22+
We had reports of at least one user having their Anthropic account disabled after heavy usage via Codebuff.
23+
24+
We recommend switching to a [Codebuff Strong subscription](/subscription) as an alternative — it includes generous usage limits across all models without needing to connect external subscriptions.
2325

2426
## Is Codebuff open source?
2527

0 commit comments

Comments
 (0)