@llmist/cli 15.4.1 → 15.5.0

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
@@ -98,7 +98,7 @@ import { Command, InvalidArgumentError as InvalidArgumentError2 } from "commande
98
98
  // package.json
99
99
  var package_default = {
100
100
  name: "@llmist/cli",
101
- version: "15.4.1",
101
+ version: "15.5.0",
102
102
  description: "CLI for llmist - run LLM agents from the command line",
103
103
  type: "module",
104
104
  main: "dist/cli.js",
@@ -154,7 +154,7 @@ var package_default = {
154
154
  node: ">=22.0.0"
155
155
  },
156
156
  dependencies: {
157
- llmist: "^15.4.1",
157
+ llmist: "^15.5.0",
158
158
  "@unblessed/node": "^1.0.0-alpha.23",
159
159
  chalk: "^5.6.2",
160
160
  commander: "^12.1.0",
@@ -168,7 +168,7 @@ var package_default = {
168
168
  zod: "^4.1.12"
169
169
  },
170
170
  devDependencies: {
171
- "@llmist/testing": "^15.4.1",
171
+ "@llmist/testing": "^15.5.0",
172
172
  "@types/diff": "^8.0.0",
173
173
  "@types/js-yaml": "^4.0.9",
174
174
  "@types/marked-terminal": "^6.1.1",
@@ -1780,6 +1780,8 @@ Uses layered matching strategies (in order):
1780
1780
 
1781
1781
  For multiple edits to the same file, call this gadget multiple times.
1782
1782
  Each call provides immediate feedback, allowing you to adjust subsequent edits.`,
1783
+ maxConcurrent: 1,
1784
+ // Sequential execution to prevent race conditions
1783
1785
  schema: z2.object({
1784
1786
  filePath: z2.string().describe("Path to the file to edit (relative or absolute)"),
1785
1787
  search: z2.string().describe("The content to search for in the file"),
@@ -2036,6 +2038,8 @@ import { z as z5 } from "zod";
2036
2038
  var writeFile = createGadget5({
2037
2039
  name: "WriteFile",
2038
2040
  description: "Write content to a file. Creates parent directories if needed. Overwrites existing files. The file path must be within the current working directory or its subdirectories.",
2041
+ maxConcurrent: 1,
2042
+ // Sequential execution to prevent race conditions
2039
2043
  schema: z5.object({
2040
2044
  filePath: z5.string().describe("Path to the file to write (relative or absolute)"),
2041
2045
  content: z5.string().describe("Content to write to the file")