Agent
Understand HOW code works. Reads specific files (from locator results) and documents implementation details. Documentarian mode - no suggestions.
Agent
Understand HOW code works. Reads specific files (from locator results) and documents implementation details. Documentarian mode - no suggestions.
Agent
Extract insights from documentation. Given paths from locator-docs, reads and synthesizes key information.
Agent
Analyze git history to understand code evolution, trace origins of patterns, identify contributors, and extract development insights. Documentarian mode - no suggestions.
Agent
Extract code examples with context. Given file:line references from locator-patterns, reads and documents the patterns.
Agent
Fetch and analyze web content deeply. Given URLs from locator-web, retrieves and extracts relevant information.
Agent
Find WHERE files and components live in the codebase. Returns paths only - no file contents. Use for initial discovery before deep analysis.
Agent
Find WHERE documentation lives. Searches README, CLAUDE.md, docs/, and inline comments.
Agent
Find WHERE specific patterns exist in the codebase. Returns file:line references without reading full contents.
Agent
Find relevant URLs and summaries from web search. Returns URLs with descriptions - does not fetch full content.
Agent
Use this agent when you need to analyze code changes from an architectural perspective, evaluate system design decisions, or ensure that modifications align with established architectural patterns. This includes reviewing pull requests for architectural compliance, assessing the impact of new features on system…
Agent
Reviews code with an extremely high quality bar. Invoke after implementing features, modifying existing code, or creating new modules/components to ensure code meets exceptional standards for type safety, patterns, and maintainability. Loads language-specific standards (Python, TypeScript, SQL) on demand via the…
Agent
Use this agent when you need to review database migrations, data models, or any code that manipulates persistent data. This includes checking migration safety, validating data constraints, ensuring transaction boundaries are correct, and verifying that referential integrity and privacy requirements are maintained.…
Agent
Use this agent to review plans or code for design elegance: single source of truth, working with the grain of the tools, no ceremony, no indirection without depth. For plans, evaluates whether the design is the simplest, most natural solution before code is written. TDD, SOLID, and DRY are heuristics in service of…
Agent
Checks whether code follows the project's established conventions, matches codebase norms, and avoids duplicating existing utilities. Use after implementing features to verify consistency with the rest of the codebase. Context: After implementing a new feature, the user wants to ensure it follows established…
Agent
Use this agent when you need to analyze code for performance issues, optimize algorithms, identify bottlenecks, or ensure scalability. This includes reviewing database queries, memory usage, caching strategies, and overall system performance. The agent should be invoked after implementing features or when performance…