@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
|
@@ -15069,6 +15069,8 @@ var threadUsageSnapshotSchema = external_exports.object({
|
|
|
15069
15069
|
reasoningOutputTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
15070
15070
|
totalTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
15071
15071
|
totalCostUsd: finiteNonNegativeNumberSchema.optional(),
|
|
15072
|
+
totalCredits: finiteNonNegativeNumberSchema.optional(),
|
|
15073
|
+
contextUsagePercent: finiteNonNegativeNumberSchema.optional(),
|
|
15072
15074
|
cacheHitRatePercent: cacheHitRatePercentSchema.optional(),
|
|
15073
15075
|
contextWindowTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
15074
15076
|
contextUsedTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
@@ -16024,7 +16026,9 @@ var usageFields = /* @__PURE__ */ new Set([
|
|
|
16024
16026
|
...tokenFields,
|
|
16025
16027
|
...safeIntegerFields,
|
|
16026
16028
|
...percentFields,
|
|
16027
|
-
"totalCostUsd"
|
|
16029
|
+
"totalCostUsd",
|
|
16030
|
+
"totalCredits",
|
|
16031
|
+
"contextUsagePercent"
|
|
16028
16032
|
]);
|
|
16029
16033
|
function isRecord(value) {
|
|
16030
16034
|
return typeof value === "object" && value !== null && !Array.isArray(value);
|
|
@@ -16058,6 +16062,12 @@ function parseHostUsage(value) {
|
|
|
16058
16062
|
if (value.totalCostUsd !== void 0 && (typeof value.totalCostUsd !== "number" || !Number.isFinite(value.totalCostUsd) || value.totalCostUsd < 0)) {
|
|
16059
16063
|
throw new Error("Harness Usage 'totalCostUsd' must be a finite non-negative number");
|
|
16060
16064
|
}
|
|
16065
|
+
for (const field of ["totalCredits", "contextUsagePercent"]) {
|
|
16066
|
+
const candidate = value[field];
|
|
16067
|
+
if (candidate !== void 0 && (typeof candidate !== "number" || !Number.isFinite(candidate) || candidate < 0)) {
|
|
16068
|
+
throw new Error(`Harness Usage '${field}' must be a finite non-negative number`);
|
|
16069
|
+
}
|
|
16070
|
+
}
|
|
16061
16071
|
for (const field of percentFields) {
|
|
16062
16072
|
const candidate = value[field];
|
|
16063
16073
|
if (candidate !== void 0 && (typeof candidate !== "number" || !Number.isFinite(candidate) || candidate < 0 || candidate > 100)) {
|
|
@@ -14550,6 +14550,8 @@ var threadUsageSnapshotSchema = external_exports.object({
|
|
|
14550
14550
|
reasoningOutputTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
14551
14551
|
totalTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
14552
14552
|
totalCostUsd: finiteNonNegativeNumberSchema.optional(),
|
|
14553
|
+
totalCredits: finiteNonNegativeNumberSchema.optional(),
|
|
14554
|
+
contextUsagePercent: finiteNonNegativeNumberSchema.optional(),
|
|
14553
14555
|
cacheHitRatePercent: cacheHitRatePercentSchema.optional(),
|
|
14554
14556
|
contextWindowTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
14555
14557
|
contextUsedTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
@@ -15505,7 +15507,9 @@ var usageFields = /* @__PURE__ */ new Set([
|
|
|
15505
15507
|
...tokenFields,
|
|
15506
15508
|
...safeIntegerFields,
|
|
15507
15509
|
...percentFields,
|
|
15508
|
-
"totalCostUsd"
|
|
15510
|
+
"totalCostUsd",
|
|
15511
|
+
"totalCredits",
|
|
15512
|
+
"contextUsagePercent"
|
|
15509
15513
|
]);
|
|
15510
15514
|
function isRecord(value) {
|
|
15511
15515
|
return typeof value === "object" && value !== null && !Array.isArray(value);
|
|
@@ -15539,6 +15543,12 @@ function parseHostUsage(value) {
|
|
|
15539
15543
|
if (value.totalCostUsd !== void 0 && (typeof value.totalCostUsd !== "number" || !Number.isFinite(value.totalCostUsd) || value.totalCostUsd < 0)) {
|
|
15540
15544
|
throw new Error("Harness Usage 'totalCostUsd' must be a finite non-negative number");
|
|
15541
15545
|
}
|
|
15546
|
+
for (const field of ["totalCredits", "contextUsagePercent"]) {
|
|
15547
|
+
const candidate = value[field];
|
|
15548
|
+
if (candidate !== void 0 && (typeof candidate !== "number" || !Number.isFinite(candidate) || candidate < 0)) {
|
|
15549
|
+
throw new Error(`Harness Usage '${field}' must be a finite non-negative number`);
|
|
15550
|
+
}
|
|
15551
|
+
}
|
|
15542
15552
|
for (const field of percentFields) {
|
|
15543
15553
|
const candidate = value[field];
|
|
15544
15554
|
if (candidate !== void 0 && (typeof candidate !== "number" || !Number.isFinite(candidate) || candidate < 0 || candidate > 100)) {
|
|
@@ -15069,6 +15069,8 @@ var threadUsageSnapshotSchema = external_exports.object({
|
|
|
15069
15069
|
reasoningOutputTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
15070
15070
|
totalTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
15071
15071
|
totalCostUsd: finiteNonNegativeNumberSchema.optional(),
|
|
15072
|
+
totalCredits: finiteNonNegativeNumberSchema.optional(),
|
|
15073
|
+
contextUsagePercent: finiteNonNegativeNumberSchema.optional(),
|
|
15072
15074
|
cacheHitRatePercent: cacheHitRatePercentSchema.optional(),
|
|
15073
15075
|
contextWindowTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
15074
15076
|
contextUsedTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
@@ -16016,7 +16018,9 @@ var usageFields = /* @__PURE__ */ new Set([
|
|
|
16016
16018
|
...tokenFields,
|
|
16017
16019
|
...safeIntegerFields,
|
|
16018
16020
|
...percentFields,
|
|
16019
|
-
"totalCostUsd"
|
|
16021
|
+
"totalCostUsd",
|
|
16022
|
+
"totalCredits",
|
|
16023
|
+
"contextUsagePercent"
|
|
16020
16024
|
]);
|
|
16021
16025
|
function isRecord(value) {
|
|
16022
16026
|
return typeof value === "object" && value !== null && !Array.isArray(value);
|
|
@@ -16050,6 +16054,12 @@ function parseHostUsage(value) {
|
|
|
16050
16054
|
if (value.totalCostUsd !== void 0 && (typeof value.totalCostUsd !== "number" || !Number.isFinite(value.totalCostUsd) || value.totalCostUsd < 0)) {
|
|
16051
16055
|
throw new Error("Harness Usage 'totalCostUsd' must be a finite non-negative number");
|
|
16052
16056
|
}
|
|
16057
|
+
for (const field of ["totalCredits", "contextUsagePercent"]) {
|
|
16058
|
+
const candidate = value[field];
|
|
16059
|
+
if (candidate !== void 0 && (typeof candidate !== "number" || !Number.isFinite(candidate) || candidate < 0)) {
|
|
16060
|
+
throw new Error(`Harness Usage '${field}' must be a finite non-negative number`);
|
|
16061
|
+
}
|
|
16062
|
+
}
|
|
16053
16063
|
for (const field of percentFields) {
|
|
16054
16064
|
const candidate = value[field];
|
|
16055
16065
|
if (candidate !== void 0 && (typeof candidate !== "number" || !Number.isFinite(candidate) || candidate < 0 || candidate > 100)) {
|