Add jevsearch - #384
Closed
kylemclaren wants to merge 1 commit into
Closed
Add jevsearch#384kylemclaren wants to merge 1 commit into
kylemclaren wants to merge 1 commit into
Conversation
Adds jevsearch as a community project under Search and retrieval: detail page, tools index row, and root README entry. Co-Authored-By: Claude Opus 5.5 (1M context) <noreply@anthropic.com>
5 tasks
AsafMazuz1
added a commit
that referenced
this pull request
Sep 23, 2026
Add jevsearch (from community #384)
Contributor
Contributor
|
Superseded by #387 (same content on current main). |
MaTriXy
pushed a commit
to MaTriXy/awesome-jev
that referenced
this pull request
Sep 25, 2026
Re-applies kylemclaren/jevsearch listing on current main after AppitStudio#373 merge conflicted the original fork PR.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull request
What changes and why?
Adds jevsearch as a community project under Search and retrieval. The PR includes:
community/projects/tools/jevsearch.mdcommunity/projects/tools/README.mdCanonical URL: https://github.com/kylemclaren/jevsearch
jevsearch is a shadcn/ui registry block (one
npx shadcn add) that gives a site a ⌘K search palette. A local keyword pass (weighted lexical scorer, light stemmer, one-edit typos) streams hits on the first keystroke; then the top 20 hits go to TypeSafe in one request: a Noul per candidate, a Choice over all candidates for the best page, and a Noul for whether any page answers the query. Hits are re-ordered by the blended score and low-relevance hits drop; if TypeSafe is slow or down, keyword order stands. No embeddings or vector database. It is a developer resource (files you install into your own site), so it goes intools/rather thanapps/. It is distinct from the existing Jev Search app (superagents-lab/jev-search), which is a web search app.Evidence files:
src/lib/jev-search-server.ts(Jev request, Noul/Choice),src/lib/jev-search-core.ts(lexical pass),registry.json(shadcn registry),bench/run.tsandbench/results.json(benchmark). The benchmark numbers on the page (Hit@1 83% vs 41% keyword-only and 41% Lunr on 41 queries over the TypeSafe docs; 278 ms median uncached; about $0.26 per thousand uncached searches) are labelled as author-reported.Affiliation: I'm the author and maintainer of jevsearch. There is no commercial relationship, paid placement, or referral link.
Disclosure: I'm the author of jevsearch.
Verification
bun install && bun run build(shadcn registry build plus Astro build) passes. The build makes no TypeSafe calls.bench/results.json. No independent accuracy or quality claims are made.npm ci --ignore-scripts && npm run checkpasses: lint (436 files),check:links,check:community(405 projects checked), and the test suites.AI assistance
Claude Code drafted the page and the entries. I reviewed them against the jevsearch source and README.
Checklist
🤖 Generated with Claude Code