Skip to content
Draft
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
2f098f9
feat(better-search): readme
martijnvdbrug Jan 27, 2026
d217e52
Merge remote-tracking branch 'origin/main' into feat/search-improvements
martijnvdbrug Feb 10, 2026
e133b7f
feat(better-search): relevance testing interfaces and types for resea…
martijnvdbrug Feb 10, 2026
db0521a
feat(better-search): passing index around to be able to offload indexing
martijnvdbrug Feb 11, 2026
d42543a
Merge branch 'main' into feat/search-improvements
martijnvdbrug Feb 26, 2026
6b7f0e1
feat(better-search): defined relevance cases and updated project appr…
martijnvdbrug Feb 26, 2026
356e14d
Merge remote-tracking branch 'origin/main' into feat/search-improvements
martijnvdbrug Feb 26, 2026
2262d61
feat(better-search): more relevance cases + requriements and attemote…
martijnvdbrug Feb 26, 2026
3783b84
feat(better-search): working relevance test for minisearch
martijnvdbrug Mar 3, 2026
09b0318
feat(better-search): implemented orama engine
martijnvdbrug Mar 20, 2026
2249424
fix(better-search): linting errors and refactor minisearch-engine
martijnvdbrug Mar 20, 2026
9b4d459
feat(better-search): relevance fndings in project description
martijnvdbrug Mar 20, 2026
33678e7
feat(better-search): implemented QPS algorithm because it might be be…
martijnvdbrug Mar 27, 2026
919e626
Merge branch 'main' into feat/search-improvements
martijnvdbrug Apr 14, 2026
c4a462d
feat(better-search): implemented engine based on flexsearch
martijnvdbrug Apr 14, 2026
92add69
feat(better-search): project approach and phases updated
martijnvdbrug Apr 14, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/vendure-plugin-better-search/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ This plug is meant for small to medium sized shops with up to ~10000 variants.

This plugin is not meant to be a replacement for ElasticSearch or TypeSense, but rather a lightweight alternative for small to medium sized shops. If you want to test if it works for you, give it a try and run the load tests we have included.

// TODO fix everything below this line

Comment on lines +17 to +18
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

Invalid comment syntax and PR mismatch.

Three issues:

  1. // is JavaScript syntax, not Markdown. This will display as literal text to users, not as a comment.
  2. The PR objectives reference Issue #123 (Picqer API endpoint changes), but this PR only modifies the better-search README—completely unrelated.
  3. "Fix everything below this line" is vague with no context.
🤖 Prompt for AI Agents
In `@packages/vendure-plugin-better-search/README.md` around lines 17 - 18,
Replace the JavaScript-style line "// TODO fix everything below this line" in
the README.md with proper Markdown (remove the `//`) and either delete the vague
TODO or replace it with a clear, actionable note describing what needs updating
(e.g., "TODO: update README to document better-search plugin features and usage
– list specific sections to update"). Also update the PR description/title to
reflect the actual change (better-search README) and remove or correct the
incorrect reference to Issue `#123` so the PR only references relevant issues;
ensure any TODO references include owner and acceptance criteria.

Features:

- Search by term or multiple terms, no and/or logic or query syntax.
Expand Down
Loading