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 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
- - **Dashboard & Activity Trends** — See totals, daily activity, agent distribution, and recent sessions
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
- - **Cost & Token Visibility** — See exactly how many tokens and dollars each session consumed
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 from the last 3 days
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 from the last N days (`0` = all time) |
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 created after this date `YYYY-MM-DD` |
76
- | `--to` | — | — | Sessions created before this date `YYYY-MM-DD` |
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 |