@teddysc/claude-run 0.6.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 CHANGED
@@ -21,10 +21,27 @@ 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
+
40
+ ### 0.7.0
41
+ - Add `--rg-executable` CLI option to override ripgrep location
42
+ - Log the exact `rg` command in both server logs and browser console
43
+ - Ensure full-text search includes gitignored `.jsonl` logs under `~/.claude`
44
+
28
45
  ### 0.6.0
29
46
  - Add full-text search using ripgrep
30
47
  - Search across all conversation content including tool calls
@@ -79,6 +96,7 @@ Options:
79
96
  -p, --port <number> Port to listen on (default: 12001)
80
97
  -H, --host <address> Host address to listen on (default: 127.0.0.1)
81
98
  -d, --dir <path> Claude directory (default: ~/.claude)
99
+ --rg-executable <path> Path to rg (ripgrep) executable (default: /opt/homebrew/bin/rg)
82
100
  --no-open Do not open browser automatically
83
101
  -h, --help Show help
84
102
  ```
package/dist/index.js CHANGED
@@ -719,8 +719,14 @@ program.name("claude-run").description(
719
719
  "-d, --dir <path>",
720
720
  "Claude directory path",
721
721
  join5(homedir2(), ".claude")
722
+ ).option(
723
+ "--rg-executable <path>",
724
+ "Path to rg (ripgrep) executable (default: /opt/homebrew/bin/rg)"
722
725
  ).option("--dev", "Enable CORS for development").option("--no-open", "Do not open browser automatically").parse();
723
726
  var opts = program.opts();
727
+ if (opts.rgExecutable) {
728
+ process.env.CLAUDE_RUN_RG_PATH = opts.rgExecutable;
729
+ }
724
730
  var server = createServer({
725
731
  port: parseInt(opts.port, 10),
726
732
  host: opts.host,