@clipboard-health/groundcrew 2.3.4 → 2.3.6

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.
@@ -14,7 +14,7 @@ const RETRY_BASE_DELAY_MS = 1000;
14
14
  const RETRY_MAX_ATTEMPTS = 3;
15
15
  const STATUS_CARD_TITLE_WIDTH = 42;
16
16
  const STATUS_CARD_ID_WIDTH = 8;
17
- const STATUS_CARD_LIMIT = 20;
17
+ const STATUS_CARD_LIMIT = 10;
18
18
  const HEADER_BAR_WIDTH = 70;
19
19
  const SECTION_BAR_WIDTH = 50;
20
20
  const MS_PER_SECOND = 1000;
@@ -187,12 +187,12 @@ const cmuxAdapter = {
187
187
  const inheritedRemote = await probeCurrentCmuxRemote(signal);
188
188
  const newWorkspaceArguments = ["--json", "new-workspace", "--name", spec.name];
189
189
  if (inheritedRemote === undefined) {
190
- newWorkspaceArguments.push("--working-directory", spec.cwd, "--command", spec.command);
190
+ newWorkspaceArguments.push("--cwd", spec.cwd, "--command", spec.command);
191
191
  }
192
192
  else {
193
- // Skip --working-directory: the path is on the SSH remote and would
194
- // fall back to $HOME (macOS) when cmux tries to chdir locally. The
195
- // wrapped ssh command does its own `cd` on the remote side.
193
+ // Skip --cwd: the path is on the SSH remote and would fall back to
194
+ // $HOME (macOS) when cmux tries to chdir locally. The wrapped ssh
195
+ // command does its own `cd` on the remote side.
196
196
  newWorkspaceArguments.push("--command", buildSshWrappedCommand(spec, inheritedRemote));
197
197
  }
198
198
  const output = await runWorkspaceCommand("cmux", newWorkspaceArguments, signal);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clipboard-health/groundcrew",
3
- "version": "2.3.4",
3
+ "version": "2.3.6",
4
4
  "description": "Linear-driven orchestrator that launches AI coding agents in git worktrees, with workspace lifecycle and usage tracking.",
5
5
  "keywords": [
6
6
  "agent",