@teddysc/claude-run 0.7.0 → 0.8.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 +12 -0
- package/dist/web/assets/index-BIpp2t3t.js +318 -0
- package/dist/web/index.html +1 -1
- package/package.json +1 -1
- package/dist/web/assets/index-C7A43d4K.js +0 -318
package/README.md
CHANGED
|
@@ -21,10 +21,22 @@ 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.8.0
|
|
36
|
+
- Add URL state synchronization - share links to specific searches, sessions, or projects
|
|
37
|
+
- Browser back/forward navigation now works with app state
|
|
38
|
+
- Full-text search options (case sensitivity, regex mode, word match) now persist in URL
|
|
39
|
+
|
|
28
40
|
### 0.7.0
|
|
29
41
|
- Add `--rg-executable` CLI option to override ripgrep location
|
|
30
42
|
- Log the exact `rg` command in both server logs and browser console
|