一键导入
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