@llmist/cli 12.0.5 → 12.0.6

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
@@ -76,7 +76,7 @@ import { Command, InvalidArgumentError as InvalidArgumentError2 } from "commande
76
76
  // package.json
77
77
  var package_default = {
78
78
  name: "@llmist/cli",
79
- version: "12.0.5",
79
+ version: "12.0.6",
80
80
  description: "CLI for llmist - run LLM agents from the command line",
81
81
  type: "module",
82
82
  main: "dist/cli.js",
@@ -128,8 +128,11 @@ var package_default = {
128
128
  author: "Zbigniew Sobiecki <zbigniew@sobiecki.name>",
129
129
  license: "MIT",
130
130
  sideEffects: false,
131
+ engines: {
132
+ node: ">=22.0.0"
133
+ },
131
134
  dependencies: {
132
- llmist: "^12.0.5",
135
+ llmist: "^12.0.6",
133
136
  "@unblessed/node": "^1.0.0-alpha.23",
134
137
  chalk: "^5.6.2",
135
138
  commander: "^12.1.0",
@@ -143,7 +146,7 @@ var package_default = {
143
146
  zod: "^4.1.12"
144
147
  },
145
148
  devDependencies: {
146
- "@llmist/testing": "^12.0.5",
149
+ "@llmist/testing": "^12.0.6",
147
150
  "@types/diff": "^8.0.0",
148
151
  "@types/js-yaml": "^4.0.9",
149
152
  "@types/marked-terminal": "^6.1.1",
@@ -1627,7 +1630,7 @@ var listDirectory = createGadget3({
1627
1630
  description: "List files and directories in a directory with full details (names, types, sizes, modification dates). Use maxDepth to explore subdirectories recursively. The directory path must be within the current working directory or its subdirectories.",
1628
1631
  schema: z3.object({
1629
1632
  directoryPath: z3.string().default(".").describe("Path to the directory to list"),
1630
- maxDepth: z3.number().int().min(1).max(10).default(1).describe(
1633
+ maxDepth: z3.number().int().min(1).max(10).default(2).describe(
1631
1634
  "Maximum depth to recurse (1 = immediate children only, 2 = include grandchildren, etc.)"
1632
1635
  )
1633
1636
  }),