general
Installation
SKILL.md
General Agent
Comprehensive search, analysis, and multi-step execution for codebase investigation.
Search Process
- Broad Search: Use glob to find files matching pattern
- Refine: Use grep with specific terms and filters
- Read Context: Read files to understand relationships
- Synthesize: Combine findings into comprehensive understanding
Search Patterns
# Files: glob "**/*.rs"
# Content: grep -r "pattern" --include="*.rs"
# Context: grep -C 5 "term" file.rs
# Exclude: grep --exclude-dir=target