@clipboard-health/groundcrew 4.45.9 → 4.45.11

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.
@@ -94,7 +94,7 @@ const CREATE_VALUE_HANDLERS = {
94
94
  },
95
95
  };
96
96
  function parseLimit(raw) {
97
- const limit = Number.parseInt(raw, 10);
97
+ const limit = Math.trunc(Number(raw));
98
98
  if (!Number.isInteger(limit) || limit < 1 || String(limit) !== raw) {
99
99
  throw new Error("crew task list: --limit must be a positive integer");
100
100
  }
@@ -117,7 +117,7 @@ function linearPriority(priority) {
117
117
  if (priority === undefined) {
118
118
  return undefined;
119
119
  }
120
- const parsed = Number.parseInt(priority, 10);
120
+ const parsed = Math.trunc(Number(priority));
121
121
  if (!Number.isInteger(parsed) || String(parsed) !== priority || parsed < 0 || parsed > 4) {
122
122
  throw new Error("linear: --priority must be an integer from 0 to 4");
123
123
  }
@@ -158,7 +158,7 @@ function nextGeneratedId(config, parsedAll) {
158
158
  if (id === undefined || !id.startsWith(prefix)) {
159
159
  continue;
160
160
  }
161
- const sequence = Number.parseInt(id.slice(prefix.length), 10);
161
+ const sequence = Math.trunc(Number(id.slice(prefix.length)));
162
162
  if (Number.isFinite(sequence) && sequence > maximumSequence) {
163
163
  maximumSequence = sequence;
164
164
  }
@@ -38,7 +38,7 @@ function parseRecurrence(rec) {
38
38
  return {
39
39
  strict: strictStr === "+",
40
40
  /* v8 ignore next @preserve -- regex (\d+) guarantees amountStr is always defined */
41
- amount: Number.parseInt(amountStr ?? "1", 10),
41
+ amount: Math.trunc(Number(amountStr ?? "1")),
42
42
  unit,
43
43
  };
44
44
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clipboard-health/groundcrew",
3
- "version": "4.45.9",
3
+ "version": "4.45.11",
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",
@@ -69,7 +69,7 @@
69
69
  "verify": "node scripts/verifyAll.mts"
70
70
  },
71
71
  "dependencies": {
72
- "@anthropic-ai/sandbox-runtime": "0.0.55",
72
+ "@anthropic-ai/sandbox-runtime": "0.0.62",
73
73
  "@clipboard-health/clearance": "1.3.2",
74
74
  "@linear/sdk": "87.0.0",
75
75
  "cosmiconfig": "9.0.2",
@@ -83,18 +83,18 @@
83
83
  "@tsconfig/node24": "24.0.4",
84
84
  "@tsconfig/strictest": "2.0.8",
85
85
  "@types/node": "25.9.4",
86
- "@typescript/native-preview": "7.0.0-dev.20260623.1",
86
+ "@typescript/native-preview": "7.0.0-dev.20260629.1",
87
87
  "@vitest/coverage-v8": "4.1.9",
88
88
  "cspell": "10.0.1",
89
- "dependency-cruiser": "17.4.3",
89
+ "dependency-cruiser": "18.0.0",
90
90
  "husky": "9.1.7",
91
91
  "jscpd": "5.0.11",
92
- "knip": "6.16.1",
93
- "lint-staged": "17.0.7",
92
+ "knip": "6.18.0",
93
+ "lint-staged": "17.0.8",
94
94
  "markdownlint-cli2": "0.22.1",
95
95
  "nx": "22.7.5",
96
- "oxfmt": "0.55.0",
97
- "oxlint": "1.70.0",
96
+ "oxfmt": "0.56.0",
97
+ "oxlint": "1.71.0",
98
98
  "oxlint-tsgolint": "0.23.0",
99
99
  "syncpack": "15.3.2",
100
100
  "vite": "8.0.16",