vcode-cli 2.0.1 → 2.0.2
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/lib/byte/index.js +2 -2
- package/lib/commands/start.js +1 -1
- package/lib/logo.js +1 -1
- package/package.json +1 -1
package/lib/byte/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import chalk from 'chalk';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const BYTE_MOODS = ['idle', 'thinking', 'working', 'success', 'error', 'waiting', 'celebrating'];
|
|
4
4
|
|
|
5
|
-
const ASCII_ARTS
|
|
5
|
+
const ASCII_ARTS = {
|
|
6
6
|
idle: `
|
|
7
7
|
/\\_____/\\
|
|
8
8
|
/ o o \\
|
package/lib/commands/start.js
CHANGED
|
@@ -4,7 +4,7 @@ import { showByteIdle } from '../ui/byte.js';
|
|
|
4
4
|
import { getUser } from '../auth/index.js';
|
|
5
5
|
import { startAgent } from '../agent/loop.js';
|
|
6
6
|
|
|
7
|
-
export async function start(opts
|
|
7
|
+
export async function start(opts = {}) {
|
|
8
8
|
showLogoOnce();
|
|
9
9
|
|
|
10
10
|
const user = await getUser();
|
package/lib/logo.js
CHANGED
package/package.json
CHANGED