Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/ultraplan/UltraplanChoiceDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export function UltraplanChoiceDialog({
setMessages(prev => [
...prev,
createSystemMessage(
`Previous session saved · resume with: claude --resume ${previousSessionId}`,
`Previous session saved · resume with: ccb --resume ${previousSessionId}`,
'suggestion',
),
]);
Expand Down
2 changes: 1 addition & 1 deletion src/services/tips/tipRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ const externalTips: Tip[] = [
{
id: 'continue',
content: async () =>
'Run claude --continue or claude --resume to resume a conversation',
'Run ccb --continue or ccb --resume to resume a conversation',
cooldownSessions: 10,
isRelevant: async () => true,
},
Expand Down
4 changes: 2 additions & 2 deletions src/utils/crossProjectResume.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function checkCrossProjectResume(
// Gate worktree detection to ants only for staged rollout
if (process.env.USER_TYPE !== 'ant') {
const sessionId = getSessionIdFromLog(log)
const command = `cd ${quote([log.projectPath])} && claude --resume ${sessionId}`
const command = `cd ${quote([log.projectPath])} && ccb --resume ${sessionId}`
return {
isCrossProject: true,
isSameRepoWorktree: false,
Expand All @@ -65,7 +65,7 @@ export function checkCrossProjectResume(

// Different repo - generate cd command
const sessionId = getSessionIdFromLog(log)
const command = `cd ${quote([log.projectPath])} && claude --resume ${sessionId}`
const command = `cd ${quote([log.projectPath])} && ccb --resume ${sessionId}`
return {
isCrossProject: true,
isSameRepoWorktree: false,
Expand Down
4 changes: 1 addition & 3 deletions src/utils/gracefulShutdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,7 @@ function printResumeHint(): void {

writeSync(
1,
chalk.dim(
`\nResume this session with:\nclaude --resume ${resumeArg}\n`,
),
chalk.dim(`\nResume this session with:\nccb --resume ${resumeArg}\n`),
)
resumeHintPrinted = true
} catch {
Expand Down