Skill

explore

Install
1
Install the plugin
$
npx claudepluginhub mickaelmamani/saas-toolkit --plugin saas-toolkit

Want just this skill?

Add to a custom plugin, then install with one command.

Description

Codebase exploration using specialized explore agents.

Tool Access

This skill is limited to using the following tools:

TaskReadGrepGlob
Skill Content

/explore — Codebase Exploration

Explore and understand the codebase using specialized agents for different exploration needs.

Behavior

When the user asks to explore, determine the type of exploration needed and delegate to the appropriate agent:

Codebase structure

Use the explore-codebase agent for:

  • Finding files and directories
  • Understanding project structure
  • Searching for patterns, functions, or components
  • Mapping dependencies between modules

Database schema

Use the explore-db agent for:

  • Listing tables and their schemas
  • Understanding relationships and foreign keys
  • Reviewing RLS policies
  • Inspecting database functions

Library documentation

Use the explore-docs agent for:

  • Looking up API documentation
  • Finding usage examples for libraries
  • Checking framework conventions
  • Understanding library configuration

General research

Use the websearch agent for:

  • Finding solutions to specific problems
  • Researching best practices
  • Looking up error messages
  • Comparing approaches

Process

  1. Understand the question — What does the user want to explore?
  2. Choose the right agent — Match the question to the most appropriate exploration agent.
  3. Delegate — Launch the agent with a clear, specific prompt.
  4. Synthesize — If multiple agents are needed, combine their findings into a coherent answer.

Rules

  • Use agents in parallel when exploring multiple independent things
  • Keep the scope focused — don't explore everything at once
  • Return structured, actionable findings
Stats
Stars0
Forks0
Last CommitFeb 11, 2026
Actions

Similar Skills

cache-components

Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.

138.4k