nowfound

Alternatives

Products that do what SIFS does

Extremely fast hybrid code search for agents.

  1. 1SC

    Hey HN! We (Stephan and Thomas) recently open-sourced Semble. We kept running into the same problem while using Claude Code on large codebases: when the agent can't find something directly, it falls back to grep, reading full files or launching subagents. This uses a lot of tokens, and often still misses the relevant code. There are existing tools for this, but they were either too slow to index on demand, needed API keys, or had poor retrieval quality. Semble is our solution for this. It combines static Model2Vec embeddings (using our latest static model: potion-code-16M) with BM25, fused…

    May 2026 · github.com

  2. 2MS

    Author here! Some context: I published this 48 hours ago and it was auto-listed on MCPMarket (the MCP tools directory). Got 700+ organic downloads with zero marketing—developers were actively searching for exactly this solution. The "Git Accelerator" optimization story: Initially used a file walker that took 6.6s on Chromium. Profiling showed 90% was filesystem I&#x2F;O. The fix: git ls-files returns 480k paths in ~200ms. Added smart heuristics for untracked files (only scan dirs <50k files), bringing total to 0.46s. Why this matters: Agents can't wait 10 seconds for search. Sub-500ms makes…

    Jan 2026 · github.com

  3. 3

    Local semantic search for AI agents

    Aug 2026 · tryreference.com

  4. 4SG

    Sep 2025 · github.com

  5. 5SL
  6. 6CA

    Codebased combines Tree Sitter for code awareness (find functions, data structures, constants, etc. not just lines of code), full-text search using SQLite, and semantic search using OpenAI embeddings + FAISS. Despite being implemented in Python, supporting semantic search, making multiple API calls for embedding and re-ranking, it is faster than ripgrep for runng searches against the Linux kernel (takes ~1 second vs. ~2 seconds, obviously depends on system, temperature, time of day, tidal forces, etc.) Up next: - A Perplexity-like agent for interpreting results, making multiple follow-up…

    2024 · codebased.sh

  7. 7
    Keen Code125

    A context-efficient CLI coding agent built by agents

    Jun 2026 · mochow13.github.io

  8. 8
    Greplica186

    Self updating wiki for coding agents

    Jul 2026 · github.com

  9. 9

    Blazingly fast semantic search for your codebase

    2024

  10. 10CT

    I've been building a tool that changes how LLM coding agents explore codebases, and I wanted to share it along with some early observations. Typically claude code globs directories, greps for patterns, and reads files with minimal guidance. It works in kind of the same way you'd learn to navigate a city by walking every street. You'll eventually build a mental map, but claude never does - at least not any that persists across different contexts. The Recursive Language Models paper from Zhang, Kraska, and Khattab at MIT CSAIL introduced a cleaner framing. Instead of cramming everything into…

    Feb 2026 · github.com

  11. 11
    Tantivy68

    A full-text, horse-speed search engine library in Rust

    2022

  12. 12

    13,000+ MCP servers, skills & plugins for AI coding agents

    Jul 2026 · codexmarketplaces.com

  13. 13CS

    Coding agents don't have long-term memory. But you do have months of full-fidelity agent transcripts stored on your machine. A simple solution that goes a long way: ingest those transcripts and logs into a structured SQLite database, then search them with ranked text match. Everything is fully local and doesn't require anything fancy like a graph database or hosted memory service. This is the idea behind ctx, a Rust CLI that handles the ingestion and searching. We give our agents a skill that tells them to reference past sessions before working in an area. Usually we do this through an…

    Jul 2026 · github.com

  14. 14AS
  15. 15SF

    Hey HN! We've just open-sourced Semble, a fast and accurate code search library built for agents. We're also releasing potion-code-16M, a small code-specialized static embedding model that powers it. Most embedding-based code search methods are either too slow to index on demand or need GPU infrastructure, while grep-style retrieval methods often cannot find the relevant content. Semble combines the speed and quality benefits of both, so agents waste less time and fewer tokens exploring. Main features: - Fast: indexes a full codebase in ~250 ms and answers queries in ~1.5 ms, all on CPU…

    Apr 2026 · github.com

  16. 16CA

    2022 · codesearch.ai

  17. 17AC

    We built a reference MCP server that lets your editor&#x2F;agent learn a codebase directly from source (signatures, types, AST, comments). Docs are optional. The reference impl runs on our open-source project’s codebase. Why we built it Docs are important, but they add another abstraction layer between your code and your users. Keeping them at the right quality is hard (especially at a startup), and LLM-generated docs are often mediocre until you invest real polish. Exposing code to the model in a structured way keeps answers grounded and current, and it’s always available. You can even…

    Sep 2025 · github.com

  18. 18PL

    How it works: - Storage uses one SQLite database file, plus a local LanceDB index of vectors. No need for a server, cloud services, or any API keys. - Retrieval is a hybrid approach using BM25 (rank-bm25) and vector-based search (sentence-transformers) combined with a co-occurrence graph of entities, using reciprocal rank fusion. The idea is to find the right memory, not the closest one. - It plugs into the agent's lifecycle via MCP: before the agent responds, relevant memories are added to its input; after each turn, decisions and new learnings are automatically recorded. No need to…

    Jun 2026 · github.com

  19. 19CA

    I built this because I was tired of creating pull requests in 20 repositories just to change a single line of workflow job version. With Infra as AI, just mention the change. Agents work on all repos in parallel, read the docs, make a bunch of PRs and fill in the description. You can see the demo of the actual dashboard in the landing. Let me know your thoughts :) It means a lot to me!

    Sep 2025 · infrastructureas.ai

  20. 20

    ultrathink, but fast.

    Jan 2026

  21. 21

    Hey HN! We built https:&#x2F;&#x2F;keenable.ai, a different web search API for AI agents. Keenable searches our own 100B+ page index. We are focused on low cost and latency (p95 <250ms from us-east). We don’t believe in benchmaxxing, so we open-sourced our internal benchmarking suite, NEEDLE (available at https:&#x2F;&#x2F;keenableai.github.io&#x2F;needle): a live benchmark that compares Keenable with other search APIs on fresh agent-like queries. I spent seven years at Amazon as a scientist working on web grounding for Alexa&#x2F;AGI, and my co-founder Andrey previously led search at…

    12d ago · keenable.ai

  22. 22CB

    I built a small benchmark to test CLI coding agents on blind bug detection. A challenger agent injects bugs and writes ground truth (`bugs.json`). A different reviewer agent audits the repo without seeing ground truth, and an LLM matcher scores bug-to-finding assignments. Current run: 50 repos, 150 challenges, 450 reviews, 2,603 injected bugs. Weighted detection: Claude 58.05%, Codex 37.84%, Gemini 27.81%. LLM-judge benchmarks are easy to get wrong, so I’d really appreciate critical feedback on benchmark fairness, scoring&#x2F;matching methodology, and obvious failure modes I’m missing. Full…

    Feb 2026 · github.com

  23. 23CI

    Code Index MCP is an MCP server that indexes codebases and provides search capabilities to LLMs. Supports 50+ file types with automatic indexing, regex&#x2F;fuzzy search, code analysis, and real-time file monitoring. LLMs can search your entire project, find files with glob patterns, analyze code structure (functions, classes, imports), and get automatic updates when files change. Eliminates the need to manually copy files or explain project structure to overcome context limits. Built with Python using the Model Context Protocol. Uses pluggable search backends…

    2025 · github.com

  24. 24

    Your AI has your code's text, never its map. Fix that.

    Jun 2026 · luuuc.github.io

Ranked by how close each launch is in meaning, then by votes. Refine with a description →