Package Exports
- @sensegrep/core
Readme
@sensegrep/core
Semantic + structural code search engine used by the sensegrep CLI, MCP server, and VS Code extension.
Install
npm install @sensegrep/coreUsage
import { index, search } from "@sensegrep/core"
await index({ rootDir: process.cwd(), mode: "incremental" })
const results = await search({ query: "authentication and token validation" })
console.log(results)