codesesh 0.6.1 → 0.7.1
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 +5 -5
- package/dist/{chunk-SQYHWMQV.js → chunk-7GQEIPVK.js} +1567 -605
- package/dist/chunk-7GQEIPVK.js.map +1 -0
- package/dist/{dist-NT4CH6KD.js → dist-L4XKQDGX.js} +18 -2
- package/dist/index.js +882 -219
- package/dist/index.js.map +1 -1
- package/dist/scan-refresh-worker.js +50 -0
- package/dist/scan-refresh-worker.js.map +1 -0
- package/dist/search-index-worker.js +46 -16
- package/dist/search-index-worker.js.map +1 -1
- package/dist/smart-tag-worker.js +33 -0
- package/dist/smart-tag-worker.js.map +1 -0
- package/dist/web/assets/index-LM0Z2sjk.js +108 -0
- package/dist/web/assets/index-xfiMbcgm.css +2 -0
- package/dist/web/index.html +189 -3
- package/package.json +1 -1
- package/dist/chunk-SQYHWMQV.js.map +0 -1
- package/dist/web/assets/index-D9lwrpQG.css +0 -2
- package/dist/web/assets/index-DZaQy6OQ.js +0 -106
- /package/dist/{dist-NT4CH6KD.js.map → dist-L4XKQDGX.js.map} +0 -0
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ CodeSesh scans your local machine, finds every AI agent session (Claude Code, Cu
|
|
|
14
14
|
npx codesesh
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
Your browser will open at `http://localhost:
|
|
17
|
+
Your browser will open at `http://localhost:4521` with all your sessions ready to browse. If that default port is busy, CodeSesh automatically tries the next available port.
|
|
18
18
|
|
|
19
19
|
## Features
|
|
20
20
|
|
|
@@ -28,7 +28,7 @@ Your browser will open at `http://localhost:4321` with all your sessions ready t
|
|
|
28
28
|
- **Full Conversation Replay** — Read every message, tool call, and reasoning step exactly as it happened
|
|
29
29
|
- **File Activity Index** — Jump to files that were read, edited, created, deleted, or moved, and search sessions by file activity
|
|
30
30
|
- **Keyboard Navigation** — Move through views, focus search, and open shortcuts without leaving the keyboard
|
|
31
|
-
- **
|
|
31
|
+
- **Agent Resume Commands** — Copy worktree-aware resume commands from supported agent session details
|
|
32
32
|
- **Cost & Token Visibility** — See token totals, cache tokens, recorded costs, and model-based cost estimates
|
|
33
33
|
- **SQLite Cache, Migrations & Search Index** — Restore session lists quickly, upgrade local schemas safely, and reuse the same local store for search
|
|
34
34
|
- **Zero Configuration** — Just run it. CodeSesh auto-discovers everything on your filesystem
|
|
@@ -48,10 +48,10 @@ Your browser will open at `http://localhost:4321` with all your sessions ready t
|
|
|
48
48
|
## Usage
|
|
49
49
|
|
|
50
50
|
```bash
|
|
51
|
-
# Start the web UI (default port
|
|
51
|
+
# Start the web UI (default port 4521)
|
|
52
52
|
npx codesesh
|
|
53
53
|
|
|
54
|
-
# Choose a custom port
|
|
54
|
+
# Choose a custom starting port
|
|
55
55
|
npx codesesh --port 8080
|
|
56
56
|
|
|
57
57
|
# Only show sessions active in the last 3 days
|
|
@@ -77,7 +77,7 @@ npx codesesh --trace
|
|
|
77
77
|
|
|
78
78
|
| Flag | Alias | Default | Description |
|
|
79
79
|
| ----------- | ----- | ------- | ----------------------------------------------------------- |
|
|
80
|
-
| `--port` | `-p` | `
|
|
80
|
+
| `--port` | `-p` | `4521` | HTTP server starting port; falls back to the next available port if busy |
|
|
81
81
|
| `--days` | `-d` | `7` | Only include sessions active in the last N days (`0` = all time) |
|
|
82
82
|
| `--cwd` | — | — | Filter to sessions from a project directory |
|
|
83
83
|
| `--agent` | `-a` | all | Filter to specific agent(s), comma-separated |
|