@llmist/cli 16.2.1 → 16.2.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/dist/cli.js CHANGED
@@ -110,7 +110,7 @@ import { Command, InvalidArgumentError as InvalidArgumentError2 } from "commande
110
110
  // package.json
111
111
  var package_default = {
112
112
  name: "@llmist/cli",
113
- version: "16.2.1",
113
+ version: "16.2.3",
114
114
  description: "CLI for llmist - run LLM agents from the command line",
115
115
  type: "module",
116
116
  main: "dist/cli.js",
@@ -167,7 +167,7 @@ var package_default = {
167
167
  node: ">=22.0.0"
168
168
  },
169
169
  dependencies: {
170
- llmist: "^16.2.1",
170
+ llmist: "^16.2.3",
171
171
  "@unblessed/node": "^1.0.0-alpha.23",
172
172
  "diff-match-patch": "^1.0.5",
173
173
  chalk: "^5.6.2",
@@ -182,7 +182,7 @@ var package_default = {
182
182
  zod: "^4.1.12"
183
183
  },
184
184
  devDependencies: {
185
- "@llmist/testing": "^16.2.1",
185
+ "@llmist/testing": "^16.2.3",
186
186
  "@types/diff": "^8.0.0",
187
187
  "@types/diff-match-patch": "^1.0.36",
188
188
  "@types/js-yaml": "^4.0.9",
@@ -442,15 +442,21 @@ var tellUser = createGadget2({
442
442
  var finish = createGadget2({
443
443
  name: "Finish",
444
444
  description: "Signal that you have completed your task. Call this when your work is done.",
445
- schema: z2.object({}),
445
+ schema: z2.object({
446
+ message: z2.string().optional().describe("A summary of what was accomplished")
447
+ }),
446
448
  examples: [
447
449
  {
448
- comment: "Signal task completion",
450
+ comment: "Signal task completion with a summary",
451
+ params: { message: "All requested changes have been applied and tests pass." }
452
+ },
453
+ {
454
+ comment: "Signal task completion without a message",
449
455
  params: {}
450
456
  }
451
457
  ],
452
- execute: () => {
453
- throw new TaskCompletionSignal("Task completed");
458
+ execute: ({ message }) => {
459
+ throw new TaskCompletionSignal(message || "Task completed");
454
460
  }
455
461
  });
456
462
  function getBuiltinGadgets(speechConfig) {