plugins/codebase-tools/skills/researching-codebase/SKILL.md
Investigates codebase before planning. Use before any non-trivial implementation task to gather context in isolation.
npx skillsauth add qte77/claude-code-utils researching-codebaseInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Query: $ARGUMENTS
Gathers codebase context in isolation before planning. Prevents search artifacts from polluting main context.
Follow ACE-FCA quality equation: Correct + Complete + Minimal noise
---
research_query: "<original question>"
timestamp: "<ISO 8601>"
files_examined: <count>
---
## Key Files
| File | Purpose | Key Lines |
|------|---------|-----------|
| `path/to/file.ext` | Brief purpose | L42-58 |
## Patterns
- **Pattern name**: Description with file reference (`path:line`)
## Constraints
- Constraint with evidence (`path:line`)
Every claim must include:
src/auth/login.ts)L42-58 or L127)Bad: "Authentication uses JWT tokens"
Good: "Authentication uses JWT tokens (src/auth/jwt.ts:L23-45, verifyToken function)"
See references/context-management.md and references/core-principles.md.
development
Analyzes industry websites for design patterns, layout, typography, and content strategies using first-principles thinking. Use when researching website design, UI patterns, or competitive design analysis.
development
Audits website usability for UX optimization, covering forms, navigation, validation, and microcopy. Use when reviewing user experience, task completion flows, or interface friction points.
development
Audits website accessibility for WCAG 2.1 AA compliance, generating findings and code fixes. Use when reviewing accessibility, keyboard navigation, screen reader compatibility, or inclusive design.
development
Writes tests following TDD (using vitest and @testing-library/react) best practices. Use when writing unit tests, integration tests, or component tests in TypeScript.