xibecode 0.5.3 → 0.5.4
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 +1 -1
- package/package.json +2 -2
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.5.
|
|
13
|
+
## What's New in v0.5.4
|
|
14
14
|
|
|
15
15
|
- **Context Chips** - Terminal context (full buffer or selections) is now added as "chips" to the chat instead of raw text, keeping the interface clean while giving the AI full context.
|
|
16
16
|
- **Interactive Plan Mode** - Plan mode now asks clarifying questions, searches the web, and generates detailed `implementations.md` with checkboxes. Click "Build" to auto-execute the plan.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xibecode",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
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",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"docs:generate": "typedoc --options typedoc.json",
|
|
26
26
|
"docs:watch": "typedoc --options typedoc.json --watch",
|
|
27
27
|
"docs:serve": "npx http-server ./docs/api-generated -p 8080 -o",
|
|
28
|
-
"postinstall": "npx playwright install chromium"
|
|
28
|
+
"postinstall": "npx playwright install chromium || echo \"Playwright install failed, skipping optional step...\""
|
|
29
29
|
},
|
|
30
30
|
"keywords": [
|
|
31
31
|
"cli",
|