Skill
team-shinchan:deepsearch
Use when you need deep codebase exploration to find code, patterns, or references.
From team-shinchanInstall
1
Run in your terminal$
npx claudepluginhub seokan-jeong/team-shinchan --plugin team-shinchanTool Access
This skill uses the workspace's default tool permissions.
Skill Content
EXECUTE IMMEDIATELY
Step 1: Validate Input
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"
Step 2: Execute Tasks
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.
Similar Skills
Stats
Stars7
Forks0
Last CommitMar 23, 2026