mirror of
https://github.com/sst/opencode.git
synced 2025-08-06 14:28:09 +00:00
316 lines
7.1 KiB
Go
316 lines
7.1 KiB
Go
package tools
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/sst/opencode/internal/config"
|
|
)
|
|
|
|
type LSParams struct {
|
|
Path string `json:"path"`
|
|
Ignore []string `json:"ignore"`
|
|
}
|
|
|
|
type TreeNode struct {
|
|
Name string `json:"name"`
|
|
Path string `json:"path"`
|
|
Type string `json:"type"` // "file" or "directory"
|
|
Children []*TreeNode `json:"children,omitempty"`
|
|
}
|
|
|
|
type LSResponseMetadata struct {
|
|
NumberOfFiles int `json:"number_of_files"`
|
|
Truncated bool `json:"truncated"`
|
|
}
|
|
|
|
type lsTool struct{}
|
|
|
|
const (
|
|
LSToolName = "ls"
|
|
MaxLSFiles = 1000
|
|
lsDescription = `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`
|
|
)
|
|
|
|
func NewLsTool() BaseTool {
|
|
return &lsTool{}
|
|
}
|
|
|
|
func (l *lsTool) Info() ToolInfo {
|
|
return ToolInfo{
|
|
Name: LSToolName,
|
|
Description: lsDescription,
|
|
Parameters: map[string]any{
|
|
"path": map[string]any{
|
|
"type": "string",
|
|
"description": "The path to the directory to list (defaults to current working directory)",
|
|
},
|
|
"ignore": map[string]any{
|
|
"type": "array",
|
|
"description": "List of glob patterns to ignore",
|
|
"items": map[string]any{
|
|
"type": "string",
|
|
},
|
|
},
|
|
},
|
|
Required: []string{"path"},
|
|
}
|
|
}
|
|
|
|
func (l *lsTool) Run(ctx context.Context, call ToolCall) (ToolResponse, error) {
|
|
var params LSParams
|
|
if err := json.Unmarshal([]byte(call.Input), ¶ms); err != nil {
|
|
return NewTextErrorResponse(fmt.Sprintf("error parsing parameters: %s", err)), nil
|
|
}
|
|
|
|
searchPath := params.Path
|
|
if searchPath == "" {
|
|
searchPath = config.WorkingDirectory()
|
|
}
|
|
|
|
if !filepath.IsAbs(searchPath) {
|
|
searchPath = filepath.Join(config.WorkingDirectory(), searchPath)
|
|
}
|
|
|
|
if _, err := os.Stat(searchPath); os.IsNotExist(err) {
|
|
return NewTextErrorResponse(fmt.Sprintf("path does not exist: %s", searchPath)), nil
|
|
}
|
|
|
|
files, truncated, err := listDirectory(searchPath, params.Ignore, MaxLSFiles)
|
|
if err != nil {
|
|
return ToolResponse{}, fmt.Errorf("error listing directory: %w", err)
|
|
}
|
|
|
|
tree := createFileTree(files)
|
|
output := printTree(tree, searchPath)
|
|
|
|
if truncated {
|
|
output = fmt.Sprintf("There are more than %d files in the directory. Use a more specific path or use the Glob tool to find specific files. The first %d files and directories are included below:\n\n%s", MaxLSFiles, MaxLSFiles, output)
|
|
}
|
|
|
|
return WithResponseMetadata(
|
|
NewTextResponse(output),
|
|
LSResponseMetadata{
|
|
NumberOfFiles: len(files),
|
|
Truncated: truncated,
|
|
},
|
|
), nil
|
|
}
|
|
|
|
func listDirectory(initialPath string, ignorePatterns []string, limit int) ([]string, bool, error) {
|
|
var results []string
|
|
truncated := false
|
|
|
|
err := filepath.Walk(initialPath, func(path string, info os.FileInfo, err error) error {
|
|
if err != nil {
|
|
return nil // Skip files we don't have permission to access
|
|
}
|
|
|
|
if shouldSkip(path, ignorePatterns) {
|
|
if info.IsDir() {
|
|
return filepath.SkipDir
|
|
}
|
|
return nil
|
|
}
|
|
|
|
if path != initialPath {
|
|
if info.IsDir() {
|
|
path = path + string(filepath.Separator)
|
|
}
|
|
results = append(results, path)
|
|
}
|
|
|
|
if len(results) >= limit {
|
|
truncated = true
|
|
return filepath.SkipAll
|
|
}
|
|
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return nil, truncated, err
|
|
}
|
|
|
|
return results, truncated, nil
|
|
}
|
|
|
|
func shouldSkip(path string, ignorePatterns []string) bool {
|
|
base := filepath.Base(path)
|
|
|
|
if base != "." && strings.HasPrefix(base, ".") {
|
|
return true
|
|
}
|
|
|
|
commonIgnored := []string{
|
|
"__pycache__",
|
|
"node_modules",
|
|
"dist",
|
|
"build",
|
|
"target",
|
|
"vendor",
|
|
"bin",
|
|
"obj",
|
|
".git",
|
|
".idea",
|
|
".vscode",
|
|
".DS_Store",
|
|
"*.pyc",
|
|
"*.pyo",
|
|
"*.pyd",
|
|
"*.so",
|
|
"*.dll",
|
|
"*.exe",
|
|
}
|
|
|
|
if strings.Contains(path, filepath.Join("__pycache__", "")) {
|
|
return true
|
|
}
|
|
|
|
for _, ignored := range commonIgnored {
|
|
if strings.HasSuffix(ignored, "/") {
|
|
if strings.Contains(path, filepath.Join(ignored[:len(ignored)-1], "")) {
|
|
return true
|
|
}
|
|
} else if strings.HasPrefix(ignored, "*.") {
|
|
if strings.HasSuffix(base, ignored[1:]) {
|
|
return true
|
|
}
|
|
} else {
|
|
if base == ignored {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
|
|
for _, pattern := range ignorePatterns {
|
|
matched, err := filepath.Match(pattern, base)
|
|
if err == nil && matched {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func createFileTree(sortedPaths []string) []*TreeNode {
|
|
root := []*TreeNode{}
|
|
pathMap := make(map[string]*TreeNode)
|
|
|
|
for _, path := range sortedPaths {
|
|
parts := strings.Split(path, string(filepath.Separator))
|
|
currentPath := ""
|
|
var parentPath string
|
|
|
|
var cleanParts []string
|
|
for _, part := range parts {
|
|
if part != "" {
|
|
cleanParts = append(cleanParts, part)
|
|
}
|
|
}
|
|
parts = cleanParts
|
|
|
|
if len(parts) == 0 {
|
|
continue
|
|
}
|
|
|
|
for i, part := range parts {
|
|
if currentPath == "" {
|
|
currentPath = part
|
|
} else {
|
|
currentPath = filepath.Join(currentPath, part)
|
|
}
|
|
|
|
if _, exists := pathMap[currentPath]; exists {
|
|
parentPath = currentPath
|
|
continue
|
|
}
|
|
|
|
isLastPart := i == len(parts)-1
|
|
isDir := !isLastPart || strings.HasSuffix(path, string(filepath.Separator))
|
|
nodeType := "file"
|
|
if isDir {
|
|
nodeType = "directory"
|
|
}
|
|
newNode := &TreeNode{
|
|
Name: part,
|
|
Path: currentPath,
|
|
Type: nodeType,
|
|
Children: []*TreeNode{},
|
|
}
|
|
|
|
pathMap[currentPath] = newNode
|
|
|
|
if i > 0 && parentPath != "" {
|
|
if parent, ok := pathMap[parentPath]; ok {
|
|
parent.Children = append(parent.Children, newNode)
|
|
}
|
|
} else {
|
|
root = append(root, newNode)
|
|
}
|
|
|
|
parentPath = currentPath
|
|
}
|
|
}
|
|
|
|
return root
|
|
}
|
|
|
|
func printTree(tree []*TreeNode, rootPath string) string {
|
|
var result strings.Builder
|
|
|
|
result.WriteString(fmt.Sprintf("- %s%s\n", rootPath, string(filepath.Separator)))
|
|
|
|
for _, node := range tree {
|
|
printNode(&result, node, 1)
|
|
}
|
|
|
|
return result.String()
|
|
}
|
|
|
|
func printNode(builder *strings.Builder, node *TreeNode, level int) {
|
|
indent := strings.Repeat(" ", level)
|
|
|
|
nodeName := node.Name
|
|
if node.Type == "directory" {
|
|
nodeName += string(filepath.Separator)
|
|
}
|
|
|
|
fmt.Fprintf(builder, "%s- %s\n", indent, nodeName)
|
|
|
|
if node.Type == "directory" && len(node.Children) > 0 {
|
|
for _, child := range node.Children {
|
|
printNode(builder, child, level+1)
|
|
}
|
|
}
|
|
}
|