Codebase exploration and understanding. Use when the user asks: - "how does X work?", "where is X?", "find X", "understand X" - "what files handle X?", "show me the X implementation" - "navigate to X", "explore the codebase" - any question about code structure, architecture, or implementation details
Delegates to the Explore agent for fast, read-only investigation of the codebase.
Claude frontmatter does not enforce a fork or tool restriction in standalone
Codex. Keep this workflow read-only yourself, or use spawn_agent with an
explore agent and a read-only prompt. Gather current state by explicitly
running pwd, basename "$PWD", ls package.json Cargo.toml go.mod pyproject.toml, and git rev-parse --show-toplevel; the !command lines below
are Claude interpolation only.
Codex does not receive TLDR from this package. In broad mode use rg --files,
rg -n exact searches, direct import searches, and focused file reads. In
upward-zoom mode search the symbol definition and all call sites with rg -n,
then trace imports and callers one layer up. Never claim a TLDR MCP ran.
pwd 2>/dev/nullbasename "$(pwd)" 2>/dev/nullls package.json Cargo.toml go.mod pyproject.toml 2>/dev/null || echo "unknown"git rev-parse --show-toplevel 2>/dev/null || echo "not a git repo"Use when the user is asking "how does X work" / "where is X" / "what handles Y" — finding code without a known starting point.
tldr semantic or Glob; in standalone Codex use the native searches abovetldr impact; in standalone Codex trace callers and imports with rgUse when the user is staring at a known function or module and needs to know how it fits — triggers like "zoom out", "bigger picture", "where does this fit", onboarding unfamiliar code.
Follow ../context-doc/DOMAIN-AWARENESS.md — read CONTEXT.md and any relevant ADRs first if they exist.
Identify the symbol or file the user is asking about.
In Claude, use TLDR for the structural answer:
tldr context <symbol> --depth 3 --project .
tldr impact <symbol> --project .
Synthesize a map: list immediate callers, the modules they live in, and where this area sits in the system. Use CONTEXT.md vocabulary when naming concepts.
Stop at one layer up. The user can ask for another zoom-out if they need it.
Upward-zoom output shape:
{Symbol/file in question}
↑ called by: {module A}, {module B}
↓ depends on: {module C}, {module D}
Where this fits:
{1–2 sentence narrative using CONTEXT.md terms}
Related ADRs:
- ADR-NNNN ({title}) — relevant because…
The point is orientation, not exhaustive coverage.
Return a concise summary:
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer