You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spin up new worktrees with one click. Pick a profile, type a prompt, and webmux creates the worktree, starts the agent, and begins streaming output. Merge or remove worktrees when you're done.
13
+
Spin up new worktrees with one click. Pick a profile, type a prompt, and webmux creates the worktree, starts the agent, and begins streaming output. Changed your mind about the profile? Switch it later from the worktree menu (or `webmux profile <branch> <profile>`) — the session restarts with the new pane layout and commands, resuming the agent conversation. Merge or remove worktrees when you're done.
COMPREPLY=($(compgen -W "serve init service update add oneshot list open close refresh archive unarchive label remove merge send prune restore linear project completion" -- "\${cur}"))
210
+
COMPREPLY=($(compgen -W "serve init service update add oneshot list open close refresh archive unarchive label profile remove merge send prune restore linear project completion" -- "\${cur}"))
@@ -80,6 +81,7 @@ function isRootCommand(value: string): value is NonNullable<RootCommand> {
80
81
||value==="archive"
81
82
||value==="unarchive"
82
83
||value==="label"
84
+
||value==="profile"
83
85
||value==="remove"
84
86
||value==="merge"
85
87
||value==="send"
@@ -165,7 +167,7 @@ export function parseRootArgs(args: string[]): ParsedRootArgs {
165
167
};
166
168
}
167
169
168
-
functionisWorktreeCommand(command: RootCommand): command is "add"|"list"|"open"|"close"|"refresh"|"archive"|"unarchive"|"label"|"remove"|"merge"|"send"|"tab"|"prune"|"restore"{
170
+
functionisWorktreeCommand(command: RootCommand): command is "add"|"list"|"open"|"close"|"refresh"|"archive"|"unarchive"|"label"|"profile"|"remove"|"merge"|"send"|"tab"|"prune"|"restore"{
169
171
returncommand==="add"
170
172
||command==="list"
171
173
||command==="open"
@@ -174,6 +176,7 @@ function isWorktreeCommand(command: RootCommand): command is "add" | "list" | "o
0 commit comments