بنقرة واحدة
explore
Explore a codebase or directory to understand its structure and purpose
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Explore a codebase or directory to understand its structure and purpose
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Guided git commit workflow — review changes, draft message, stage, commit
Manage context pressure during large codebase work without losing critical state.
Create a pull request with structured summary and test plan
Interactive debugging — reproduce, isolate, trace, fix
Implement a requested code change end-to-end with scoped edits and verification.
Investigate production-like failures from symptoms, logs, and reproduction steps.
| name | explore |
| description | Explore a codebase or directory to understand its structure and purpose |
| when_to_use | When entering an unfamiliar project, directory, or module |
| required_tools | ["bash","symbol_index","imports"] |
| tags | ["exploration","understanding"] |
| activation | {"input_patterns":["(?i)(explore|what.*is.*this|show.*structure|项目结构|看看)"]} |
${ARGS}
Use CLI commands (find, git ls-files, tree when available) to map top-level structure. Count files by type. Identify the organizational pattern: flat, layered, feature-based, monorepo.
Find and read: manifest files (Cargo.toml, package.json, pyproject.toml, go.mod), README, CONTRIBUTING, architecture docs, main entry point. Map the dependency graph: what depends on what, are there layers, are there circular references.
Use grep/rg and symbol tools to find recurring patterns: error handling style, testing approach, configuration management, naming conventions. Identifying conventions early accelerates all subsequent work.
Purpose (one sentence) · Stack (language, framework, dependencies) · Structure (directory layout with role of each unit) · Entry points · Conventions · Key files (3-5 highest information-density files).