@llmist/cli 12.0.6 → 12.1.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 +4 -4
- package/dist/cli.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
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
|
|
79
|
+
version: "12.1.0",
|
|
80
80
|
description: "CLI for llmist - run LLM agents from the command line",
|
|
81
81
|
type: "module",
|
|
82
82
|
main: "dist/cli.js",
|
|
@@ -132,7 +132,7 @@ var package_default = {
|
|
|
132
132
|
node: ">=22.0.0"
|
|
133
133
|
},
|
|
134
134
|
dependencies: {
|
|
135
|
-
llmist: "^12.0
|
|
135
|
+
llmist: "^12.1.0",
|
|
136
136
|
"@unblessed/node": "^1.0.0-alpha.23",
|
|
137
137
|
chalk: "^5.6.2",
|
|
138
138
|
commander: "^12.1.0",
|
|
@@ -146,7 +146,7 @@ var package_default = {
|
|
|
146
146
|
zod: "^4.1.12"
|
|
147
147
|
},
|
|
148
148
|
devDependencies: {
|
|
149
|
-
"@llmist/testing": "^12.0
|
|
149
|
+
"@llmist/testing": "^12.1.0",
|
|
150
150
|
"@types/diff": "^8.0.0",
|
|
151
151
|
"@types/js-yaml": "^4.0.9",
|
|
152
152
|
"@types/marked-terminal": "^6.1.1",
|
|
@@ -1630,7 +1630,7 @@ var listDirectory = createGadget3({
|
|
|
1630
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.",
|
|
1631
1631
|
schema: z3.object({
|
|
1632
1632
|
directoryPath: z3.string().default(".").describe("Path to the directory to list"),
|
|
1633
|
-
maxDepth: z3.number().int().min(1).max(10).default(
|
|
1633
|
+
maxDepth: z3.number().int().min(1).max(10).default(3).describe(
|
|
1634
1634
|
"Maximum depth to recurse (1 = immediate children only, 2 = include grandchildren, etc.)"
|
|
1635
1635
|
)
|
|
1636
1636
|
}),
|