JSPM

  • Created
  • Published
  • Downloads 579
  • Score
    100M100P100Q96797F
  • License Apache-2.0

Semantic + structural code search engine that helps AI agents read the right code, not more code — combining semantic search, exact matching, and AST-aware retrieval.

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/core

Usage

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)

Documentation