codesesh 0.1.5 → 0.3.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 +18 -4
- package/dist/{chunk-FG2FZIU5.js → chunk-UQI7CTEK.js} +617 -190
- package/dist/chunk-UQI7CTEK.js.map +1 -0
- package/dist/{dist-ZF35YB7B.js → dist-ONDV5GVR.js} +12 -4
- package/dist/index.js +630 -45
- package/dist/index.js.map +1 -1
- package/dist/web/assets/index-jHkWNiQR.css +2 -0
- package/dist/web/assets/index-qhuN0bxX.js +67 -0
- package/dist/web/index.html +2 -2
- package/package.json +9 -2
- package/dist/chunk-FG2FZIU5.js.map +0 -1
- package/dist/web/assets/index-Bz2gXVMS.js +0 -67
- package/dist/web/assets/index-vSqmWltx.css +0 -2
- /package/dist/{dist-ZF35YB7B.js.map → dist-ONDV5GVR.js.map} +0 -0
package/README.md
CHANGED
|
@@ -19,10 +19,14 @@ Your browser will open at `http://localhost:4321` with all your sessions ready t
|
|
|
19
19
|
## Features
|
|
20
20
|
|
|
21
21
|
- **Unified Timeline** — Browse sessions across all your AI agents in a single, searchable interface
|
|
22
|
+
- **Full-Text Search** — Search across session titles and conversation content with highlighted matches
|
|
23
|
+
- **Dashboard & Activity Trends** — See totals, daily activity, agent distribution, and recent sessions
|
|
22
24
|
- **Full Conversation Replay** — Read every message, tool call, and reasoning step exactly as it happened
|
|
23
25
|
- **Cost & Token Visibility** — See exactly how many tokens and dollars each session consumed
|
|
26
|
+
- **SQLite-Backed Cache & Search Index** — Restore session lists quickly and reuse the same local store for search
|
|
24
27
|
- **Zero Configuration** — Just run it. CodeSesh auto-discovers everything on your filesystem
|
|
25
28
|
- **100% Local & Private** — Nothing leaves your machine. No accounts, no cloud sync, no telemetry
|
|
29
|
+
- **Live Refresh** — Local session changes are picked up automatically while the server is running
|
|
26
30
|
|
|
27
31
|
## Supported Agents
|
|
28
32
|
|
|
@@ -43,9 +47,12 @@ npx codesesh
|
|
|
43
47
|
# Choose a custom port
|
|
44
48
|
npx codesesh --port 8080
|
|
45
49
|
|
|
46
|
-
# Only show sessions
|
|
50
|
+
# Only show sessions active in the last 3 days
|
|
47
51
|
npx codesesh --days 3
|
|
48
52
|
|
|
53
|
+
# Jump directly to a session
|
|
54
|
+
npx codesesh --session claudecode://3b0e4ead-eba9-43e7-9fac-b30647e189f8
|
|
55
|
+
|
|
49
56
|
# Filter to sessions from current project
|
|
50
57
|
npx codesesh --cwd .
|
|
51
58
|
|
|
@@ -54,6 +61,9 @@ npx codesesh --agent claudecode
|
|
|
54
61
|
|
|
55
62
|
# Output JSON instead of starting server
|
|
56
63
|
npx codesesh --json
|
|
64
|
+
|
|
65
|
+
# Show performance trace logs
|
|
66
|
+
npx codesesh --trace
|
|
57
67
|
```
|
|
58
68
|
|
|
59
69
|
## CLI Options
|
|
@@ -61,13 +71,17 @@ npx codesesh --json
|
|
|
61
71
|
| Flag | Alias | Default | Description |
|
|
62
72
|
| ----------- | ----- | ------- | ----------------------------------------------------------- |
|
|
63
73
|
| `--port` | `-p` | `4321` | HTTP server port |
|
|
64
|
-
| `--days` | `-d` | `7` | Only include sessions
|
|
74
|
+
| `--days` | `-d` | `7` | Only include sessions active in the last N days (`0` = all time) |
|
|
65
75
|
| `--cwd` | — | — | Filter to sessions from a project directory |
|
|
66
76
|
| `--agent` | `-a` | all | Filter to specific agent(s), comma-separated |
|
|
67
|
-
| `--from` | — | — | Sessions
|
|
68
|
-
| `--to` | — | — | Sessions
|
|
77
|
+
| `--from` | — | — | Sessions active after this date `YYYY-MM-DD` |
|
|
78
|
+
| `--to` | — | — | Sessions active before this date `YYYY-MM-DD` |
|
|
79
|
+
| `--session` | `-s` | — | Directly open a session (`agent://session-id`) |
|
|
69
80
|
| `--json` | `-j` | `false` | Output JSON and exit (no server) |
|
|
70
81
|
| `--no-open` | — | `false` | Don't auto-open the browser |
|
|
82
|
+
| `--trace` | — | `false` | Print performance trace logs |
|
|
83
|
+
| `--cache` | — | `true` | Use cached scan results when available |
|
|
84
|
+
| `--clear-cache` | — | `false` | Clear scan cache before starting |
|
|
71
85
|
|
|
72
86
|
## Requirements
|
|
73
87
|
|