explore

explore is a command for Claude Code from litestar-org/litestar-fullstack-inertia. It costs 7 tokens per session (848 once invoked), scanned A, original, MIT.

A codebase exploration command for finding files, understanding project architecture, and tracing how features depend on one another.

In plain words
What is it for?
Use it to inspect the structure, find feature implementations, study examples, and analyze imports and dependencies.
Why use it?
It shortens the time needed to locate relevant code and understand unfamiliar project conventions.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/litestar-org/litestar-fullstack-inertia/explore
Clone the repo
git clone --depth 1 https://github.com/litestar-org/litestar-fullstack-inertia

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for explore

README.md
[![agentmods](https://agentmods.dev/badge/commands/litestar-org/litestar-fullstack-inertia/explore.svg)](https://agentmods.dev/commands/litestar-org/litestar-fullstack-inertia/explore)
Your own site
<a href="https://agentmods.dev/commands/litestar-org/litestar-fullstack-inertia/explore"><img src="https://agentmods.dev/badge/commands/litestar-org/litestar-fullstack-inertia/explore.svg" alt="Measured on agentmods" height="20"></a>
Per session 7 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 848 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00007 $0.00848
Opus 5 $0.00003 $0.00424
Sonnet 5 $0.00001 $0.00170
Haiku 4.5 $0.00001 $0.00085

Measured 2d ago against content hash 90b55bce78f1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

explore scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/commands/explore.md · 184 lines

How it starts

The opening of the file, as written. The whole thing — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Codebase Exploration

You are exploring: $ARGUMENTS

Exploration Modes

Based on the query, use the appropriate exploration mode:

Mode 1: Architecture Overview

Trigger: "architecture", "structure", "overview", "how does"

# Project structure
tree -L 2 -d app/ resources/

# Core configuration
cat app/server/core.py
cat app/config.py

Mode 2: Feature Discovery

Trigger: "where is", "find", "locate"

# Search for patterns
grep -r "{pattern}" app/ --include="*.py"
grep -r "{pattern}" resources/ --include="*.tsx"

# Find files
find app/ -name "*{keyword}*"
find resources/ -name "*{keyword}*"

Mode 3: Pattern Understanding

Trigger: "how to", "pattern", "example"

# Read existing implementations
cat app/domain/accounts/controllers.py
cat app/domain/accounts/services.py
cat resources/pages/dashboard.tsx

Mode 4: Dependency Analysis

Trigger: "uses", "depends on", "related to"

# Find imports
grep -r "from app.domain.{feature}" app/
grep -r "import.*{feature}" resources/

Quick Reference Exploration

Backend Architecture

Controllers (Litestar with Inertia):

ls app/domain/*/controllers.py
cat app/domain/accounts/controllers.py | head -100

Services (advanced-alchemy):

ls app/domain/*/services.py
cat app/domain/accounts/services.py | head -100

Models (SQLAlchemy 2.0):

ls app/db/models/
cat app/db/models/user.py

Repositories:

ls app/domain/*/repositories.py
cat app/domain/accounts/repositories.py | head -50

Frontend Architecture

Pages (React/Inertia):

ls resources/pages/
cat resources/pages/dashboard.tsx

Components (shadcn/ui):

ls resources/components/ui/
cat resources/components/ui/button.tsx

Layouts:

ls resources/layouts/
cat resources/layouts/app-layout.tsx

Configuration

App config:

cat app/config.py | head -100

Plugins:

cat app/server/plugins.py

Read the full file on GitHub · 184 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 184 lines · 7 tokens per session scan A 90b55bce78f1

Subscribe to this mod's changes

explore is a command published in the GitHub repository litestar-org/litestar-fullstack-inertia (43 stars, last pushed 5d ago), licensed MIT. It adds 7 tokens to every session and 848 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other commands, from other repositories

add-social-login

Implement OAuth social login with Google, GitHub, and Microsoft. Set up OAuth applications in provider developer consoles. Create authentication flow with authorization code grant. Implement callback handling for OAuth redirect. Store user profile information (name, email, avatar) in database. Add account linking to…

LarouexNonprofitConsulting/larouex-fullstack-plugin · 0 tokens

add-email-railway

Integrate email functionality using Nodemailer or Resend API. Set up SMTP configuration with environment variables. Create email templates using React Email for type-safe component-based emails. Implement send email API endpoint in Express. Add email validation and rate limiting. Handle delivery failures with retry…

LarouexNonprofitConsulting/larouex-fullstack-plugin · 0 tokens

add-email-railway

Integrate email functionality using Nodemailer or Resend API. Set up SMTP configuration with environment variables. Create email templates using React Email for type-safe component-based emails. Implement send email API endpoint in Express. Add email validation and rate limiting. Handle delivery failures with retry…

Ashikparvez89/larouex-fullstack-plugin · 0 tokens

add-social-login

Implement OAuth social login with Google, GitHub, and Microsoft. Set up OAuth applications in provider developer consoles. Create authentication flow with authorization code grant. Implement callback handling for OAuth redirect. Store user profile information (name, email, avatar) in database. Add account linking to…

Ashikparvez89/larouex-fullstack-plugin · 0 tokens

cancel-ralph

Cancel active Ralph Loop.

anthropics/claude-plugins-official · 4 tokens

obsidian-recap

Summarize a time period from the vault - today, week, or month.

eugeniughelbur/obsidian-second-brain · 16 tokens