From brokk
Reads code implementation details and file structures using Brokk tools: getClassSources for classes, getMethodSources for methods, getFileContents, skimFiles, and getFileSummaries. Use to explore code efficiently.
How this skill is triggered — by the user, by Claude, or both
Slash command
/brokk:code-readingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use these Brokk MCP tools to read source code at the right level of detail.
Use these Brokk MCP tools to read source code at the right level of detail.
| Tool | Purpose |
|---|---|
getClassSources | Full source of one or more classes |
getMethodSources | Source of specific methods (by FQN) |
getFileContents | Raw file contents (any file type) |
skimFiles | Quick structural overview of files |
getFileSummaries | Class skeletons (fields + signatures) for packages/directories |
skimFiles or getFileSummaries for an overview before
diving into full source.getFileSummaries with glob patterns to survey a whole package.getMethodSources when you only need a specific method -- it is
much cheaper than getClassSources.getClassSources when you need the complete
implementation.npx claudepluginhub brokkai/brokk --plugin brokkFind symbol definitions by name regex, trace call sites with FQN, get symbol file locations, and explore class public APIs using Brokk's searchSymbols, scanUsages, getSymbolLocations, and getClassSkeletons tools.
Token-optimized structural code search using tree-sitter AST parsing. Use instead of reading full files to understand code structure, find functions, or explore a codebase efficiently.
Explores and summarizes codebase structure, architecture, and key files for onboarding or understanding unknown projects.