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 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:4321` with all your sessions ready to browse.
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
- - **Claude Code Resume Commands** — Copy worktree-aware `claude --resume` commands from Claude Code session details
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 4321)
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` | `4321` | HTTP server port |
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 |