feat: --browser CLI flag & session discovery#242
Merged
backnotprop merged 4 commits intomainfrom Mar 7, 2026
Merged
Conversation
Owner
Author
Code reviewNo issues found. Checked for bugs and CLAUDE.md compliance. 🤖 Generated with Claude Code |
- Add `--browser <name>` global flag to override which browser opens (sets PLANNOTATOR_BROWSER, works with existing openBrowser() logic) - Add `plannotator sessions` subcommand to list active server sessions with `--open [N]` to reopen in browser and `--clean` to prune stale entries - Track active sessions in ~/.plannotator/sessions/<pid>.json with automatic stale cleanup via PID liveness checks - Register/unregister sessions in all three server modes (plan, review, annotate) - Export ./sessions and ./project from @plannotator/server package Closes #135 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Non-interactive test script that validates: - Session file creation/cleanup lifecycle - Session file content (all fields) - `plannotator sessions` listing, --open, --clean - Stale PID auto-cleanup Also syncs bun.lock versions. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Covers lost tabs (sessions --open), data storage locations, browser issues, and hook not firing. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
451b6a0 to
040b2f1
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Closes #135 — configurable browser and reopen closed GUI tabs.
--browser <name>flag: Global CLI flag to override which browser Plannotator opens (e.g.plannotator review --browser "Safari")plannotator sessions: New subcommand to list, reopen, and clean up active Plannotator server sessions~/.plannotator/sessions/on startup and clean up on exitTest plan
--browser "Safari"opens in Safari (manual)./tests/manual/local/test-sessions.sh— 22 automated tests covering session lifecycle, listing,--open,--clean, stale cleanup, file content validation🤖 Generated with Claude Code