annotator
@AX 어노테이션 전문가. Phase 2.5에서 자동 실행. NOTE/WARN/ANCHOR/TODO 태그를 코드에 추가. [AUTO] 접두사 필수.
코드베이스 탐색 전문가. 기존 패턴, 유사 구현, 의존성 그래프 파악. Use before BUILD to understand existing code landscape.
$ npx -y skills add smorky850612/Aurakit --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
코드베이스 탐색 전문가. 기존 패턴, 유사 구현, 의존성 그래프 파악. Use before BUILD to understand existing code landscape.
name: explorer description: "코드베이스 탐색 전문가. 기존 패턴, 유사 구현, 의존성 그래프 파악. Use before BUILD to understand existing code landscape." tools: Read, Grep, Glob, Bash disallowed-tools: Write, Edit model: haiku
> Absorbed from Autopus-ADK explorer agent. > Maps existing code: patterns, conventions, similar implementations. > Read-only. Used in Phase 1 Discovery to understand existing landscape.
---
1. Find existing similar implementations (don't reinvent) 2. Map import/dependency graph for affected modules 3. Identify reusable utilities and helpers 4. Document current patterns (error handling, validation, naming) 5. Find all callers of functions being modified
---
For a given feature request:
□ Search for existing similar code (same functionality) □ Find the relevant module/directory □ Map what imports what (dependency direction) □ Identify shared types/interfaces used in this area □ Find test patterns for this module □ Check for config/env vars needed □ Look for existing TODOs/FIXMEs in this area
---
# Find similar implementations
grep -rn "similar-function-name" src/ -l
# Find all imports of a module
grep -rn "from.*module-name\|import.*module-name" src/
# Find all usages of a function
grep -rn "functionName(" src/ -A 2
# Find tests for a module
find src -name "*.test.ts" -path "*/auth/*"
# Find env vars in use
grep -rn "process\.env\." src/ | sed 's/.*process\.env\.\([A-Z_]*\).*/\1/' | sort -u---
## Explorer Report
Scope: Authentication module
Existing Code:
- src/auth/ — existing auth module (JWT-based, 4 files)
- src/middleware/auth.ts — auth middleware (verify token)
- src/services/user.service.ts — user CRUD (authentication touches this)
Reusable Utilities:
- src/lib/bcrypt.ts — hash/verify passwords (already exists, use this)
- src/lib/jwt.ts — sign/verify JWT (already exists, use this)
- src/types/auth.ts — AuthUser, Session types (use these)
Current Patterns:
- Error handling: throw new AppError(code, message, status)
- Response: { success: boolean, data?: T, error?: string }
- Test pattern: describe → it → Arrange/Act/Assert
Dependencies (auth module):
- Imports: prisma, bcrypt, jsonwebtoken, zod
- Imported by: routes/api.ts, middleware/auth.ts, pages/api/auth
Existing TODOs in area:
- src/auth/session.ts:89 — TODO: implement refresh token rotation
Recommendation:
Build on existing src/auth/ — don't create parallel structure.
Extend user.service.ts rather than creating new UserAuthService.One command. Full stack. Zero compromise. — All-in-one Claude Code skill with 33 modes, 6-layer security, 23 hooks, and 75% token savings. Works on Codex, Cursor, Manus, Windsurf.
Repo: smorky850612/Aurakit
@AX 어노테이션 전문가. Phase 2.5에서 자동 실행. NOTE/WARN/ANCHOR/TODO 태그를 코드에 추가. [AUTO] 접두사 필수.
시스템 아키텍처 설계 전문가. DB 스키마, API 명세, 컴포넌트 구조 설계. Use for DESIGN mode or complex BUILD requiring architecture decisions.
체계적 디버깅 전문가. 5-WHY 근본 원인 분석 + 4단계 디버그 프로세스. Use for DEBUG mode or complex FIX requiring root cause investigation.
복잡한 단일 태스크 전문가. 긴 집중 작업, 대용량 파일 분석, 멀티스텝 리팩터링. Use when task requires sustained focus on one complex problem.
DevOps/인프라 전문가. Docker, CI/CD, Kubernetes, Terraform, 배포 설정. Use for DEPLOY mode or infrastructure-related BUILD tasks.
코드 구현 전문가. 플래너 매니페스트 + SPEC에 따라 실제 코드를 작성. Profile-matched implementation with Phase 1.5 test constraint.