arthai-marketplace

/explore

Fast codebase exploration using Haiku. Use for finding files, searching code, understanding structure.

Synopsis

/explore <query>

When to use it

Quickstart

/explore how does authentication work

What you’ll see: the explore-light agent (running on Haiku, ~60x cheaper than Opus) scans the codebase and returns a concise summary with the relevant file paths — without burning your main session’s context on the search itself.

Examples

/explore find all API route handlers          # pattern search across the codebase
/explore how does authentication work         # understand a subsystem
/explore where is the database schema defined # locate a specific definition

What it does

  1. Parses your query from the skill arguments.
  2. Spawns the explore-light agent (Haiku) with your query as its prompt — the agent does the file finding, grepping, and structure summarizing in its own context.
  3. Returns the findings — file paths and a brief explanation — back into your session.

Agents spawned

Agent Model tier Role
explore-light haiku Performs the exploration and returns findings

Output & artifacts

Troubleshooting

Problem Fix
Findings are too shallow for the question /explore is optimized for speed and cost — for deep analysis, use the findings as input to a follow-up task in your main session
Query returned the wrong area of the codebase Be more specific: name the feature, directory, or symbol (“auth middleware in the API layer” beats “auth”)
You needed an edit, not a search /explore never modifies code — ask for the change directly after locating the file