codesesh 0.2.0 → 0.4.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 +11 -6
- package/dist/{chunk-2UNXB2D3.js → chunk-EIIG7J6V.js} +705 -77
- package/dist/chunk-EIIG7J6V.js.map +1 -0
- package/dist/{dist-6EV6SS6N.js → dist-2YXXOCZJ.js} +18 -4
- package/dist/index.js +131 -20
- package/dist/index.js.map +1 -1
- package/dist/web/assets/index-DJuE5oTj.js +68 -0
- package/dist/web/assets/index-gSYgPU_H.css +2 -0
- package/dist/web/index.html +2 -2
- package/package.json +1 -1
- package/dist/chunk-2UNXB2D3.js.map +0 -1
- package/dist/web/assets/index-B4PtJ1VM.css +0 -2
- package/dist/web/assets/index-BzkyjHEA.js +0 -67
- /package/dist/{dist-6EV6SS6N.js.map → dist-2YXXOCZJ.js.map} +0 -0
package/README.md
CHANGED
|
@@ -19,9 +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
|
-
- **
|
|
22
|
+
- **Full-Text Search** — Search across session titles and conversation content with highlighted matches
|
|
23
|
+
- **Dashboard & Activity Trends** — See totals, daily activity, agent distribution, model usage, token trends, bookmarks, and recent sessions
|
|
24
|
+
- **Bookmarks** — Save important sessions and keep them visible from the dashboard
|
|
23
25
|
- **Full Conversation Replay** — Read every message, tool call, and reasoning step exactly as it happened
|
|
24
|
-
- **
|
|
26
|
+
- **File Change Tracking** — Jump to files that were read, edited, created, deleted, or moved
|
|
27
|
+
- **Keyboard Navigation** — Move through views, focus search, and open shortcuts without leaving the keyboard
|
|
28
|
+
- **Cost & Token Visibility** — See token totals, cache tokens, model usage, and session cost
|
|
29
|
+
- **SQLite-Backed Cache & Search Index** — Restore session lists quickly and reuse the same local store for search
|
|
25
30
|
- **Zero Configuration** — Just run it. CodeSesh auto-discovers everything on your filesystem
|
|
26
31
|
- **100% Local & Private** — Nothing leaves your machine. No accounts, no cloud sync, no telemetry
|
|
27
32
|
- **Live Refresh** — Local session changes are picked up automatically while the server is running
|
|
@@ -45,7 +50,7 @@ npx codesesh
|
|
|
45
50
|
# Choose a custom port
|
|
46
51
|
npx codesesh --port 8080
|
|
47
52
|
|
|
48
|
-
# Only show sessions
|
|
53
|
+
# Only show sessions active in the last 3 days
|
|
49
54
|
npx codesesh --days 3
|
|
50
55
|
|
|
51
56
|
# Jump directly to a session
|
|
@@ -69,11 +74,11 @@ npx codesesh --trace
|
|
|
69
74
|
| Flag | Alias | Default | Description |
|
|
70
75
|
| ----------- | ----- | ------- | ----------------------------------------------------------- |
|
|
71
76
|
| `--port` | `-p` | `4321` | HTTP server port |
|
|
72
|
-
| `--days` | `-d` | `7` | Only include sessions
|
|
77
|
+
| `--days` | `-d` | `7` | Only include sessions active in the last N days (`0` = all time) |
|
|
73
78
|
| `--cwd` | — | — | Filter to sessions from a project directory |
|
|
74
79
|
| `--agent` | `-a` | all | Filter to specific agent(s), comma-separated |
|
|
75
|
-
| `--from` | — | — | Sessions
|
|
76
|
-
| `--to` | — | — | Sessions
|
|
80
|
+
| `--from` | — | — | Sessions active after this date `YYYY-MM-DD` |
|
|
81
|
+
| `--to` | — | — | Sessions active before this date `YYYY-MM-DD` |
|
|
77
82
|
| `--session` | `-s` | — | Directly open a session (`agent://session-id`) |
|
|
78
83
|
| `--json` | `-j` | `false` | Output JSON and exit (no server) |
|
|
79
84
|
| `--no-open` | — | `false` | Don't auto-open the browser |
|