xibecode 0.9.0 → 0.9.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/README.md CHANGED
@@ -10,7 +10,7 @@ AI-powered autonomous coding assistant for your terminal, browser, and desktop.
10
10
 
11
11
  XibeCode is a CLI agent that can read and edit code, run commands, and iterate on tasks from your terminal using LLMs. It includes a **WebUI** for a browser-based experience, a **Desktop App** (Electron) for native IDE-like usage, **AI-powered test generation**, and **multi-model support** for both Anthropic and OpenAI models.
12
12
 
13
- ## What's New in v0.9.0
13
+ ## What's New in v0.9.1
14
14
 
15
15
  ### Reliability and anti-hallucination upgrades
16
16
 
@@ -209,7 +209,7 @@ export async function runPrCommand(prompt, options) {
209
209
  const ui = new EnhancedUI(options.verbose);
210
210
  const config = new ConfigManager();
211
211
  const cwd = process.cwd();
212
- ui.header('0.9.0');
212
+ ui.header('0.9.1');
213
213
  // ── Pre-flight checks ────────────────────────────────────────────────────
214
214
  try {
215
215
  await assertGitRepo(cwd);
@@ -17,7 +17,7 @@ import chalk from 'chalk';
17
17
  export async function runCommand(prompt, options) {
18
18
  const ui = new EnhancedUI(options.verbose);
19
19
  const config = new ConfigManager();
20
- ui.header('0.9.0');
20
+ ui.header('0.9.1');
21
21
  // Get API key
22
22
  const apiKey = options.apiKey || config.getApiKey();
23
23
  if (!apiKey) {
@@ -10,7 +10,7 @@ import { SkillManager } from '../core/skills.js';
10
10
  import { renderAndRun } from '../interactiveHelpers.js';
11
11
  import { AssistantMarkdown } from '../components/AssistantMarkdown.js';
12
12
  import { formatToolArgs, formatToolOutcome } from '../utils/tool-display.js';
13
- const APP_VERSION = '0.9.0';
13
+ const APP_VERSION = '0.9.1';
14
14
  const HERO_LOGO = [
15
15
  '██╗ ██╗██╗██████╗ ███████╗',
16
16
  '╚██╗██╔╝██║██╔══██╗██╔════╝',
@@ -210,7 +210,7 @@ export class WebUIServer {
210
210
  try {
211
211
  // Health check
212
212
  if (pathname === '/api/health') {
213
- sendJSON({ status: 'ok', version: '0.9.0' });
213
+ sendJSON({ status: 'ok', version: '0.9.1' });
214
214
  return;
215
215
  }
216
216
  // Configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xibecode",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "AI-powered autonomous coding assistant with WebUI, AI test generation, multi-model support, and plugin system",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -31,18 +31,18 @@
31
31
  "homepage": "https://github.com/iotserver24/xibecode#readme",
32
32
  "dependencies": {
33
33
  "@anthropic-ai/sdk": "^0.78.0",
34
- "@modelcontextprotocol/sdk": "^1.26.0",
34
+ "@modelcontextprotocol/sdk": "^1.29.0",
35
35
  "agent-browser": "^0.20.0",
36
36
  "chalk": "^4.1.2",
37
37
  "commander": "^12.0.0",
38
38
  "conf": "^15.1.0",
39
39
  "diff": "^5.1.0",
40
40
  "dotenv": "^16.3.1",
41
- "fast-glob": "^3.3.2",
41
+ "fast-glob": "^3.3.3",
42
42
  "ink": "^6.7.0",
43
43
  "ink-select-input": "^6.2.0",
44
44
  "ink-text-input": "^6.0.0",
45
- "inquirer": "^8.2.7",
45
+ "inquirer": "^13.4.1",
46
46
  "marked": "^11.2.0",
47
47
  "marked-terminal": "^7.3.0",
48
48
  "node-fetch": "^3.3.2",
@@ -58,13 +58,14 @@
58
58
  "devDependencies": {
59
59
  "@playwright/test": "^1.41.2",
60
60
  "@types/diff": "^5.0.8",
61
- "@types/inquirer": "^9.0.7",
61
+ "@types/inquirer": "^9.0.9",
62
62
  "@types/node": "^20.10.0",
63
63
  "@types/react": "^19.2.13",
64
64
  "@types/ws": "^8.5.10",
65
65
  "tsx": "^4.7.0",
66
66
  "typescript": "^5.3.3",
67
- "vitest": "^1.0.4"
67
+ "vite": "^5.4.21",
68
+ "vitest": "^1.6.1"
68
69
  },
69
70
  "engines": {
70
71
  "node": ">=18.0.0"
@@ -81,7 +82,7 @@
81
82
  "build:all": "pnpm run build && pnpm run build:webui",
82
83
  "dev": "node scripts/dev.mjs",
83
84
  "start": "node dist/index.js",
84
- "test": "vitest",
85
+ "test": "vitest run",
85
86
  "test:e2e": "playwright test",
86
87
  "test:e2e:ui": "playwright test --ui",
87
88
  "test:e2e:headed": "playwright test --headed",
@@ -91,6 +92,8 @@
91
92
  "docs:generate": "typedoc --options typedoc.json",
92
93
  "docs:watch": "typedoc --options typedoc.json --watch",
93
94
  "docs:serve": "npx http-server ./docs/api-generated -p 8080 -o",
94
- "postinstall": "npx playwright install chromium || echo \"Playwright install failed, skipping optional step...\""
95
+ "playwright:install": "pnpm exec playwright install chromium",
96
+ "playwright:install:all": "pnpm exec playwright install",
97
+ "postinstall": "echo \"Skipping Playwright browser auto-install. Run: pnpm run playwright:install\""
95
98
  }
96
99
  }