원클릭으로
explore
Use when entering an unfamiliar codebase area, starting major work, or needing to understand architecture before making changes
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when entering an unfamiliar codebase area, starting major work, or needing to understand architecture before making changes
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when reviewing a spec or task graph for completeness before implementation
Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, logging in, or automating browser actions
Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, logging in, or automating browser actions
Use when decomposing a spec, design, or feature description into a task dependency graph with self-evaluating acceptance criteria
Use when doing creative product, feature, component, functionality, or behavior design work
Use when infrastructure or features are built but before declaring done -- verifies work is wired into the system and actively used
| name | explore |
| description | Use when entering an unfamiliar codebase area, starting major work, or needing to understand architecture before making changes |
READ-ONLY exploration at three depths. Never modifies code.
| Depth | Time | What It Does |
|---|---|---|
| Quick | ~1 min | File tree + code structure overview |
| Deep | ~5 min | Comprehensive analysis + pattern documentation |
| Architecture | ~3 min | Layer detection + call graph + dependency mapping |
Fast orientation. Use when you need to know what's where.
Glob for project layoutGrep for key patterns (main, init, handlers, routes)Grep for keywordsThorough understanding. Use before major work or in unfamiliar code.
docs/ or summarize for the userSystem boundaries and dependencies. Use before refactoring or design work.
Identify layers:
Map call graph — what calls what across files
Detect issues:
Output structure:
layers:
entry: [cmd/main.go, internal/api/router.go]
middle: [internal/service/, internal/domain/]
leaf: [internal/util/, pkg/]
call_graph:
hot_paths: [request → validate → authorize → execute]
circular_deps: []
| Situation | Depth |
|---|---|
| "Where is X?" | Quick |
| "How does X work?" | Deep |
| "How is the system organized?" | Architecture |
| Starting new feature | Deep (focused on relevant area) |
| Preparing for refactor | Architecture |
docs/ for documentation, inline for quick answers