webmux 0.24.1 → 0.25.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin/webmux.js +7 -2
  2. package/package.json +1 -1
package/bin/webmux.js CHANGED
@@ -12581,9 +12581,10 @@ function getWorktreeCommandUsage(command) {
12581
12581
  case "add":
12582
12582
  return [
12583
12583
  "Usage:",
12584
- " webmux add [branch] [--base <branch>] [--profile <name>] [--agent <claude|codex>] [--prompt <text>] [--env KEY=VALUE] [--detach]",
12584
+ " webmux add [branch] [--existing] [--base <branch>] [--profile <name>] [--agent <claude|codex>] [--prompt <text>] [--env KEY=VALUE] [--detach]",
12585
12585
  "",
12586
12586
  "Options:",
12587
+ " --existing Use an existing local or remote branch instead of creating a new one",
12587
12588
  " --base <branch> Base branch for a new worktree (defaults to config)",
12588
12589
  " --profile <name> Worktree profile from .webmux.yaml",
12589
12590
  " --agent <claude|codex> Agent to launch in the worktree",
@@ -12662,6 +12663,10 @@ function parseAddCommandArgs(args) {
12662
12663
  if (arg === "--help" || arg === "-h") {
12663
12664
  return null;
12664
12665
  }
12666
+ if (arg === "--existing") {
12667
+ input.mode = "existing";
12668
+ continue;
12669
+ }
12665
12670
  if (arg === "--detach" || arg === "-d") {
12666
12671
  detach = true;
12667
12672
  continue;
@@ -13026,7 +13031,7 @@ import { fileURLToPath } from "url";
13026
13031
  // package.json
13027
13032
  var package_default = {
13028
13033
  name: "webmux",
13029
- version: "0.24.1",
13034
+ version: "0.25.0",
13030
13035
  description: "Web dashboard for workmux \u2014 browser UI with embedded terminals, PR monitoring, and CI integration",
13031
13036
  type: "module",
13032
13037
  repository: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webmux",
3
- "version": "0.24.1",
3
+ "version": "0.25.0",
4
4
  "description": "Web dashboard for workmux — browser UI with embedded terminals, PR monitoring, and CI integration",
5
5
  "type": "module",
6
6
  "repository": {