@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.
- package/README.md +12 -0
- package/dist/web/assets/index-B4G1ceoy.js +333 -0
- package/dist/web/index.html +1 -1
- package/package.json +1 -1
- package/spec.md +20 -14
- package/dist/web/assets/index-CfXKVwHJ.js +0 -333
package/dist/web/index.html
CHANGED
|
@@ -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-
|
|
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
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
|
|
150
|
-
| ----------- |
|
|
151
|
-
| `project` | Selected project path
|
|
152
|
-
| `session` | Selected session ID
|
|
153
|
-
| `
|
|
154
|
-
| `
|
|
155
|
-
| `
|
|
156
|
-
| `
|
|
157
|
-
| `
|
|
158
|
-
| `
|
|
159
|
-
| `
|
|
160
|
-
| `
|
|
161
|
-
| `
|
|
162
|
-
| `
|
|
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
|
|