@teddysc/claude-run 0.14.1 → 0.15.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.
@@ -8,7 +8,7 @@
8
8
  <link rel="icon" href="/icon-192.png" sizes="192x192" />
9
9
  <link rel="icon" href="/icon-512.png" sizes="512x512" />
10
10
  <link rel="apple-touch-icon" href="/icon-192.png" />
11
- <script type="module" crossorigin src="/assets/index-CfXKVwHJ.js"></script>
11
+ <script type="module" crossorigin src="/assets/index-B4G1ceoy.js"></script>
12
12
  <link rel="stylesheet" crossorigin href="/assets/index-CSMaeBYb.css">
13
13
  </head>
14
14
  <body class="bg-zinc-900 text-zinc-100">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teddysc/claude-run",
3
- "version": "0.14.1",
3
+ "version": "0.15.0",
4
4
  "description": "A beautiful web UI for browsing Claude Code conversation history",
5
5
  "type": "module",
6
6
  "bin": {
package/spec.md CHANGED
@@ -146,20 +146,26 @@ Full-text search using ripgrep.
146
146
 
147
147
  All UI state is synchronized with URL query parameters for shareable links:
148
148
 
149
- | Param | Description | Default |
150
- | ----------- | --------------------------- | ---------- |
151
- | `project` | Selected project path | null (all) |
152
- | `session` | Selected session ID | null |
153
- | `q` | Search query | "" |
154
- | `ft` | Full-text search enabled | false |
155
- | `ftMode` | Search mode (literal/regex) | "literal" |
156
- | `cs` | Case sensitive search | false |
157
- | `ww` | Whole word search | false |
158
- | `mm` | Max matches per file | 200 |
159
- | `sidebar` | Sidebar collapsed | false |
160
- | `batch` | Batch selection mode | false |
161
- | `noUnknown` | Hide Unknown model sessions | false |
162
- | `sort` | Sidebar sort mode | "recent" |
149
+ | Param | Description | Default |
150
+ | ----------- | ----------------------------------------- | ---------- |
151
+ | `project` | Selected project path | null (all) |
152
+ | `session` | Selected session ID (UUID) or UUID prefix | null |
153
+ | `s` | Alias for `session` (expanded on load) | null |
154
+ | `q` | Search query | "" |
155
+ | `ft` | Full-text search enabled | false |
156
+ | `ftMode` | Search mode (literal/regex) | "literal" |
157
+ | `cs` | Case sensitive search | false |
158
+ | `ww` | Whole word search | false |
159
+ | `mm` | Max matches per file | 200 |
160
+ | `sidebar` | Sidebar collapsed | false |
161
+ | `batch` | Batch selection mode | false |
162
+ | `noUnknown` | Hide Unknown model sessions | false |
163
+ | `sort` | Sidebar sort mode | "recent" |
164
+
165
+ Notes:
166
+
167
+ - `session` accepts either a full UUID (e.g. `3e47321c-57a6-4d5e-a6ce-b84edd02dddb`) or a UUID prefix (e.g. `3e47321c`). If multiple sessions share the prefix, the newest one (by session timestamp) is selected and the URL is rewritten to the full UUID.
168
+ - `s` is a shorthand alias for `session`. On page load, the app expands it to `session` and removes `s` from the URL.
163
169
 
164
170
  ### State Persistence
165
171