session-steward 0.5.2 → 0.7.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/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.7.0] - 2026-08-20
4
+
5
+ ### Added
6
+
7
+ - Session details now summarize asks, edits, and commands across the full session and show what is using its storage.
8
+ - Timelines now make your messages easier to read, and separate related sessions into their own tab.
9
+
10
+ ### Changed
11
+
12
+ - Updated Codex and Claude support for their latest local storage formats, including safe cleanup of Codex queue and thread-history data.
13
+
14
+ ## [0.6.0] - 2026-08-16
15
+
16
+ ### Added
17
+
18
+ - Windows support, alongside macOS and Linux. Codex and Claude Code sessions are read from your Windows user profile, and Claude Desktop data is found in both the standalone and Microsoft Store locations.
19
+ - Inside WSL, Session Steward manages the sessions stored in your Linux home folder. Run it from Windows to manage the sessions in your Windows profile.
20
+
3
21
  ## [0.5.2] - 2026-08-13
4
22
 
5
23
  ### Changed
@@ -105,6 +123,8 @@
105
123
  - Support for custom Codex home folders and a saved folder preference.
106
124
  - Streaming and bounded-memory discovery for large session collections and transcripts.
107
125
 
126
+ [0.7.0]: https://github.com/mallikcheripally/session-steward/compare/v0.6.0...v0.7.0
127
+ [0.6.0]: https://github.com/mallikcheripally/session-steward/compare/v0.5.2...v0.6.0
108
128
  [0.5.2]: https://github.com/mallikcheripally/session-steward/compare/v0.5.1...v0.5.2
109
129
  [0.5.1]: https://github.com/mallikcheripally/session-steward/compare/v0.5.0...v0.5.1
110
130
  [0.5.0]: https://github.com/mallikcheripally/session-steward/compare/v0.4.0...v0.5.0
package/README.md CHANGED
@@ -47,7 +47,7 @@ At startup, Session Steward may contact the public npm registry to check for a n
47
47
 
48
48
  ## Install and get started
49
49
 
50
- Session Steward supports macOS and Linux and requires Node.js 24.15 or newer. Git and a separate SQLite installation are not required.
50
+ Session Steward supports macOS, Linux, and Windows and requires Node.js 24.15 or newer.
51
51
 
52
52
  Install it globally:
53
53
 
@@ -67,7 +67,9 @@ Or try it without installing:
67
67
  npx session-steward@latest
68
68
  ```
69
69
 
70
- Session Steward opens in your browser, listens only on `127.0.0.1`, and detects `~/.codex` and `~/.claude` by default. Claude Desktop sessions are detected on macOS; Claude Code CLI sessions work on macOS and Linux.
70
+ Session Steward opens in your browser, listens only on `127.0.0.1`, and detects `~/.codex` and `~/.claude` by default. Claude Code CLI and local Claude Desktop sessions are detected on macOS and Windows; the Claude Code CLI is also supported on Linux. On Windows, these resolve to `%USERPROFILE%\.codex` and `%USERPROFILE%\.claude`.
71
+
72
+ When run inside WSL, Session Steward uses the Linux home folder and manages sessions stored there. Run it from Windows to manage sessions in your Windows profile.
71
73
 
72
74
  To clean up sessions:
73
75
 
@@ -271,7 +273,7 @@ Results vary with hardware, disk speed, and session layout. Tests and benchmarks
271
273
 
272
274
  ## Support
273
275
 
274
- Codex, Claude Code CLI, and local Claude Code Desktop sessions are supported. Claude Desktop archive is not treated as deletion, and Session Steward never removes its worktrees.
276
+ Codex, Claude Code CLI, and local Claude Code Desktop sessions are supported. Claude Desktop archive is not treated as deletion, and Session Steward never removes its worktrees. On Windows, both the standalone and Microsoft Store Claude Desktop data locations are detected.
275
277
 
276
278
  Use [GitHub Issues](https://github.com/mallikcheripally/session-steward/issues) to report a bug, request a provider, or share a storage format that Session Steward does not recognize.
277
279
 
@@ -4,6 +4,7 @@ import { parseArgs } from "node:util";
4
4
  import { spawn } from "node:child_process";
5
5
 
6
6
  import packageMetadata from "../package.json" with { type: "json" };
7
+ import { getBrowserOpenInvocation } from "../lib/platform.mjs";
7
8
  import { assertSupportedNode } from "../lib/runtime.mjs";
8
9
  import { findAvailableUpdate, formatUpdateNotice } from "../lib/update-check.mjs";
9
10
 
@@ -58,14 +59,14 @@ process.stdout.write(`Session Steward is running at http://127.0.0.1:${server.po
58
59
 
59
60
  if (!values["no-open"]) {
60
61
  const url = `http://127.0.0.1:${server.port}`;
61
- const openerCommand = process.platform === "darwin"
62
- ? "open"
63
- : process.platform === "linux"
64
- ? "xdg-open"
65
- : null;
62
+ const invocation = getBrowserOpenInvocation(url);
66
63
 
67
- if (openerCommand) {
68
- const opener = spawn(openerCommand, [url], { detached: true, stdio: "ignore" });
64
+ if (invocation) {
65
+ const opener = spawn(invocation.command, invocation.args, {
66
+ detached: true,
67
+ stdio: "ignore",
68
+ windowsHide: invocation.windowsHide,
69
+ });
69
70
  opener.unref();
70
71
  } else {
71
72
  process.stdout.write(`Open ${url} in a browser.\n`);