vcode-cli 2.0.0 → 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 CHANGED
@@ -1,8 +1,8 @@
1
1
  import chalk from 'chalk';
2
2
 
3
- export type ByteMood = 'idle' | 'thinking' | 'working' | 'success' | 'error' | 'waiting' | 'celebrating';
3
+ const BYTE_MOODS = ['idle', 'thinking', 'working', 'success', 'error', 'waiting', 'celebrating'];
4
4
 
5
- const ASCII_ARTS: Record<ByteMood, string> = {
5
+ const ASCII_ARTS = {
6
6
  idle: `
7
7
  /\\_____/\\
8
8
  / o o \\
@@ -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: { approveAll?: boolean } = {}) {
7
+ export async function start(opts = {}) {
8
8
  showLogoOnce();
9
9
 
10
10
  const user = await getUser();
package/lib/logo.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import chalk from 'chalk';
2
- import { Byte, type ByteMood } from './byte/index.js';
2
+ import { Byte } from './byte/index.js';
3
3
 
4
4
  const V_CODE_LOGO = `
5
5
  ██████╗ ██████╗ ███████╗███╗ ███╗███████╗███╗ ██╗
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcode-cli",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "type": "module",
5
5
  "description": "V Code — Terminal AI Coding Agent powered by Vynthen. Autonomous file editing, terminal commands, and smart context management.",
6
6
  "main": "bin/vcode.js",