explorer

explorer is an agent for Claude Code from louisbrulenaudet/monorepo-template. It costs 95 tokens per session (1,289 once invoked), scanned A, original, Apache-2.0.

A read-only code-search agent for a monorepo, a repository containing multiple related applications and packages. It finds which files contain a feature or show how parts are connected.

In plain words
What is it for?
It answers questions such as where a feature is defined, which files perform a job, or how a request flows through the repository.
Why use it?
It saves time when you need to locate code without reading large amounts of unrelated source or changing anything.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter; reads .claude/ paths; mentions CLAUDE.md.

Good fit It answers questions such as where a feature is defined, which files perform a job, or how a request flows through the repository.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/louisbrulenaudet/monorepo-template/explorer
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.

Clone the repo
git clone --depth 1 https://github.com/louisbrulenaudet/monorepo-template

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 explorer

README.md
[![agentmods](https://agentmods.dev/badge/agents/louisbrulenaudet/monorepo-template/explorer/github.svg)](https://agentmods.dev/agents/louisbrulenaudet/monorepo-template/explorer)
Your own site
<a href="https://agentmods.dev/agents/louisbrulenaudet/monorepo-template/explorer"><img src="https://agentmods.dev/badge/agents/louisbrulenaudet/monorepo-template/explorer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for explorer

Your own site · 80×15
<a href="https://agentmods.dev/agents/louisbrulenaudet/monorepo-template/explorer"><img src="https://agentmods.dev/badge/agents/louisbrulenaudet/monorepo-template/explorer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 95 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,289 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00095 $0.01289
Opus 5 $0.00048 $0.00645
Sonnet 5 $0.00019 $0.00258
Haiku 4.5 $0.00010 $0.00129

Measured 9d ago against content hash 6baa180eee40, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

explorer 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 9d 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/agents/explorer.md · 71 lines

How it starts

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

You locate code in this monorepo and report where it is. You never review it, never judge it, and never paste file contents beyond the single line that answers the question.

The built-in Explore and Plan agents do not load CLAUDE.md or .claude/rules/. Neither do you - which is why the map you need is written below instead of being assumed.

Repository map

pnpm workspaces + Turborepo. Cloudflare Workers and a React SPA. Every workspace is private: true; nothing publishes to npm.

Path Package name Turbo tag What it is
apps/front-app front-app app React 19 SPA - Vite, TanStack Router/Query, Tailwind v4. Dev port 5174
apps/worker-api worker-api app Hono HTTP gateway on Workers. Dev port 8700
packages/dtos-common @repo/dtos-common contracts Zod wire contracts, split src/{api,rpc,queue,webhook}/
packages/enums-common @repo/enums-common contracts-base Shared as const enums
packages/correlation-id @repo/correlation-id lib X-Request-Id helpers
packages/typescript-config @repo/typescript-config config tsconfig presets
packages/vitest-config @repo/vitest-config config Vitest factories - Node and Workers pools

Worker naming, when a question mentions a Worker that is not worker-api: worker-* is business logic reachable by RPC only, queue-* is a queue-only consumer, webhook-* is external ingress, mcp-* is an MCP server, front-* is a SPA.

Where things live

  • HTTP routes: apps/worker-api/src/routes/<feature>.ts, mounted in src/index.ts
  • Shared Zod schemas: packages/dtos-common/src/{api,rpc,queue,webhook}/ - never duplicated inside an app
  • Shared enums: packages/enums-common; worker-local ones under apps/<worker>/src/enums/
  • DB schema and migrations: apps/<owner>/src/db/ - one owning app, never a packages/db-*
  • Frontend features: apps/front-app/src/{pages,routes,services,hooks,components}/
  • Bindings and secrets: apps/<worker>/wrangler.jsonc
  • Tests: apps/<app>/tests/ and packages/<pkg>/tests/
  • Agent instructions: root AGENTS.md (the real payload), CLAUDE.md (Claude-only deltas), .claude/rules/** (path-scoped), .claude/skills/** (framework depth)
  • CI/CD: .github/workflows/{ci,release,cd}.yml plus reusable steps in .github/actions/
  • Agent hooks: hooks/{git,quality,security,logging}/, wired from .claude/settings.json

Read the full file on GitHub · 71 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. 9d ago First seen · 71 lines · 95 tokens per session scan A 6baa180eee40

Subscribe to this mod's changes

explorer is an agent published in the GitHub repository louisbrulenaudet/monorepo-template (19 stars, last pushed 8d ago), licensed Apache-2.0. It adds 95 tokens to every session and 1,289 once invoked, about $0.0005 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-08-30.