threadwire 0.1.24 → 0.1.25
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/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/src/absolute-deadline.js +9 -2
- package/src/cli.js +12 -3
- package/src/isolated-runtime-client.js +2 -2
- package/src/provider-capacity-kimi.js +12 -3
- package/src/provider-capacity.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
- Harden `threadwire capacity` edge cases. Kimi quota remaining percent is now
|
|
6
|
+
computed with integer-safe arithmetic so values such as 29 % of 100 no longer
|
|
7
|
+
lose the inclusive reserve boundary to floating-point rounding. Kimi probe
|
|
8
|
+
body-read aborts, timeouts, and transport errors are classified as
|
|
9
|
+
`unavailable`, while oversized bodies and malformed JSON remain `protocol`;
|
|
10
|
+
no token or response detail is leaked. `--timeout-ms` is now rejected above
|
|
11
|
+
Node's maximum timer delay (`2147483647`), matching the existing positive
|
|
12
|
+
integer error convention and updated help text.
|
|
13
|
+
|
|
5
14
|
- Fix a race in isolated-runtime worker cleanup: Docker's ContainerStop returns
|
|
6
15
|
HTTP 304 when the owned container exits before the stop call, and
|
|
7
16
|
ContainerKill returns HTTP 409 when the container exits between the post-stop
|
package/package.json
CHANGED
package/src/absolute-deadline.js
CHANGED
|
@@ -75,6 +75,13 @@ export async function abortable(promise, signal) {
|
|
|
75
75
|
})
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
+
export class ResponseCapacityError extends Error {
|
|
79
|
+
constructor() {
|
|
80
|
+
super("Response exceeded capacity")
|
|
81
|
+
this.name = "ResponseCapacityError"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
78
85
|
export async function readResponseCapped(response, capacity, signal) {
|
|
79
86
|
const reader = response.body?.getReader()
|
|
80
87
|
if (!reader) return Buffer.alloc(0)
|
|
@@ -87,8 +94,8 @@ export async function readResponseCapped(response, capacity, signal) {
|
|
|
87
94
|
const chunk = Buffer.from(value)
|
|
88
95
|
size += chunk.length
|
|
89
96
|
if (size > capacity) {
|
|
90
|
-
await reader.cancel(new
|
|
91
|
-
throw new
|
|
97
|
+
await reader.cancel(new ResponseCapacityError()).catch(() => {})
|
|
98
|
+
throw new ResponseCapacityError()
|
|
92
99
|
}
|
|
93
100
|
chunks.push(chunk)
|
|
94
101
|
}
|
package/src/cli.js
CHANGED
|
@@ -4,7 +4,7 @@ import {lstat, readFile, readlink, realpath} from "node:fs/promises"
|
|
|
4
4
|
import {randomUUID} from "node:crypto"
|
|
5
5
|
import {basename, dirname, isAbsolute, join, normalize, resolve} from "node:path"
|
|
6
6
|
import {stdin, stderr, stdout} from "node:process"
|
|
7
|
-
import {createFetchTransport} from "./notifiers/fetch-transport.js"
|
|
7
|
+
import {createFetchTransport, MAX_TIMER_DELAY_MS} from "./notifiers/fetch-transport.js"
|
|
8
8
|
import {createTelegramSender, parseTelegramTarget} from "./notifiers/telegram.js"
|
|
9
9
|
import {createProvider, PROVIDERS} from "./providers/index.js"
|
|
10
10
|
import {runWorker} from "./run-worker.js"
|
|
@@ -45,7 +45,7 @@ const HELP = `Usage: threadwire run --provider <codex|claude|kimi|opencode> --ta
|
|
|
45
45
|
(--summary | --events [--kind <kind>] [--after <order>] [--before <order>] [--limit <positive-integer>] | --failures [--after <order>] [--limit <positive-integer>])
|
|
46
46
|
threadwire capacity [--provider <codex|kimi>]...
|
|
47
47
|
[--short-reserve-percent <0-100>] [--long-reserve-percent <0-100>]
|
|
48
|
-
[--timeout-ms <
|
|
48
|
+
[--timeout-ms <1-2147483647>]
|
|
49
49
|
threadwire status --activity-log <absolute-path>
|
|
50
50
|
(Emits one closed versioned JSON status document from the activity log.)`
|
|
51
51
|
|
|
@@ -231,7 +231,7 @@ function parseCapacityArguments(arguments_) {
|
|
|
231
231
|
providers.push(provider)
|
|
232
232
|
} else if (option === "--short-reserve-percent") shortReservePercent = reservePercent(value, option)
|
|
233
233
|
else if (option === "--long-reserve-percent") longReservePercent = reservePercent(value, option)
|
|
234
|
-
else if (option === "--timeout-ms") timeoutMs =
|
|
234
|
+
else if (option === "--timeout-ms") timeoutMs = capacityTimeoutMs(value, option)
|
|
235
235
|
else throw new Error(HELP)
|
|
236
236
|
}
|
|
237
237
|
return {
|
|
@@ -843,6 +843,15 @@ function positiveInteger(value, option) {
|
|
|
843
843
|
return number
|
|
844
844
|
}
|
|
845
845
|
|
|
846
|
+
/** @param {string} value @param {string} option */
|
|
847
|
+
function capacityTimeoutMs(value, option) {
|
|
848
|
+
const number = positiveInteger(value, option)
|
|
849
|
+
if (number > MAX_TIMER_DELAY_MS) {
|
|
850
|
+
throw new Error(`${option} must be no greater than ${MAX_TIMER_DELAY_MS}`)
|
|
851
|
+
}
|
|
852
|
+
return number
|
|
853
|
+
}
|
|
854
|
+
|
|
846
855
|
/** @param {string} value */
|
|
847
856
|
function sessionId(value) {
|
|
848
857
|
try {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
/* eslint-disable jsdoc/require-jsdoc */
|
|
3
3
|
|
|
4
|
-
import {AbsoluteDeadline, deadlineAfter, abortable, readResponseCapped} from "./absolute-deadline.js"
|
|
4
|
+
import {AbsoluteDeadline, deadlineAfter, abortable, readResponseCapped, ResponseCapacityError} from "./absolute-deadline.js"
|
|
5
5
|
|
|
6
6
|
const MAX_RESPONSE_BYTES = 2_097_152
|
|
7
7
|
const MAX_RAW_OUTPUT_BYTES = 1_048_576
|
|
@@ -207,7 +207,7 @@ export class IsolatedRuntimeClient {
|
|
|
207
207
|
try {
|
|
208
208
|
bytes = await readResponseCapped(response, MAX_RESPONSE_BYTES, signal)
|
|
209
209
|
} catch (error) {
|
|
210
|
-
if (error instanceof
|
|
210
|
+
if (error instanceof ResponseCapacityError) throw new Error("Isolated runtime response exceeded the configured capacity", {cause: error})
|
|
211
211
|
throw error
|
|
212
212
|
}
|
|
213
213
|
if (!response.ok) throw new Error(safeRemoteError(bytes))
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @ts-check
|
|
2
2
|
|
|
3
3
|
import {isAbsolute, join} from "node:path"
|
|
4
|
-
import {readResponseCapped} from "./absolute-deadline.js"
|
|
4
|
+
import {readResponseCapped, ResponseCapacityError} from "./absolute-deadline.js"
|
|
5
5
|
import {openKimiOAuthStore} from "./kimi-oauth-store.js"
|
|
6
6
|
import {CapacityProbeError, DEFAULT_CAPACITY_TIMEOUT_MS, normalizeKimiUsages} from "./provider-capacity.js"
|
|
7
7
|
|
|
@@ -64,13 +64,22 @@ export async function probeKimiCapacity(options) {
|
|
|
64
64
|
if (contentType === null || !contentType.toLowerCase().includes("application/json")) {
|
|
65
65
|
throw new CapacityProbeError("protocol", "Kimi usages response has an unexpected content type")
|
|
66
66
|
}
|
|
67
|
+
/** @type {Buffer} */
|
|
68
|
+
let bytes
|
|
69
|
+
try {
|
|
70
|
+
bytes = await readResponseCapped(response, MAX_USAGES_BYTES, signal)
|
|
71
|
+
} catch (error) {
|
|
72
|
+
if (error instanceof ResponseCapacityError) {
|
|
73
|
+
throw new CapacityProbeError("protocol", "Kimi usages response body exceeded the size bound")
|
|
74
|
+
}
|
|
75
|
+
throw new CapacityProbeError("unavailable", "Kimi usages response body is unavailable")
|
|
76
|
+
}
|
|
67
77
|
/** @type {unknown} */
|
|
68
78
|
let parsed
|
|
69
79
|
try {
|
|
70
|
-
const bytes = await readResponseCapped(response, MAX_USAGES_BYTES, signal)
|
|
71
80
|
parsed = JSON.parse(bytes.toString("utf8"))
|
|
72
81
|
} catch {
|
|
73
|
-
throw new CapacityProbeError("protocol", "Kimi usages response is not valid
|
|
82
|
+
throw new CapacityProbeError("protocol", "Kimi usages response is not valid JSON")
|
|
74
83
|
}
|
|
75
84
|
return normalizeKimiUsages(parsed)
|
|
76
85
|
}
|
package/src/provider-capacity.js
CHANGED
|
@@ -213,7 +213,7 @@ function kimiQuotaWindow(value, windowDurationSeconds) {
|
|
|
213
213
|
const used = quotaValue(value.used)
|
|
214
214
|
const remaining = quotaValue(value.remaining)
|
|
215
215
|
if (limit < 1 || used + remaining !== limit) throw kimiProtocolError()
|
|
216
|
-
const remainingPercent =
|
|
216
|
+
const remainingPercent = Number((BigInt(remaining) * 100n) / BigInt(limit))
|
|
217
217
|
return {
|
|
218
218
|
usedPercent: 100 - remainingPercent,
|
|
219
219
|
remainingPercent,
|