From act101
Agent specialized in exploring and understanding codebases using act tools
npx claudepluginhub act101-ai/act101 --plugin act101Explores 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...
SEO specialist for technical audits, on-page optimization, structured data, Core Web Vitals, and keyword mapping. Delegate site audits, meta tag reviews, schema markup, sitemaps/robots issues, and remediation plans.
Share bugs, ideas, or general feedback.
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?