@liberseek/boft-cli-win32-arm64 0.6.1 → 0.6.3
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 +516 -200
- package/app/plugins/antigravity/plugin.mjs +24 -3
- package/app/plugins/claude-code/plugin.mjs +546 -51
- package/app/plugins/deepseek-harness/plugin.mjs +29 -3
- package/app/plugins/enabled.json +4 -1
- package/app/plugins/grok/plugin.mjs +1992 -1602
- 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 +29 -3
- package/app/plugins/opencode/plugin.mjs +29 -3
- package/app/plugins/pi/plugin.mjs +29 -3
- package/app/renderer-extension.js +571 -153
- 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
|
@@ -14554,6 +14554,8 @@ var threadUsageSnapshotSchema = external_exports.object({
|
|
|
14554
14554
|
reasoningOutputTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
14555
14555
|
totalTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
14556
14556
|
totalCostUsd: finiteNonNegativeNumberSchema.optional(),
|
|
14557
|
+
totalCredits: finiteNonNegativeNumberSchema.optional(),
|
|
14558
|
+
contextUsagePercent: finiteNonNegativeNumberSchema.optional(),
|
|
14557
14559
|
cacheHitRatePercent: cacheHitRatePercentSchema.optional(),
|
|
14558
14560
|
contextWindowTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
14559
14561
|
contextUsedTokens: nonNegativeSafeIntegerSchema.optional(),
|
|
@@ -14610,12 +14612,28 @@ var accountResetCreditsSchema = external_exports.object({
|
|
|
14610
14612
|
var accountCreditsSnapshotSchema = external_exports.object({
|
|
14611
14613
|
/** Native label when the primary limit is scoped to a model or product group. */
|
|
14612
14614
|
label: external_exports.string().min(1).optional(),
|
|
14613
|
-
usedPercent: usagePercentSchema,
|
|
14615
|
+
usedPercent: usagePercentSchema.optional(),
|
|
14616
|
+
remaining: external_exports.number().finite().optional(),
|
|
14617
|
+
unit: external_exports.string().trim().min(1).max(32).optional(),
|
|
14614
14618
|
resetsAt: external_exports.string().min(1).optional(),
|
|
14615
14619
|
periodType: external_exports.enum(["weekly", "monthly", "five_hour", "seven_day", "unknown"]),
|
|
14616
14620
|
productUsage: external_exports.array(accountCreditsProductUsageSchema).min(1).optional(),
|
|
14617
14621
|
resetCredits: accountResetCreditsSchema.optional()
|
|
14618
|
-
}).strict()
|
|
14622
|
+
}).strict().superRefine((credits, context) => {
|
|
14623
|
+
if (credits.usedPercent === void 0 && credits.remaining === void 0) {
|
|
14624
|
+
context.addIssue({
|
|
14625
|
+
code: "custom",
|
|
14626
|
+
message: "Account credits must include usedPercent or remaining"
|
|
14627
|
+
});
|
|
14628
|
+
}
|
|
14629
|
+
if (credits.remaining !== void 0 && !credits.unit) {
|
|
14630
|
+
context.addIssue({
|
|
14631
|
+
code: "custom",
|
|
14632
|
+
message: "Account remaining credits require a unit",
|
|
14633
|
+
path: ["unit"]
|
|
14634
|
+
});
|
|
14635
|
+
}
|
|
14636
|
+
});
|
|
14619
14637
|
var threadUsageInspectionParamsSchema = external_exports.object({
|
|
14620
14638
|
threadId: hostThreadIdSchema,
|
|
14621
14639
|
refresh: external_exports.literal("exact").optional()
|
|
@@ -15493,7 +15511,9 @@ var usageFields = /* @__PURE__ */ new Set([
|
|
|
15493
15511
|
...tokenFields,
|
|
15494
15512
|
...safeIntegerFields,
|
|
15495
15513
|
...percentFields,
|
|
15496
|
-
"totalCostUsd"
|
|
15514
|
+
"totalCostUsd",
|
|
15515
|
+
"totalCredits",
|
|
15516
|
+
"contextUsagePercent"
|
|
15497
15517
|
]);
|
|
15498
15518
|
|
|
15499
15519
|
// ../../harness-discovery/dist/environment.js
|
|
@@ -19161,6 +19181,7 @@ function historySubagentState(history, id) {
|
|
|
19161
19181
|
return void 0;
|
|
19162
19182
|
}
|
|
19163
19183
|
var AntigravityAdapter = class {
|
|
19184
|
+
commandCatalog = ANTIGRAVITY_COMMAND_CATALOG;
|
|
19164
19185
|
harnessId = antigravityHarnessId;
|
|
19165
19186
|
subagents = {
|
|
19166
19187
|
readSnapshot: async (input) => {
|