We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8687098 commit 8a34416Copy full SHA for 8a34416
cli/src/index.tsx
@@ -86,6 +86,12 @@ type ParsedArgs = {
86
function parseArgs(): ParsedArgs {
87
const program = new Command()
88
89
+ // Send all commander output (including errors) to stdout so it shows up in the TUI buffer
90
+ program.configureOutput({
91
+ writeOut: (str: string) => process.stdout.write(str),
92
+ writeErr: (str: string) => process.stdout.write(str),
93
+ })
94
+
95
program
96
.name('codebuff')
97
.description('Codebuff CLI - AI-powered coding assistant')
0 commit comments