session-steward 0.5.1 → 0.6.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,22 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.6.0] - 2026-08-16
4
+
5
+ ### Added
6
+
7
+ - 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.
8
+ - 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.
9
+
10
+ ## [0.5.2] - 2026-08-13
11
+
12
+ ### Changed
13
+
14
+ - Reduced fresh installation size by avoiding redundant downloads of UI libraries already included in the bundled interface.
15
+
16
+ ### Fixed
17
+
18
+ - Provider overview metrics now fill the available row evenly without leaving an unused column.
19
+
3
20
  ## [0.5.1] - 2026-08-12
4
21
 
5
22
  ### Changed
@@ -95,6 +112,8 @@
95
112
  - Support for custom Codex home folders and a saved folder preference.
96
113
  - Streaming and bounded-memory discovery for large session collections and transcripts.
97
114
 
115
+ [0.6.0]: https://github.com/mallikcheripally/session-steward/compare/v0.5.2...v0.6.0
116
+ [0.5.2]: https://github.com/mallikcheripally/session-steward/compare/v0.5.1...v0.5.2
98
117
  [0.5.1]: https://github.com/mallikcheripally/session-steward/compare/v0.5.0...v0.5.1
99
118
  [0.5.0]: https://github.com/mallikcheripally/session-steward/compare/v0.4.0...v0.5.0
100
119
  [0.4.0]: https://github.com/mallikcheripally/session-steward/compare/v0.3.0...v0.4.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`);