Toru-claude-agents scout

Explore codebase or research a question. Delegates to Scout agent for fast, thorough exploration.

install
source · Clone the upstream repo
git clone https://github.com/ToruAI/toru-claude-agents
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ToruAI/toru-claude-agents "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/scout" ~/.claude/skills/toruai-toru-claude-agents-scout && rm -rf "$T"
manifest: skills/scout/SKILL.md
source content

Scout - Quick Exploration

Delegate exploration tasks to the Scout agent (haiku model - fast & cheap).

Usage

/scout how does authentication work here?
/scout where is the database schema defined?
/scout what options do we have for caching?
/scout                    # will ask what to explore

Process

  1. If no question provided, ask: "What do you want to explore?"

  2. Delegate to Scout agent:

"Scout, explore: [question]

Context:
- Project: [current directory/project name]
- Relevant area: [if obvious from question]

Return:
- What you found
- How it works
- Options (if applicable)
- Unknowns or questions for Tako"
  1. Present Scout's findings to Tako

  2. Ask: "Want me to dig deeper on anything?"

When to Use

  • "How does X work in this codebase?"
  • "Where is Y implemented?"
  • "What are our options for Z?"
  • "Find all places that do X"
  • Before starting work on unfamiliar area
  • Quick research on approaches

Scout's Strengths

  • Fast (haiku model)
  • Systematic (follows code paths, checks tests, looks at git history)
  • Evidence-based (cites files and line numbers)
  • Surfaces unknowns (doesn't hide gaps)

Examples

Exploring a feature:

/scout how does the scraper handle rate limiting?

Finding implementations:

/scout where are all the API endpoints defined?

Researching options:

/scout what libraries could we use for PDF generation?

Understanding patterns:

/scout what's the error handling pattern in this codebase?