@liberseek/boft-cli-win32-arm64 0.7.1 → 0.7.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 +49 -18
- package/app/host-runtime.mjs +1025 -671
- package/app/plugins/antigravity/plugin.mjs +18 -3
- package/app/plugins/claude-code/plugin.mjs +214 -7
- package/app/plugins/codebuddy/plugin.mjs +103 -5
- package/app/plugins/cursor-cli/plugin.mjs +152 -53
- package/app/plugins/deepseek-harness/plugin.mjs +34 -21
- package/app/plugins/enabled.json +2 -1
- package/app/plugins/grok/plugin.mjs +281 -88
- package/app/plugins/hermes/plugin.mjs +162 -63
- package/app/plugins/kimi-code/manifest.json +11 -0
- package/app/plugins/kimi-code/plugin.mjs +24259 -0
- package/app/plugins/kiro-cli/plugin.mjs +257 -65
- package/app/plugins/muse/plugin.mjs +18 -3
- package/app/plugins/omp/plugin.mjs +258 -67
- package/app/plugins/opencode/plugin.mjs +18 -3
- package/app/plugins/pi/plugin.mjs +211 -4
- package/app/plugins/qoder/plugin.mjs +285 -193
- package/app/plugins/qoder-cn/plugin.mjs +285 -193
- package/app/plugins/workbuddy/plugin.mjs +102 -5
- package/app/renderer-extension.js +1304 -468
- package/bin/boft.exe +0 -0
- package/libexec/boft-node-repl.exe +0 -0
- package/libexec/boft-shim.exe +0 -0
- package/libexec/boft-updater.exe +0 -0
- package/package.json +1 -1
|
@@ -15556,10 +15556,21 @@ var harnessCommandDescriptorSchema = external_exports.object({
|
|
|
15556
15556
|
invocation: commandInvocationSchema,
|
|
15557
15557
|
label: commandLabelSchema,
|
|
15558
15558
|
description: commandDescriptionSchema.optional(),
|
|
15559
|
-
argumentMode: external_exports.enum(["none", "text"])
|
|
15559
|
+
argumentMode: external_exports.enum(["none", "text"]),
|
|
15560
|
+
/**
|
|
15561
|
+
* Native distinction reported by the Harness. Omitted when the Harness does
|
|
15562
|
+
* not tell skills and commands apart; consumers treat that as "command".
|
|
15563
|
+
*/
|
|
15564
|
+
kind: external_exports.enum(["command", "skill"]).optional()
|
|
15560
15565
|
}).strict();
|
|
15561
15566
|
var harnessCommandCatalogSchema = external_exports.object({
|
|
15562
|
-
commands: external_exports.array(harnessCommandDescriptorSchema)
|
|
15567
|
+
commands: external_exports.array(harnessCommandDescriptorSchema),
|
|
15568
|
+
/**
|
|
15569
|
+
* `live` when the catalog includes what a native Session reports for its
|
|
15570
|
+
* workspace (custom commands, skills); `static` for Adapter built-ins only.
|
|
15571
|
+
* Omitted by Adapters; set by the Host on inspection results.
|
|
15572
|
+
*/
|
|
15573
|
+
source: external_exports.enum(["live", "static"]).optional()
|
|
15563
15574
|
}).strict().superRefine((catalog, context) => {
|
|
15564
15575
|
const ids = /* @__PURE__ */ new Set();
|
|
15565
15576
|
for (const [index, command] of catalog.commands.entries()) {
|
|
@@ -15573,7 +15584,11 @@ var harnessCommandCatalogSchema = external_exports.object({
|
|
|
15573
15584
|
ids.add(command.id);
|
|
15574
15585
|
}
|
|
15575
15586
|
});
|
|
15576
|
-
var harnessCommandsInspectParamsSchema = external_exports.object({
|
|
15587
|
+
var harnessCommandsInspectParamsSchema = external_exports.object({
|
|
15588
|
+
harnessId: harnessIdSchema,
|
|
15589
|
+
/** Workspace of a draft without a Thread, for its live catalog when known. */
|
|
15590
|
+
cwd: external_exports.string().min(1).optional()
|
|
15591
|
+
}).strict();
|
|
15577
15592
|
var threadCommandsInspectParamsSchema = external_exports.object({
|
|
15578
15593
|
threadId: hostThreadIdSchema
|
|
15579
15594
|
}).strict();
|