@clipboard-health/groundcrew 4.45.8 → 4.45.10
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.
package/dist/commands/task.js
CHANGED
|
@@ -94,7 +94,7 @@ const CREATE_VALUE_HANDLERS = {
|
|
|
94
94
|
},
|
|
95
95
|
};
|
|
96
96
|
function parseLimit(raw) {
|
|
97
|
-
const limit =
|
|
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 =
|
|
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 =
|
|
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:
|
|
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.
|
|
3
|
+
"version": "4.45.10",
|
|
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,9 +69,9 @@
|
|
|
69
69
|
"verify": "node scripts/verifyAll.mts"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@anthropic-ai/sandbox-runtime": "0.0.
|
|
72
|
+
"@anthropic-ai/sandbox-runtime": "0.0.61",
|
|
73
73
|
"@clipboard-health/clearance": "1.3.2",
|
|
74
|
-
"@linear/sdk": "
|
|
74
|
+
"@linear/sdk": "87.0.0",
|
|
75
75
|
"cosmiconfig": "9.0.2",
|
|
76
76
|
"tslib": "2.8.1",
|
|
77
77
|
"zod": "4.4.3"
|
|
@@ -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.
|
|
86
|
+
"@typescript/native-preview": "7.0.0-dev.20260626.1",
|
|
87
87
|
"@vitest/coverage-v8": "4.1.9",
|
|
88
88
|
"cspell": "10.0.1",
|
|
89
|
-
"dependency-cruiser": "
|
|
89
|
+
"dependency-cruiser": "18.0.0",
|
|
90
90
|
"husky": "9.1.7",
|
|
91
91
|
"jscpd": "5.0.11",
|
|
92
|
-
"knip": "6.
|
|
93
|
-
"lint-staged": "17.0.
|
|
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.
|
|
97
|
-
"oxlint": "1.
|
|
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",
|