I imagine this is a really useful tool for a codebase built on pure functions, but it'll get very confused by legacy code that hasn't been written without that goal.
## Codebase Analysis
**Before analyzing unfamiliar codebases**, use skim for efficient context:
```bash
# Get architectural overview (60% reduction)
skim src/ --mode structure
# Get API surface (88% reduction)
skim src/ --mode signatures
# Get type system (91% reduction)
skim src/ --mode types
When to use:
- First time exploring a repository
- Understanding service architecture
- Mapping API boundaries
- Analyzing type relationships
Install: npm install -g rskim or cargo install rskim
dean0x•1h ago