1Shows files and subdirectories in tree structure for exploring project organization.
 2
 3<usage>
 4- Provide path to list (defaults to current working directory)
 5- Optional glob patterns to ignore
 6- Results displayed in tree structure
 7</usage>
 8
 9<features>
10- Hierarchical view of files and directories
11- Auto-skips hidden files/directories (starting with '.')
12- Skips common system directories like __pycache__
13- Can filter files matching specific patterns
14</features>
15
16<limitations>
17- Results limited to 1000 files
18- Large directories truncated
19- No file sizes or permissions shown
20- Cannot recursively list all directories in large projects
21</limitations>
22
23<cross_platform>
24- Hidden file detection uses Unix convention (files starting with '.')
25- Windows hidden files (with hidden attribute) not auto-skipped
26- Common Windows directories (System32, Program Files) not in default ignore
27- Path separators handled automatically (/ and \ work)
28</cross_platform>
29
30<tips>
31- Use Glob for finding files by name patterns instead of browsing
32- Use Grep for searching file contents
33- Combine with other tools for effective exploration
34</tips>