@teddysc/claude-run 0.7.0 → 0.9.0
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 +16 -1
- package/dist/web/assets/index-BIpp2t3t.js +318 -0
- package/dist/web/index.html +5 -1
- package/package.json +1 -1
- package/dist/web/assets/index-C7A43d4K.js +0 -318
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Browse your Claude Code conversation history in a beautiful web UI
|
|
|
7
7
|
[](https://www.npmjs.com/package/@teddysc/claude-run)
|
|
8
8
|
[](https://opensource.org/licenses/MIT)
|
|
9
9
|
|
|
10
|
-
<img src=".github/claude-run.gif" alt="Claude Run Demo" width="800" />
|
|
10
|
+
<!-- <img src=".github/claude-run.gif" alt="Claude Run Demo" width="800" /> -->
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
@@ -21,10 +21,25 @@ Run the project simply by executing
|
|
|
21
21
|
bunx @teddysc/claude-run
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
+
Installing or upgrading globally via bun:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
# https://www.npmjs.com/package/@teddysc/claude-run
|
|
28
|
+
bun install -g @teddysc/claude-run@latest
|
|
29
|
+
```
|
|
30
|
+
|
|
24
31
|
The browser will open automatically at http://localhost:12001.
|
|
25
32
|
|
|
26
33
|
## Changelog
|
|
27
34
|
|
|
35
|
+
### 0.9.0
|
|
36
|
+
- Add Claude Code mascot favicon and app icons
|
|
37
|
+
|
|
38
|
+
### 0.8.0
|
|
39
|
+
- Add URL state synchronization - share links to specific searches, sessions, or projects
|
|
40
|
+
- Browser back/forward navigation now works with app state
|
|
41
|
+
- Full-text search options (case sensitivity, regex mode, word match) now persist in URL
|
|
42
|
+
|
|
28
43
|
### 0.7.0
|
|
29
44
|
- Add `--rg-executable` CLI option to override ripgrep location
|
|
30
45
|
- Log the exact `rg` command in both server logs and browser console
|