Problem
CodeBurn currently supports Claude Desktop sessions on macOS (~/Library/Application Support/Claude/local-agent-mode-sessions/), but not on Windows, where the equivalent path is:
%APPDATA%\Claude\local-agent-mode-sessions\
Running npx codeburn on a Windows machine with active Cowork/Claude Desktop sessions shows zero usage — the provider doesn't scan the Windows data directory.
Expected Behavior
CodeBurn should detect and parse Claude Desktop / Cowork session data on Windows, just as it does on macOS.
Suggested Implementation
In the Claude Desktop provider, add the Windows path alongside the existing macOS one:
- macOS:
~/Library/Application Support/Claude/local-agent-mode-sessions/
- Windows:
%APPDATA%\Claude\local-agent-mode-sessions\
- Linux (if applicable):
~/.config/Claude/local-agent-mode-sessions/
This is similar to how the Cursor provider already handles cross-platform paths.
Environment
- OS: Windows 11
- Node.js: 20+
- CodeBurn: latest (via
npx codeburn)
- Claude Desktop: active Cowork sessions present at
%APPDATA%\Claude\local-agent-mode-sessions\
Workaround Attempted
Setting CLAUDE_CONFIG_DIR to %APPDATA%\Claude — no effect, as the provider looks for projects/ subfolder structure which doesn't match Cowork's local-agent-mode-sessions/ layout.
Problem
CodeBurn currently supports Claude Desktop sessions on macOS (
~/Library/Application Support/Claude/local-agent-mode-sessions/), but not on Windows, where the equivalent path is:Running
npx codeburnon a Windows machine with active Cowork/Claude Desktop sessions shows zero usage — the provider doesn't scan the Windows data directory.Expected Behavior
CodeBurn should detect and parse Claude Desktop / Cowork session data on Windows, just as it does on macOS.
Suggested Implementation
In the Claude Desktop provider, add the Windows path alongside the existing macOS one:
~/Library/Application Support/Claude/local-agent-mode-sessions/%APPDATA%\Claude\local-agent-mode-sessions\~/.config/Claude/local-agent-mode-sessions/This is similar to how the Cursor provider already handles cross-platform paths.
Environment
npx codeburn)%APPDATA%\Claude\local-agent-mode-sessions\Workaround Attempted
Setting
CLAUDE_CONFIG_DIRto%APPDATA%\Claude— no effect, as the provider looks forprojects/subfolder structure which doesn't match Cowork'slocal-agent-mode-sessions/layout.