Fixes the first-run install on Windows and adds a per-account export flow.
Install, one line for the shell you are in:
cmd: pip install claude-rework && python -m claude_rework install
PowerShell: pip install claude-rework; python -m claude_rework install
macOS/Linux: pip3 install claude-rework && python3 -m claude_rework install
Windows PowerShell 5.1 has no &&, and claude-rework is not on PATH in the shell that just ran pip, so the old single line failed twice over.
Fixed
installadds its scripts directory to your user PATH itself, soclaude-reworkworks by name in any new terminal. Written throughHKCU\Environment, notsetx-setxtruncates at 1024 characters and would corrupt a long PATH. A receipt records what was added souninstallremoves ours and never your own entry. Opt out with--no-path.- The desktop app no longer reports "not found" when it is installed but has never been launched. The app is probed separately from its config, the config is created when missing, and
statusdistinguishes not installed, never launched, and connected via mcp. statusanddoctornow report whether Claude will actually list the recall skill, instead of leaving a skill with broken frontmatter looking identical to one that is not installed.
Re-running install is now also a repair
It removes our hook entries that are registered twice, point at an interpreter that no longer exists, or carry backslashes bash would eat, and drops MCP entries left behind under the pre-rename name. Another plugin's hooks and MCP entries are left alone, and your corpus, notes, activity log, tuning, redaction rules and any files you added by hand are kept byte for byte.
New
claude-rework scanreads a whole account's history in before you carry it.claude-rework exportwith no filename writesclaude-rework-<account>-<date>.zip, so two accounts' bundles can sit in one folder and still be told apart.claude-rework whoamishows the signed-in account and what the export would be called;inspectnames the account a bundle came from.install.cmdfor Command Prompt, alongside the existing PowerShell, macOS and Linux scripts.