Semantic search for code in the current repository
Find code by conceptual meaning rather than exact keywords. Use when you need to locate authentication, error handling, or other patterns across your repository.
/plugin marketplace add Tylerbryy/ospack/plugin install ospack@ospackUse ospack to find code semantically by concept, not just keywords.
ospack search "<query>" --root $(pwd)
# Find authentication logic
ospack search "user authentication" --root $(pwd)
# Find error handling patterns
ospack search "error handling middleware" --root $(pwd)
# Find database queries
ospack search "database connection pooling" --root $(pwd)
--limit, -l: Max results to return (default: 10)--root: Repository root directoryUse this for quick semantic searches when you need to find: