codesesh 0.5.0 → 0.6.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 +6 -3
- package/dist/{chunk-FZNZAMTZ.js → chunk-SQYHWMQV.js} +2533 -458
- package/dist/chunk-SQYHWMQV.js.map +1 -0
- package/dist/{dist-DMEDEJ2D.js → dist-NT4CH6KD.js} +46 -2
- package/dist/index.js +680 -83
- package/dist/index.js.map +1 -1
- package/dist/search-index-worker.js +40 -0
- package/dist/search-index-worker.js.map +1 -0
- package/dist/web/assets/index-D9lwrpQG.css +2 -0
- package/dist/web/assets/index-DZaQy6OQ.js +106 -0
- package/dist/web/assets/vendor-Bs5B_LvM.js +43 -0
- package/dist/web/index.html +3 -3
- package/package.json +2 -3
- package/dist/chunk-FZNZAMTZ.js.map +0 -1
- package/dist/web/assets/index-BRW_TBMw.js +0 -106
- package/dist/web/assets/index-CCgk7cPa.css +0 -2
- package/dist/web/assets/vendor-CWmLg_mG.js +0 -43
- /package/dist/{dist-DMEDEJ2D.js.map → dist-NT4CH6KD.js.map} +0 -0
package/README.md
CHANGED
|
@@ -19,16 +19,18 @@ 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
|
+
- **Structured Global Search** — Search titles, messages, tool output, and file paths with filters for agent, project, smart tag, tool, file activity, and cost
|
|
23
23
|
- **Dashboard & Activity Trends** — See totals, daily activity, agent distribution, model usage, token trends, smart tags, bookmarks, and recent sessions
|
|
24
|
+
- **Project Browse Mode** — Open a dedicated projects view with project-level metrics, sessions, and cross-agent drill-down
|
|
24
25
|
- **Project-Aware Session Tree** — Group sessions by repository or project identity across supported agents
|
|
25
26
|
- **Smart Tags** — Automatically label bugfix, refactoring, feature work, testing, docs, planning, git, build/deploy, and exploration sessions
|
|
26
27
|
- **Bookmarks** — Save important sessions and keep them visible from the dashboard
|
|
27
28
|
- **Full Conversation Replay** — Read every message, tool call, and reasoning step exactly as it happened
|
|
28
|
-
- **File
|
|
29
|
+
- **File Activity Index** — Jump to files that were read, edited, created, deleted, or moved, and search sessions by file activity
|
|
29
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
|
|
30
32
|
- **Cost & Token Visibility** — See token totals, cache tokens, recorded costs, and model-based cost estimates
|
|
31
|
-
- **SQLite
|
|
33
|
+
- **SQLite Cache, Migrations & Search Index** — Restore session lists quickly, upgrade local schemas safely, and reuse the same local store for search
|
|
32
34
|
- **Zero Configuration** — Just run it. CodeSesh auto-discovers everything on your filesystem
|
|
33
35
|
- **100% Local & Private** — Your data stays on your machine. No accounts, no cloud sync, no cloud telemetry
|
|
34
36
|
- **Live Refresh** — Local session changes are picked up automatically while the server is running
|
|
@@ -87,6 +89,7 @@ npx codesesh --trace
|
|
|
87
89
|
| `--trace` | — | `false` | Print performance trace logs |
|
|
88
90
|
| `--cache` | — | `true` | Use cached scan results when available |
|
|
89
91
|
| `--clear-cache` | — | `false` | Clear scan cache before starting |
|
|
92
|
+
| `-v` | — | — | Print version number |
|
|
90
93
|
|
|
91
94
|
## Requirements
|
|
92
95
|
|