🔍
Semantic Search
Search indexed content using natural language queries with Google's gemini-embedding-001 model
CLI tool for indexing and searching content using vector databases
Use Gistdex without installation:
# Using npx (recommended)
npx @ushironoko/gistdex --help
# Using pnpm dlx
pnpm dlx @ushironoko/gistdex --help
Add Gistdex to Claude Code with one command:
claude mcp add gistdex -- npx @ushironoko/gistdex --mcp
Initialize the database:
npx @ushironoko/gistdex init
Index your first content:
# Index a GitHub Gist
npx @ushironoko/gistdex index --gist https://gist.github.com/username/gist-id
# Index local files
npx @ushironoko/gistdex index --files "src/**/*.ts"
# Search indexed content
npx @ushironoko/gistdex query "how to implement authentication"
Gistdex uses semantic search to find content based on meaning rather than exact keywords. It indexes your code snippets, documentation, and text files for natural language queries.