Semantic Search
Search indexed content using natural language queries with Google's gemini-embedding-001 model
CLI tool for indexing and searching contents. MCP and CI Itnegrations Feature
Use Gistdex without installation:
# Using npx (recommended)
npx @ushironoko/gistdex --help
# Using pnpm dlx
pnpm dlx @ushironoko/gistdex --helpAdd Gistdex to Claude Code with one command:
claude mcp add gistdex -- npx @ushironoko/gistdex --mcpInitialize the database:
npx @ushironoko/gistdex initIndex 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.