@liberseek/boft-cli-win32-arm64 0.6.2 → 0.6.4
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/README.md +1 -1
- package/app/codexhost-distribution.json +1 -1
- package/app/desktop-controller.mjs +4 -1
- package/app/host-runtime.mjs +223 -29
- package/app/plugins/antigravity/plugin.mjs +6 -1
- package/app/plugins/claude-code/plugin.mjs +528 -49
- package/app/plugins/deepseek-harness/plugin.mjs +11 -1
- package/app/plugins/enabled.json +4 -1
- package/app/plugins/grok/plugin.mjs +925 -86
- package/app/plugins/hermes/manifest.json +11 -0
- package/app/plugins/hermes/plugin.mjs +21491 -0
- package/app/plugins/kiro-cli/assets/icon.svg +5 -0
- package/app/plugins/kiro-cli/manifest.json +12 -0
- package/app/plugins/kiro-cli/plugin.mjs +23353 -0
- package/app/plugins/muse/assets/icon.svg +4 -0
- package/app/plugins/muse/manifest.json +12 -0
- package/app/plugins/muse/plugin.mjs +18151 -0
- package/app/plugins/omp/plugin.mjs +11 -1
- package/app/plugins/opencode/plugin.mjs +11 -1
- package/app/plugins/pi/plugin.mjs +11 -1
- package/app/renderer-extension.js +1130 -157
- package/bin/codexhost.exe +0 -0
- package/libexec/codexhost-node-repl.exe +0 -0
- package/libexec/codexhost-shim.exe +0 -0
- package/libexec/codexhost-updater.exe +0 -0
- package/package.json +1 -1
|
@@ -18252,6 +18252,8 @@ var threadUsageSnapshotSchema = external_exports.object({
|
|
|
18252
18252
|
reasoningOutputTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
18253
18253
|
totalTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
18254
18254
|
totalCostUsd: finiteNonNegativeNumberSchema.optional(),
|
|
18255
|
+
totalCredits: finiteNonNegativeNumberSchema.optional(),
|
|
18256
|
+
contextUsagePercent: finiteNonNegativeNumberSchema.optional(),
|
|
18255
18257
|
cacheHitRatePercent: cacheHitRatePercentSchema.optional(),
|
|
18256
18258
|
contextWindowTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
18257
18259
|
contextUsedTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
@@ -19228,7 +19230,9 @@ var usageFields = /* @__PURE__ */ new Set([
|
|
|
19228
19230
|
...tokenFields,
|
|
19229
19231
|
...safeIntegerFields,
|
|
19230
19232
|
...percentFields,
|
|
19231
|
-
"totalCostUsd"
|
|
19233
|
+
"totalCostUsd",
|
|
19234
|
+
"totalCredits",
|
|
19235
|
+
"contextUsagePercent"
|
|
19232
19236
|
]);
|
|
19233
19237
|
function isRecord(value) {
|
|
19234
19238
|
return typeof value === "object" && value !== null && !Array.isArray(value);
|
|
@@ -19262,6 +19266,12 @@ function parseHostUsage(value) {
|
|
|
19262
19266
|
if (value.totalCostUsd !== void 0 && (typeof value.totalCostUsd !== "number" || !Number.isFinite(value.totalCostUsd) || value.totalCostUsd < 0)) {
|
|
19263
19267
|
throw new Error("Harness Usage 'totalCostUsd' must be a finite non-negative number");
|
|
19264
19268
|
}
|
|
19269
|
+
for (const field of ["totalCredits", "contextUsagePercent"]) {
|
|
19270
|
+
const candidate = value[field];
|
|
19271
|
+
if (candidate !== void 0 && (typeof candidate !== "number" || !Number.isFinite(candidate) || candidate < 0)) {
|
|
19272
|
+
throw new Error(`Harness Usage '${field}' must be a finite non-negative number`);
|
|
19273
|
+
}
|
|
19274
|
+
}
|
|
19265
19275
|
for (const field of percentFields) {
|
|
19266
19276
|
const candidate = value[field];
|
|
19267
19277
|
if (candidate !== void 0 && (typeof candidate !== "number" || !Number.isFinite(candidate) || candidate < 0 || candidate > 100)) {
|