Stats
Actions
Tags
From team-shinchan
Explores codebases deeply to find code, patterns, or references using a two-stage fast and deep search process with sub-agents.
How this skill is triggered — by the user, by Claude, or both
Slash command
/team-shinchan:deepsearchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```
If args is empty or only whitespace:
Ask user: "What would you like to search for?"
STOP and wait for user response
If args length > 2000 characters:
Truncate to 2000 characters
Warn user: "Request was truncated to 2000 characters"
Do not read further. Execute these Tasks NOW:
// Step 1: Fast Search (Shiro)
Task(
subagent_type="team-shinchan:shiro",
model="haiku",
prompt=`/team-shinchan:deepsearch has been invoked.
## Codebase Exploration Request
Perform fast search:
- File name pattern matching
- Keyword search
- Directory structure analysis
Search target: ${args || '(What to search)'}
`
)
// Step 2: Deep Search if needed (Masumi)
// Call additionally if Shiro results are insufficient
Task(
subagent_type="team-shinchan:masumi",
model="sonnet",
prompt=`Perform deep analysis based on Shiro search results:
- Code content analysis
- Related documentation search
- Dependency tracking
Search target: ${args || '(What to search)'}
`
)
STOP HERE. The above Tasks handle everything.
npx claudepluginhub seokan-jeong/team-shinchan --plugin team-shinchanGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.