Refactor CLI tool to support streaming responses with previous response tracking and update file listing tool schema by removing unnecessary 'chroot' parameter from required fields.

This commit is contained in:
sebseb7
2025-08-11 15:54:58 +02:00
parent f6f809263c
commit 70f54684e6
4 changed files with 1124 additions and 72 deletions

View File

@@ -108,13 +108,9 @@ export default {
type: "boolean",
description: "Whether to include hidden files and directories (starting with '.'). Defaults to false.",
default: false,
},
chroot: {
type: "string",
description: "Root directory to confine all operations (chroot). All paths are resolved relative to this directory.",
},
}
},
required: ["path", "depth", "includeHidden", "chroot"],
required: ["path", "depth", "includeHidden"],
additionalProperties: false,
},
strict: true,