HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Runonthespot

no profile record

Submissions

Show HN: Semantic grep with local embeddings

github.com
179 points·by Runonthespot·10개월 전·78 comments

comments

Runonthespot
·2개월 전·discuss
Done some work fixing some of these issues. Please do raise issues when you find them and I'll get them fixed! (author)
Runonthespot
·10개월 전·discuss
Sadly, not great support for Elixir from tree-sitter but it should handle them generically as text files
Runonthespot
·10개월 전·discuss
Ruby support has been added!
Runonthespot
·10개월 전·discuss
Nice catch- should be fixed in latest
Runonthespot
·10개월 전·discuss
Added Ruby, but Elixir not very well supported by tree sitter
Runonthespot
·10개월 전·discuss
coming up next.
Runonthespot
·10개월 전·discuss
interesting - can I ask you to try a ck --index . ?
Runonthespot
·10개월 전·discuss
BAAI/bge-small-en-v1.5 but considering switching this to google's latest gemmaembedding - it's fairly switchable.
Runonthespot
·10개월 전·discuss
we all know rust CLI tools are better right?
Runonthespot
·10개월 전·discuss
I'll add rust, ruby, elixir, Clojure next. It says rust as it's written in rust, sorry about that!
Runonthespot
·10개월 전·discuss
Mainly I wrote it because I noticed Claude's "by design" use of grep meant it couldn't search the code base for things it didn't already know the name of, or find "the auth section". But equally, it's well documented that e.g. Cursor's old RAG technique wasn't that great.

My idea was to make a tool that just does a quick and simple embedding on each file, and uses that to provide a semantic alternative that is much closer to grep in nature, but allows an AI tool like Claude Code to run it from the command line - with some parameters.

Arguably could be MCP, but in my experience setting up a server for a basic tool like this is a whole lot of hassle.

I'm fairly confident that this is a useful tool for CC as it started using it while I was coding it, and even when buggy, was more than willing to work around the issues for the benefit of having semantic search!
Runonthespot
·10개월 전·discuss
Fair comment- the initial thinking was to have both and in fact a hybrid mode too which fuses results so you can get chunks that match both semantically and on keyword search in one resultset. Later could add a reranker too.
Runonthespot
·10개월 전·discuss
Yes- files are hashed and checked whenever you search so index should always remain up to date. Only changed files are reindexed. You can also inspect the metadata (chunking semantics, embeddings). It’s all in the .ck sidecar
Runonthespot
·10개월 전·discuss
It supports most languages but needs a bit of tree-sitter setup to do semantic chunking. Let me know what languages you’d like added
Runonthespot
·10개월 전·discuss
To start with just tell it- but yes Claude.md works too.

“We have a new grep semantic hybrid tool installed called ck - check it out using ck --help and take it for a spin”
Runonthespot
·10개월 전·discuss
Note that it’s grep AND semantic - so Claude can start with a grep strategy and if it finds nothing can switch to semantic, and since it’s local and fast, it keeps in sync easily enough
Runonthespot
·10개월 전·discuss
bear in mind that Claude Code by default uses grep - if you watch you'll see if it's looking for something it doesn't know the name of, it flails around with different patterns. Try this tool, tell CC to take a look using ck --help and take it for a spin.

CC in my case likes it so much, it started using it to debug the repo rather than grep and suggesting its own additions
Runonthespot
·10개월 전·discuss
Agreed - Logan is a legend, this is similar but simpler - no dependency on external models (might add it)
Runonthespot
·10개월 전·discuss
help make it mature :D Add any issues