Cursor Skill

parallel-exploring

Explore a large codebase in parallel by launching multiple explore subagents that each investigate a different area simultaneously. Use when onboarding onto a new project, understanding architecture, or investigating a cross-cutting concern.

LLM Mart · 0 points · 25 views 1 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download spencerpauly-awesome-cursor-skills-resources_parallel-exploring-99cd265.zip · 1 KB
Part of spencerpauly/awesome-cursor-skills — 65 skills

Install

skills CLI npx skills add https://github.com/spencerpauly/awesome-cursor-skills/tree/main/resources/parallel-exploring
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install spencerpauly-awesome-cursor-skills@llmmart
Git git clone https://github.com/spencerpauly/awesome-cursor-skills.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole spencerpauly/awesome-cursor-skills collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

Parallel Explore

Use this skill when you need to understand a large or unfamiliar codebase quickly — onboarding onto a new project, investigating how a feature works across layers, or mapping the architecture.

How It Works

Cursor's explore subagent is a fast, read-only agent optimized for searching and reading code. You can launch multiple explore agents in a single message and they run concurrently, each investigating a different area.

Steps

  1. Identify the areas to explore — break the codebase into logical zones. For a typical full-stack app:

    • Frontend: components, pages, routing, state management
    • Backend: API routes, database models, middleware, auth
    • Infrastructure: CI/CD, Docker, deployment config
    • Shared: types, utilities, constants
  2. Launch parallel explore agents — use the Task tool with subagent_type: "explore" for each area. Launch them all in one message:

    Task 1: "Explore the frontend — find the main pages, routing setup, state management approach,
             and UI component library. Check src/app/, src/components/, src/pages/. Report the
             framework, router, styling approach, and key components."
    
    Task 2: "Explore the backend — find the API routes, database setup, ORM, auth middleware,
             and data models. Check src/server/, src/api/, lib/, prisma/. Report the framework,
             database, auth strategy, and key endpoints."
    
    Task 3: "Explore the infrastructure — find CI/CD config, Docker setup, deployment targets,
             and environment variable management. Check .github/, docker*, *.config.*, .env*.
             Report the deploy target, CI provider, and any IaC."
    
  3. Synthesize the results — when all agents return, combine their findings into a coherent picture:

    • Tech stack summary (frontend, backend, database, infra)
    • Architecture diagram (describe the data flow)
    • Key files and entry points
    • Potential concerns or tech debt

Other Use Cases

  • Cross-cutting investigation: "Where is user authentication checked?" — launch agents to search the frontend (route guards), backend (middleware), and database (session storage) simultaneously.
  • Dependency audit: launch agents to check different parts of the dependency tree for outdated packages, security issues, and unused imports.
  • Migration planning: have agents simultaneously assess the frontend, backend, and tests to estimate the scope of a framework migration.

Notes

  • Explore agents are read-only — they can't modify files.
  • Use thoroughness: "very thorough" in the prompt for comprehensive analysis.
  • Each agent has its own context window, so they can each read many files without running out of space.
  • For a single focused question, just use Grep or SemanticSearch directly — subagents are for broad exploration.
Files (awesome-cursor-skills)
  • SKILL.md 3.1 KB
    ---
    name: parallel-exploring
    description: Explore a large codebase in parallel by launching multiple explore subagents that each investigate a different area simultaneously. Use when onboarding onto a new project, understanding architecture, or investigating a cross-cutting concern.
    ---
    
    # Parallel Explore
    
    Use this skill when you need to understand a large or unfamiliar codebase quickly — onboarding onto a new project, investigating how a feature works across layers, or mapping the architecture.
    
    ## How It Works
    
    Cursor's `explore` subagent is a fast, read-only agent optimized for searching and reading code. You can launch multiple explore agents in a single message and they run concurrently, each investigating a different area.
    
    ## Steps
    
    1. **Identify the areas to explore** — break the codebase into logical zones. For a typical full-stack app:
       - Frontend: components, pages, routing, state management
       - Backend: API routes, database models, middleware, auth
       - Infrastructure: CI/CD, Docker, deployment config
       - Shared: types, utilities, constants
    
    2. **Launch parallel explore agents** — use the Task tool with `subagent_type: "explore"` for each area. Launch them all in one message:
    
       ```
       Task 1: "Explore the frontend — find the main pages, routing setup, state management approach,
                and UI component library. Check src/app/, src/components/, src/pages/. Report the
                framework, router, styling approach, and key components."
    
       Task 2: "Explore the backend — find the API routes, database setup, ORM, auth middleware,
                and data models. Check src/server/, src/api/, lib/, prisma/. Report the framework,
                database, auth strategy, and key endpoints."
    
       Task 3: "Explore the infrastructure — find CI/CD config, Docker setup, deployment targets,
                and environment variable management. Check .github/, docker*, *.config.*, .env*.
                Report the deploy target, CI provider, and any IaC."
       ```
    
    3. **Synthesize the results** — when all agents return, combine their findings into a coherent picture:
       - Tech stack summary (frontend, backend, database, infra)
       - Architecture diagram (describe the data flow)
       - Key files and entry points
       - Potential concerns or tech debt
    
    ## Other Use Cases
    
    - **Cross-cutting investigation**: "Where is user authentication checked?" — launch agents to search the frontend (route guards), backend (middleware), and database (session storage) simultaneously.
    - **Dependency audit**: launch agents to check different parts of the dependency tree for outdated packages, security issues, and unused imports.
    - **Migration planning**: have agents simultaneously assess the frontend, backend, and tests to estimate the scope of a framework migration.
    
    ## Notes
    
    - Explore agents are read-only — they can't modify files.
    - Use `thoroughness: "very thorough"` in the prompt for comprehensive analysis.
    - Each agent has its own context window, so they can each read many files without running out of space.
    - For a single focused question, just use Grep or SemanticSearch directly — subagents are for broad exploration.
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related