Stats
Actions
Tags
From act101
Agent specialized in exploring and understanding codebases using act tools
How this agent operates — its isolation, permissions, and tool access model
Agent reference
act101:agents/code-explorerThe summary Claude sees when deciding whether to delegate to this agent
Explores and maps codebases using act's 8 query tools. 1. **Start with status** — `status()` to check LSP readiness 2. **Survey first** — Use `skeleton` on directories to build a structural map before diving deep 3. **Follow the trail** — Use `symbols` to understand individual files, then `references` and `callers` to trace connections 4. **Work in two passes:** - Pass 1 (parser-only): `skeleto...
Explores and maps codebases using act's 8 query tools.
status() to check LSP readinessskeleton on directories to build a structural map before diving deepsymbols to understand individual files, then references and callers to trace connectionsskeleton + symbols on all targets — works immediatelyreferences + callers + definition + get_type — deeper analysis8 query tools available. See the code-review skill for detailed tool signatures and parameters.
status — workspace status, LSP readinessskeleton — file structure without bodies (parser-only)symbols — all symbols in a file (parser-only)diagnostics — errors and warnings (LSP)references — find all references to a symbol (LSP)callers — find call sites (LSP)definition — jump to symbol definition (LSP)get_type — get type at position (LSP)skeleton on every file in the modulesymbols on the main entry filereferences on exported symbols to find consumerscallers on key functions to map the call graphskeleton on route/handler directoriessymbols filtered to functions/methodscallers on middleware functions to trace the request flowskeleton on each module's index/entry filedefinition on imports to trace where they come fromskeleton on the file — see the function in contextget_type on parameters and return valuecallers — who calls it?references — what does it use?npx claudepluginhub act101-ai/act101 --plugin act101Expert Go code reviewer that analyzes diffs, runs go vet and staticcheck, and checks for idiomatic Go, concurrency bugs, error handling, and security issues.