summaryrefslogtreecommitdiffhomepage
path: root/js/src/tool/ls.ts
blob: 5954355a34f9df7ab16b54a11913cc9c439b00b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
import { z } from "zod";
import { Tool } from "./tool";
import { App } from "../app/app";
import * as path from "path";
import * as fs from "fs";

const DESCRIPTION = `Directory listing tool that shows files and subdirectories in a tree structure, helping you explore and understand the project organization.

WHEN TO USE THIS TOOL:
- Use when you need to explore the structure of a directory
- Helpful for understanding the organization of a project
- Good first step when getting familiar with a new codebase

HOW TO USE:
- Provide a path to list (defaults to current working directory)
- Optionally specify glob patterns to ignore
- Results are displayed in a tree structure

FEATURES:
- Displays a hierarchical view of files and directories
- Automatically skips hidden files/directories (starting with '.')
- Skips common system directories like __pycache__
- Can filter out files matching specific patterns

LIMITATIONS:
- Results are limited to 1000 files
- Very large directories will be truncated
- Does not show file sizes or permissions
- Cannot recursively list all directories in a large project

TIPS:
- Use Glob tool for finding files by name patterns instead of browsing
- Use Grep tool for searching file contents
- Combine with other tools for more effective exploration`;

const MAX_LS_FILES = 1000;

interface TreeNode {
  name: string;
  path: string;
  type: "file" | "directory";
  children?: TreeNode[];
}

export const ls = Tool.define({
  name: "ls",
  description: DESCRIPTION,
  parameters: z.object({
    path: z
      .string()
      .describe(
        "The path to the directory to list (defaults to current working directory)",
      )
      .optional(),
    ignore: z
      .array(z.string())
      .describe("List of glob patterns to ignore")
      .optional(),
  }),
  async execute(params) {
    const app = await App.use();
    let searchPath = params.path || app.root;

    if (!path.isAbsolute(searchPath)) {
      searchPath = path.join(app.root, searchPath);
    }

    const stat = await fs.promises.stat(searchPath).catch(() => null);
    if (!stat) {
      return {
        metadata: {},
        output: `Path does not exist: ${searchPath}`,
      };
    }

    const { files, truncated } = await listDirectory(
      searchPath,
      params.ignore || [],
      MAX_LS_FILES,
    );
    const tree = createFileTree(files);
    let output = printTree(tree, searchPath);

    if (truncated) {
      output = `There are more than ${MAX_LS_FILES} files in the directory. Use a more specific path or use the Glob tool to find specific files. The first ${MAX_LS_FILES} files and directories are included below:\n\n${output}`;
    }

    return {
      metadata: {
        count: files.length,
        truncated,
      },
      output,
    };
  },
});

async function listDirectory(
  initialPath: string,
  ignorePatterns: string[],
  limit: number,
): Promise<{ files: string[]; truncated: boolean }> {
  const results: string[] = [];
  let truncated = false;

  async function walk(dir: string): Promise<void> {
    if (results.length >= limit) {
      truncated = true;
      return;
    }

    const entries = await fs.promises
      .readdir(dir, { withFileTypes: true })
      .catch(() => []);

    for (const entry of entries) {
      const fullPath = path.join(dir, entry.name);

      if (shouldSkip(fullPath, ignorePatterns)) {
        continue;
      }

      if (entry.isDirectory()) {
        if (fullPath !== initialPath) {
          results.push(fullPath + path.sep);
        }

        if (results.length >= limit) {
          truncated = true;
          return;
        }
        await walk(fullPath);
      } else if (entry.isFile()) {
        if (fullPath !== initialPath) {
          results.push(fullPath);
        }

        if (results.length >= limit) {
          truncated = true;
          return;
        }
      }
    }
  }

  await walk(initialPath);
  return { files: results, truncated };
}

function shouldSkip(filePath: string, ignorePatterns: string[]): boolean {
  const base = path.basename(filePath);

  if (base !== "." && base.startsWith(".")) {
    return true;
  }

  const commonIgnored = [
    "__pycache__",
    "node_modules",
    "dist",
    "build",
    "target",
    "vendor",
    "bin",
    "obj",
    ".git",
    ".idea",
    ".vscode",
    ".DS_Store",
    "*.pyc",
    "*.pyo",
    "*.pyd",
    "*.so",
    "*.dll",
    "*.exe",
  ];

  if (filePath.includes(path.join("__pycache__", ""))) {
    return true;
  }

  for (const ignored of commonIgnored) {
    if (ignored.endsWith("/")) {
      if (filePath.includes(path.join(ignored.slice(0, -1), ""))) {
        return true;
      }
    } else if (ignored.startsWith("*.")) {
      if (base.endsWith(ignored.slice(1))) {
        return true;
      }
    } else {
      if (base === ignored) {
        return true;
      }
    }
  }

  for (const pattern of ignorePatterns) {
    const glob = new Bun.Glob(pattern);
    if (glob.match(base)) {
      return true;
    }
  }

  return false;
}

function createFileTree(sortedPaths: string[]): TreeNode[] {
  const root: TreeNode[] = [];
  const pathMap: Record<string, TreeNode> = {};

  for (const filePath of sortedPaths) {
    const parts = filePath.split(path.sep).filter((part) => part !== "");
    let currentPath = "";
    let parentPath = "";

    if (parts.length === 0) {
      continue;
    }

    for (let i = 0; i < parts.length; i++) {
      const part = parts[i];

      if (currentPath === "") {
        currentPath = part;
      } else {
        currentPath = path.join(currentPath, part);
      }

      if (pathMap[currentPath]) {
        parentPath = currentPath;
        continue;
      }

      const isLastPart = i === parts.length - 1;
      const isDir = !isLastPart || filePath.endsWith(path.sep);
      const nodeType = isDir ? "directory" : "file";

      const newNode: TreeNode = {
        name: part,
        path: currentPath,
        type: nodeType,
        children: [],
      };

      pathMap[currentPath] = newNode;

      if (i > 0 && parentPath !== "") {
        if (pathMap[parentPath]) {
          pathMap[parentPath].children?.push(newNode);
        }
      } else {
        root.push(newNode);
      }

      parentPath = currentPath;
    }
  }

  return root;
}

function printTree(tree: TreeNode[], rootPath: string): string {
  let result = `- ${rootPath}${path.sep}\n`;

  for (const node of tree) {
    result = printNode(node, 1, result);
  }

  return result;
}

function printNode(node: TreeNode, level: number, result: string): string {
  const indent = "  ".repeat(level);

  let nodeName = node.name;
  if (node.type === "directory") {
    nodeName += path.sep;
  }

  result += `${indent}- ${nodeName}\n`;

  if (node.type === "directory" && node.children && node.children.length > 0) {
    for (const child of node.children) {
      result = printNode(child, level + 1, result);
    }
  }

  return result;
}