From brokk
Performs grep-like regex text search across file contents and discovers files in codebases using Brokk's searchFileContents, findFilesContaining, findFilenames, and listFiles tools.
npx claudepluginhub brokkai/brokk --plugin brokkThis skill uses the workspace's default tool permissions.
Use these Brokk MCP tools for text-based search and file discovery.
Provides cheatsheets for fd to find files, ripgrep (rg) to search code content, and fzf for interactive fuzzy selection with previews. Includes combined workflows and performance tips.
Enhances codebase searches via semantic query parsing, regex patterns, AST analysis, symbol lookups, and optimized grep/ripgrep with relevance ranking and context.
Searches codebases using ripgrep (rg) with regex patterns, file type/extension filtering, multi-line support, and .gitignore respect. Use for text patterns, code snippets, or multi-file analysis.
Share bugs, ideas, or general feedback.
Use these Brokk MCP tools for text-based search and file discovery.
| Tool | Purpose |
|---|---|
searchFileContents | Regex search across file contents (with context lines) |
findFilesContaining | Find files whose contents match a pattern |
findFilenames | Find files by name/glob pattern |
listFiles | List directory contents |
searchFileContents supports regex and optional context lines --
use it like grep.findFilesContaining returns only file paths (no content) -- use it
when you just need to know which files match.findFilenames accepts glob patterns for matching file names.listFiles is useful for exploring directory structure when you are
not sure what exists.