solr-query

solr-query is a skill for Claude Code, Codex from griddynamics/rosetta. It costs 27 tokens per session (1,464 once invoked), scanned A, original, Apache-2.0.

A guide for constructing and debugging Apache Solr queries, including filters, scoring, facets, joins, explanations, and vector search.

In plain words
What is it for?
Use it to write and troubleshoot eDisMax queries, block joins, JSON facets, k-nearest-neighbor search, and relevance explanations.
Why use it?
It helps diagnose syntax errors, wrong results, missing results, and confusing relevance caused by parser, scoring, or document-scope mistakes.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/griddynamics/rosetta/solr-query
Any agent
npx skills add griddynamics/rosetta --skill solr-query
Clone the repo
git clone --depth 1 https://github.com/griddynamics/rosetta

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for solr-query

README.md
[![agentmods](https://agentmods.dev/badge/skills/griddynamics/rosetta/solr-query.svg)](https://agentmods.dev/skills/griddynamics/rosetta/solr-query)
Your own site
<a href="https://agentmods.dev/skills/griddynamics/rosetta/solr-query"><img src="https://agentmods.dev/badge/skills/griddynamics/rosetta/solr-query.svg" alt="Measured on agentmods" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,464 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00027 $0.01464
Opus 5 $0.00014 $0.00732
Sonnet 5 $0.00005 $0.00293
Haiku 4.5 $0.00003 $0.00146

Measured yesterday against content hash 2a7a3d4c96cc, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

solr-query scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

instructions/r3/core/skills/solr-query/SKILL.md · 94 lines

How it starts

The opening of the file, as written. The whole thing — 94 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a senior Apache Solr engineer who constructs correct queries and debugs query behavior at the syntax level the official docs underspecify. You target Solr 9.x and flag Solr 10 differences only when relevant.

<when_to_use_skill>

Constructing/debugging Solr queries: q/fq, parser selection, eDisMax, block join, JSON Facets, kNN/hybrid vectors, scoring, explain output, or wrong/no results. Analyzer chains/synonyms/field types → solr-schema; custom SearchComponent/QueryParser/URP development → solr-extending.

</when_to_use_skill>

<core_concepts>

Keep three orthogonal axes separate — identify all three before changing anything:

  1. q vs fqq produces a score; fq is a cached boolean filter that does not. Scoring intent in fq (e.g. fq={!edismax}...) is almost always wrong.
  2. Parser ({!parser ...}) — defaults to lucene unless defType says otherwise. The parser determines what the rest of the string means; the wrong parser is the most common cause of "syntax error" on nonsense tokens.
  3. Scope — for block join, JSON Facets, and any domain op, "which documents am I looking at" is a property of the position in the request, not a global. A facet under blockChildren sees children; the same facet at top level sees parents.

This SKILL.md is a router. For any non-trivial question, read the relevant references/ file before answering — references hold the examples, gotchas, and decision tables and are not duplicated here.

</core_concepts>

When the user asks about… Read
Lucene syntax (operators, escaping, wildcards, ranges, fuzzy) READ SKILL FILE references/01-lucene-syntax.md
Local params, parser selection, {!parser ...}, v=$param deref READ SKILL FILE references/02-local-params.md
eDisMax: qf/pf/pf2/pf3/mm/bf/bq/boost/tie READ SKILL FILE references/03-edismax.md
Block join: {!parent}, {!child}, [child], 3-level READ SKILL FILE references/04-block-join.md
JSON Facets: terms/range/query, nested sub-facets, domain READ SKILL FILE references/05-json-facets.md
Multi-select faceting via {!tag=} and excludeTags READ SKILL FILE references/06-tag-exclude.md
Dense vector / kNN search, hybrid lexical+vector ranking READ SKILL FILE references/07-knn.md
Reading debug=true explain output, score forensics READ SKILL FILE references/08-explain.md
Function queries, geofilt, bbox, distance READ SKILL FILE references/09-function-spatial.md
Cross-cutting anti-patterns and frequent errors READ SKILL FILE references/10-common-errors.md
Document transformers — [child], [subquery], [explain] READ SKILL FILE references/11-doc-transformers.md
Relevancy tuning — BM25, similarity choice, scoring, LTR READ SKILL FILE references/12-relevancy.md

<debugging_checklist>

When results are unexpected, check in this order:

  1. Did it parse as you think? Run debug=query, inspect parsedquery_toString. Lowercase and/or are terms, not operators.
  2. Is the field analyzed as you think? iPhone against a LowercaseFilter field becomes iphone. Use /analysis (see solr-schema).
  3. Are you scoring against fq? fq never contributes to score — ranking intent belongs in q (or bq/bf/boost).
  4. Is the scope right? For block join and faceting, ask whether you are on parents or children; inspect with the [child] transformer.
  5. Is mm killing recall? Hard mm=3 against a 1-word query returns zero. Prefer formulas like 2<75%.
  6. Is the analyzer asymmetric? Index- and query-time analyzers can differ; multi-word query-time synonyms often don't expand (see solr-schema).

</debugging_checklist>

<anti_patterns>

Call these out before answering the literal question:

  • {!parent of=...} / {!child which=...} — parameter names swapped.
  • {!parent which="type:product AND brand:Nike"} — narrowing the parent filter breaks the block mask/scope.
  • "type": "uniqueBlock" as a facet property — it is a metric string "uniqueBlock(_root_)"; valid type values are terms, range, query, heatmap.
  • fq=field1:a&field2:b& is an HTTP separator, not boolean; use AND.
  • q=foo and bar — lowercase boolean is a term.
  • {!edismax} inside fq — eDisMax is for the user q; fq doesn't score.
  • mm=3 (hard absolute) in production — use a 2<75% formula.
  • Long field:(a OR b OR ... OR z) for many values — use {!terms f=field}a,b,…,z.
  • kNN with a restrictive fq and small topK — post-filtering can leave zero results; raise topK or use preFilter (READ SKILL FILE references/07-knn.md).

Read the full file on GitHub · 94 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 94 lines · 27 tokens per session scan A 2a7a3d4c96cc

Subscribe to this mod's changes

solr-query is a skill published in the GitHub repository griddynamics/rosetta (342 stars, last pushed yesterday), licensed Apache-2.0. It adds 27 tokens to every session and 1,464 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

agent-platform-rag-engine-management

Manage and query Agent Platform RAG Engine Corpora and retrieve grounded contexts using the Google GenAI SDK. Use when listing RAG corpora or files, inspecting a corpus, retrieving contexts, or generating content grounded in a RAG corpus. Do not use for standard database queries (use SQL/Spanner skills), Google…

aboalrejal-ai/skills · 85 tokens

dashscope

DashScope (Alibaba Cloud Bailian / 阿里云百炼) integration — image generation (qwen-image-2.0-pro), text-to-speech (qwen3-tts-flash), and ASR with word-level timestamps (qwen3-asr-flash-filetrans). Use when generating images via Qwen-Image, narrating via Qwen-TTS, or transcribing with word-level timestamps via Qwen-ASR.

calesthio/OpenMontage · 93 tokens

mongodb-search-and-ai

Guides MongoDB users through implementing and optimizing Atlas Search (full-text), Vector Search (semantic), and Hybrid Search solutions. Use this skill when users need to build search functionality for text-based queries (autocomplete, fuzzy matching, faceted search), semantic similarity (embeddings, RAG…

fcakyon/claude-codex-settings · 132 tokens

azure-devops-rest-api

Guide for working with Azure DevOps REST APIs and OpenAPI specifications. Use this skill when implementing new Azure DevOps API integrations, exploring API capabilities, understanding request/response formats, or referencing the official OpenAPI specifications from the vsts-rest-api-specs repository.

Tiberriver256/mcp-server-azure-devops · 59 tokens

decision-mapping

Turn a loose idea into a sequenced map of investigation tickets, then drive them to resolution one at a time.

Tiberriver256/mcp-server-azure-devops · 27 tokens

memorix

Use when Claude Code needs Memorix shared memory, reasoning, Git Memory, mini-skills, session handoff, orchestration coordination, or integration troubleshooting.

AVIDS2/memorix · 34 tokens