Skip to content

Commit b696939

Browse files
committed
cli args parser: codebuff instead of codecane
1 parent 628e3d2 commit b696939

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

cli/src/index.tsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ function parseArgs(): ParsedArgs {
129129
const program = new Command()
130130

131131
program
132-
.name('codecane')
133-
.description('Codecane CLI - AI-powered coding assistant')
132+
.name('codebuff')
133+
.description('Codebuff CLI - AI-powered coding assistant')
134134
.version(VERSION, '-v, --version', 'Print the CLI version')
135135
.option(
136136
'--agent <agent-id>',
@@ -164,7 +164,13 @@ function parseArgs(): ParsedArgs {
164164
}
165165

166166
async function bootstrapCli(): Promise<void> {
167-
const { initialPrompt, agent, clearLogs, continue: continueChat, continueId } = parseArgs()
167+
const {
168+
initialPrompt,
169+
agent,
170+
clearLogs,
171+
continue: continueChat,
172+
continueId,
173+
} = parseArgs()
168174

169175
initializeThemeStore()
170176

0 commit comments

Comments
 (0)