SMA [4] Improve steering for JSON output and Querqy detection#40
Open
seanoc5 wants to merge 1 commit into
Open
SMA [4] Improve steering for JSON output and Querqy detection#40seanoc5 wants to merge 1 commit into
seanoc5 wants to merge 1 commit into
Conversation
index_design.md: Always include a complete OpenSearch JSON mapping as the primary deliverable, not just prose descriptions. incompatibilities.md: Add Querqy as a known plugin with an OpenSearch equivalent (querqy-opensearch). Flag when detected. These changes move the TMDB eval (PR #39) from 4/6 to 6/6 assertions. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
awagen
reviewed
Apr 8, 2026
| - Custom Request Handlers: No direct equivalent; must rebuild using standard Search API + Client-side logic. | ||
| - Search Components: No equivalent; logic must be moved to the client or a custom OpenSearch plugin. | ||
| - Solr Power: No equivalent; use standard OpenSearch feature set. | ||
| - Querqy: The Solr query rewriting plugin has an OpenSearch equivalent — [Querqy for OpenSearch](https://github.com/querqy/querqy-opensearch). Migration requires installing the plugin and converting rewriter configs. Flag this as a critical dependency when detected (e.g. querqy JARs in lib/, QuerqyRewriterRequestHandler in solrconfig.xml). |
Collaborator
There was a problem hiding this comment.
That is a tidy PR!
This comment holds for this file and the index_design.md change below:
One thing Im missing: is there a corresponding test? If not, but in another PR, Id pull this to the PR where the test is located (you mentioned this change was needed to make the test go green?). If existing nowhere, Id suggest to add it.
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.
Summary
index_design.md: Always include a complete OpenSearch JSON mapping as the primary deliverableincompatibilities.md: Add Querqy as a known plugin with an OpenSearch equivalentWhy
The TMDB eval (PR #39) showed the agent describing field mappings in prose
without a concrete JSON mapping, and not flagging Querqy as a dependency.
These 7 lines of steering fix both issues.
Test plan
🤖 Generated with Claude Code