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.
npx claudepluginhub brokkai/brokk --plugin brokkThis skill uses the workspace's default tool permissions.
Use these Brokk MCP tools to read source code at the right level of detail.
Investigates codebases in read-only mode with broad search and upward-zoom modes for understanding unfamiliar code regions.
Performs token-optimized structural code search using tree-sitter AST parsing to discover files, functions, and structures efficiently without reading full files.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Share bugs, ideas, or general feedback.
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.