@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.
@@ -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({ harnessId: harnessIdSchema }).strict();
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();