@siteboon/claude-code-ui 1.9.1 → 1.10.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 +0 -16
- package/dist/api-docs.html +857 -0
- package/dist/assets/index-BHQThXog.css +32 -0
- package/dist/assets/index-CDjRDwT5.js +902 -0
- package/dist/assets/{vendor-codemirror-D2k1L1JZ.js → vendor-codemirror-B7BYDWj-.js} +17 -17
- package/dist/index.html +3 -3
- package/package.json +8 -4
- package/server/claude-sdk.js +5 -0
- package/server/cursor-cli.js +5 -0
- package/server/database/db.js +180 -3
- package/server/database/init.sql +34 -1
- package/server/index.js +21 -12
- package/server/projects.js +8 -4
- package/server/routes/agent.js +1161 -0
- package/server/routes/git.js +264 -54
- package/server/routes/settings.js +178 -0
- package/dist/assets/index-Be0ToEQx.js +0 -793
- package/dist/assets/index-Bmo7Hu70.css +0 -32
package/README.md
CHANGED
|
@@ -278,22 +278,6 @@ We welcome contributions! Please follow these guidelines:
|
|
|
278
278
|
|
|
279
279
|
### Common Issues & Solutions
|
|
280
280
|
|
|
281
|
-
#### Server starts but redirects to port 5173 (Vite)
|
|
282
|
-
**Problem**: Running `npx @siteboon/claude-code-ui` says it's running on port 3001, but redirects to 5173
|
|
283
|
-
**Solutions**:
|
|
284
|
-
- This was fixed in v1.9.1+. Update to the latest version:
|
|
285
|
-
```bash
|
|
286
|
-
npx @siteboon/claude-code-ui@latest
|
|
287
|
-
```
|
|
288
|
-
- Or clear NPX cache and reinstall:
|
|
289
|
-
```bash
|
|
290
|
-
npx clear-npx-cache
|
|
291
|
-
npx @siteboon/claude-code-ui
|
|
292
|
-
```
|
|
293
|
-
- If using global install, update it:
|
|
294
|
-
```bash
|
|
295
|
-
npm update -g @siteboon/claude-code-ui
|
|
296
|
-
```
|
|
297
281
|
|
|
298
282
|
#### "No Claude projects found"
|
|
299
283
|
**Problem**: The UI shows no projects or empty project list
|