Rename daemon subcommand to scheme, remove install action - #3
Merged
Conversation
The `daemon` subcommand managed URL scheme handler registration, not an actual background daemon process. Rename it to `worktree scheme` to accurately describe its purpose. Remove the `install` action since `worktree setup` already handles registration. Keep `uninstall` and `status` which have no equivalent elsewhere in the CLI. Also renames the internal module from `daemon` to `scheme` and `DaemonStatus` to `SchemeStatus` for consistency. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
4 tasks
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
worktree daemontoworktree scheme— the subcommand manages URL scheme handler registration, not a background daemon processinstallaction from the subcommand;worktree setupalready handles registrationuninstallandstatus, which have no equivalent elsewhere in the CLIdaemon→schemeandDaemonStatus→SchemeStatusfor consistencyCloses #fe906159-dadd-44cc-bdaf-7bd5c24a72aa
Test plan
worktree scheme --helpshowsuninstallandstatussubcommands (noinstall)worktree scheme statusreports handler registration stateworktree scheme uninstallremoves the handlerworktree setupstill registers the handler (callsscheme::install()internally)worktree daemon(old name) is no longer a valid subcommand🤖 Generated with Claude Code