ワンクリックで
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