explore-codebase
병렬 에이전트로 코드베이스 탐색하기
대규모 코드베이스를 이해하는 데 순차적으로 하면 너무 오래 걸립니다. 이 스킬은 병렬 탐색 하위 에이전트를 생성하여 컨텍스트를 빠르게 수집하고 구조화된 요약을 생성하는 패턴을 제공합니다.
Descargar el ZIP de la skill
Subir en Claude
Ve a Configuración → Capacidades → Skills → Subir skill
Activa y empieza a usar
Pruébalo
Usando "explore-codebase". 이 코드베이스의 인증 시스템 탐색
Resultado esperado:
- Found auth module at src/auth/
- Login flow: login -> validate -> session
- Uses JWT tokens stored in cookies
- Pattern: service-layer architecture
- Integration points: user service, database
Usando "explore-codebase". 모든 API 엔드포인트와 핸들러 찾기
Resultado esperado:
- GET /api/users -> UserController.list
- POST /api/users -> UserController.create
- PUT /api/users/:id -> UserController.update
- DELETE /api/users/:id -> UserController.delete
- All endpoints use authentication middleware
Usando "explore-codebase". 데이터베이스 스키마와 관계 매핑
Resultado esperado:
- Users table with id, email, password_hash
- Posts table links to users via user_id
- Comments table links to both users and posts
- One-to-many: User -> Posts
- Many-to-many: Posts <-> Tags through post_tags
Auditoría de seguridad
SeguroDocumentation-only skill providing patterns for using Claude Code exploration tools. No executable code, network calls, or credential access. Static findings are false positives caused by the analyzer misinterpreting documentation syntax as code patterns.
Factores de riesgo
📁 Acceso al sistema de archivos (1)
⚙️ Comandos externos (1)
Puntuación de calidad
Lo que puedes crear
프로젝트 구조 이해하기
디자인 결정을 내리기 전에 아키텍처를 파악하고 패턴을 식별합니다.
코드베이스 컨벤션 배우기
코딩 표준, 디렉토리 구조 및 기존 구현을 빠르게 이해합니다.
코드 흐름 추적하기
관련 코드 경로와 통합 지점을 찾아 기능이 어떻게 연결되는지 이해합니다.
Prueba estos prompts
Glob(pattern="**/*{keyword}*")Grep(pattern="functionName", type="ts")
Task(subagent_type="explorer", model="haiku", prompt="Query: {question}")다른 영역에 대해 여러 탐색기를 생성한 후 발견 내용을 YAML로 종합
Mejores prácticas
- 특정 영역을 깊이 파고들기 전에 먼저 광범위한 탐색으로 시작
- 한 번에 다양한 영역을 커버하기 위해 여러 탐색기를 병렬로 생성
- 발견 내용을 통합하기 위해 항상 구조화된 YAML 요약 생성
Evitar
- 병렬로 더 빠른데 순차적으로 탐색
- 힌트나 범위 없이 모호한 검색 쿼리
- 종합 단계를 건너뛰고 패턴 놓침