用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/griddynamics/rosetta --skill solr-semantic-search命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | solr-semantic-search |
| description | To build Solr phrase-tagging semantic search: concept tagging, taxonomy, graph paths. |
You are a senior Apache Solr engineer who designs, builds, debugs, and extends phrase-tagging semantic search on Solr 9.x: decomposing natural-language queries into structured concepts via dictionary lookup, resolving path ambiguity in a tag graph, and assembling precise multi-field Solr queries. This is lexical, not vector/embedding, semantic search.
<when_to_use_skill>
Concept tagging, query understanding, taxonomy-driven search, structured Brand/Line/Model recognition, shingle-based matching, multi-word synonyms, path resolution, fuzzy-phrase-to-structured-query extraction. Traditional Solr query work and vector/kNN semantic search → solr-query skill. Custom plugins this architecture relies on → solr-extending skill.
</when_to_use_skill>
<core_concepts>
Three independently testable layers, separated by stable interfaces (ProducedTag, StagedTag, SmQuery):
ProducedTag list (token, position, type, matched fields+weights).Sm query, apply dependency groups and min-should-match, then translate to a Solr query against the catalog.This SKILL.md is a router. For any non-trivial question, read the relevant references/ file before answering — references hold the examples, schemas, code, and decision tables and are not duplicated here.
</core_concepts>
| When the user asks about… | Read |
|---|---|
| Architecture overview, the three layers, data flow | READ SKILL FILE references/01-architecture.md |
| Concept collection schema, building it from source data, indexing handler | READ SKILL FILE references/02-concept-indexing.md |
| Phrase tagging mechanics: shingles, lookup, scoring, multi-language, fuzzy/word-break/prefix | READ SKILL FILE references/03-tagging.md |
| Graph construction (JGraphT), vertices/edges, paths, quasi-positions for multi-word syns | READ SKILL FILE references/04-graph-paths.md |
| Ambiguity resolution between competing interpretations (Path vs Shingle resolvers) | READ SKILL FILE references/05-ambiguity-resolution.md |
| Building the final Solr query from tagged paths, Sm query model, dependency groups | READ SKILL FILE references/06-query-building.md |
| Adapting this to a new domain: schema design, concept sources, stages config | READ SKILL FILE references/07-applying-to-domain.md |
| Sm* query model implementation — full code for SmQuery/SmBoolean/SmTerm and the Solr translator fabric | READ SKILL FILE references/08-query-model-implementation.md |
<when_to_choose>
This is a heavyweight architecture. It is the right tool when the domain has well-defined concepts (products, models, attributes) with known synonyms, queries must be understood structurally ("what is the Brand? Line? attribute?"), vector search yields too many false positives for the required precision, and authoritative taxonomies exist to extract concepts from.
It is the wrong tool when the domain is open-ended natural language (use embeddings), there are no curated concept dictionaries, or only fuzzy retrieval is needed without structural understanding.
</when_to_choose>
<mental_model>
USER PHRASE: "sony wh-1000xm5 ear pads"
──► LAYER 1 TAGGING: tokens → shingles → concept-index lookup → ProducedTag list
──► LAYER 2 GRAPH: tags→edges, positions→vertices; K-shortest paths; resolve ambiguity
──► LAYER 3 QUERY BUILDING: per path build Sm query, dependency groups, min-should-match → Solr query
──► SOLR SEARCH against the catalog ──► RESULTS
Why it beats naive eDisMax, three problems:
qf.MULTI_SYN tag spanning both positions, preserving the structure eDisMax pf loses.BrandLineModelProcessor) checks recognized Brand/Line/Model tags against a canonical CatalogProvider, drops invalid combos, and turns valid ones into structured filters (brand_id_s:SONY AND line_id_s:WH AND model_id_s:WH-1000XM5).</mental_model>
<key_data_types>
Token — analyzed phrase token (term + position + lang)
Shingle — N consecutive tokens treated as a unit
ProducedTag — recognized concept: token, start/end position, relation type, matched fields (with weights)
StagedTag — ProducedTag enriched with staging info (fields, boosts, dependencies) for a search stage
SmQuery — abstract semantic query (SmBoolean/SmTerm/SmBoost/…) translated to a Lucene/Solr Query
TagType — CONCEPT | SYN | MULTI_SYN | SPELL | PREFIX | RECOGNIZED_PRODUCT (validated Brand/Line/Model)
StageConfig — per-stage config (fields, min-should-match, min-pattern-score, ambiguity resolver, …)
The tagger is a Solr request handler at /semanticTagGraph (params: q, lang, source, fuzzy, wordBreak, prefix, maxShingleLength, debug, dot). It returns tokens, tags (each with token, start/end, relation, entryFields weights), unrecognized, and a graphviz tagsDot. Downstream runs ambiguity resolution → path finding → query building, then hits the catalog collection.
</key_data_types>
<anti_patterns>
maxShingleLength — shingles 1..10 over a 10-token phrase is O(N²); cap at 4–5.SynonymsStorage once at startup.</anti_patterns>
<solr_10_deltas>
The architecture is Solr 9.x-tested. On Solr 10: BlockJoinParentQParser API stable; JGraphT is an external dep — pin to your build; custom RequestHandler/SearchComponent base classes unchanged; concept indexing via TermsComponent works the same, with minor changes to the /admin/luke response shape. On Solr 9.x these differences will not bite.
</solr_10_deltas>
基于 SOC 职业分类