harnessly 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.js +3 -3
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -119,7 +119,7 @@ cli.command('', 'Start the coding agent').action(async () => {
|
|
|
119
119
|
console.log(chalk.dim(' /history - Show recent prompts'));
|
|
120
120
|
console.log(chalk.dim(' /tokens - Show token usage'));
|
|
121
121
|
console.log(chalk.dim(' /logs - Show log file path'));
|
|
122
|
-
console.log(chalk.dim(' /exit - Quit
|
|
122
|
+
console.log(chalk.dim(' /exit - Quit Harnessly'));
|
|
123
123
|
console.log('');
|
|
124
124
|
continue;
|
|
125
125
|
}
|
|
@@ -136,7 +136,7 @@ cli.command('', 'Start the coding agent').action(async () => {
|
|
|
136
136
|
for await (const chunk of textStream) {
|
|
137
137
|
if (firstChunk) {
|
|
138
138
|
spinner.stop();
|
|
139
|
-
process.stdout.write(`\n${chalk.green('
|
|
139
|
+
process.stdout.write(`\n${chalk.green('Harnessly:')} `);
|
|
140
140
|
firstChunk = false;
|
|
141
141
|
}
|
|
142
142
|
process.stdout.write(chunk);
|
|
@@ -168,5 +168,5 @@ function formatArgs(args) {
|
|
|
168
168
|
return JSON.stringify(args).slice(0, 60);
|
|
169
169
|
}
|
|
170
170
|
cli.help();
|
|
171
|
-
cli.version('1.0.
|
|
171
|
+
cli.version('1.0.1');
|
|
172
172
|
cli.parse();
|
package/package.json
CHANGED