.claude/skills/ts-elasticsearch-search/SKILL.md
Configure and use Elasticsearch for full-text search, custom analyzers, aggregations, and index management. Use when a user needs to design search mappings, write complex queries, build aggregation pipelines, tune relevance scoring, or optimize index performance for search workloads.
npx skillsauth add eliferjunior/Claude elasticsearch-searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Design and implement Elasticsearch search solutions including index mappings, custom analyzers, full-text queries, aggregations, and relevance tuning. Covers index lifecycle, search templates, and performance optimization.
# Create an index with explicit mappings and custom analyzers
curl -X PUT "http://localhost:9200/products" \
-H "Content-Type: application/json" \
-d '{
"settings": {
"number_of_shards": 3,
"number_of_replicas": 1,
"analysis": {
"analyzer": {
"product_analyzer": {
"type": "custom",
"tokenizer": "standard",
"filter": ["lowercase", "asciifolding", "product_synonyms", "product_stemmer"]
},
"autocomplete_analyzer": {
"type": "custom",
"tokenizer": "autocomplete_tokenizer",
"filter": ["lowercase"]
}
},
"tokenizer": {
"autocomplete_tokenizer": {
"type": "edge_ngram",
"min_gram": 2,
"max_gram": 15,
"token_chars": ["letter", "digit"]
}
},
"filter": {
"product_synonyms": {
"type": "synonym",
"synonyms": ["laptop,notebook", "phone,mobile,cellphone", "tv,television"]
},
"product_stemmer": {
"type": "stemmer",
"language": "english"
}
}
}
},
"mappings": {
"properties": {
"name": {
"type": "text",
"analyzer": "product_analyzer",
"fields": {
"autocomplete": { "type": "text", "analyzer": "autocomplete_analyzer", "search_analyzer": "standard" },
"keyword": { "type": "keyword" }
}
},
"description": { "type": "text", "analyzer": "product_analyzer" },
"category": { "type": "keyword" },
"price": { "type": "float" },
"rating": { "type": "float" },
"tags": { "type": "keyword" },
"created_at": { "type": "date" },
"location": { "type": "geo_point" },
"in_stock": { "type": "boolean" }
}
}
}'
# Multi-match search with boosting
curl -X POST "http://localhost:9200/products/_search" \
-H "Content-Type: application/json" \
-d '{
"query": {
"bool": {
"must": {
"multi_match": {
"query": "wireless noise cancelling headphones",
"fields": ["name^3", "description", "tags^2"],
"type": "best_fields",
"fuzziness": "AUTO"
}
},
"filter": [
{ "term": { "in_stock": true } },
{ "range": { "price": { "gte": 50, "lte": 300 } } }
],
"should": [
{ "range": { "rating": { "gte": 4.0, "boost": 2.0 } } },
{ "term": { "category": { "value": "electronics", "boost": 1.5 } } }
]
}
},
"highlight": {
"fields": {
"name": {},
"description": { "fragment_size": 150, "number_of_fragments": 2 }
}
},
"sort": [
{ "_score": "desc" },
{ "rating": "desc" }
],
"size": 20
}'
# Autocomplete / search-as-you-type query
curl -X POST "http://localhost:9200/products/_search" \
-H "Content-Type: application/json" \
-d '{
"query": {
"bool": {
"must": {
"match": {
"name.autocomplete": { "query": "wire", "operator": "and" }
}
},
"filter": { "term": { "in_stock": true } }
}
},
"size": 10,
"_source": ["name", "category", "price"]
}'
# Multi-level aggregations for faceted search
curl -X POST "http://localhost:9200/products/_search" \
-H "Content-Type: application/json" \
-d '{
"size": 0,
"query": { "match": { "description": "wireless headphones" } },
"aggs": {
"categories": {
"terms": { "field": "category", "size": 20 },
"aggs": {
"avg_price": { "avg": { "field": "price" } },
"avg_rating": { "avg": { "field": "rating" } }
}
},
"price_ranges": {
"range": {
"field": "price",
"ranges": [
{ "key": "budget", "to": 50 },
{ "key": "mid-range", "from": 50, "to": 150 },
{ "key": "premium", "from": 150, "to": 300 },
{ "key": "luxury", "from": 300 }
]
}
},
"price_stats": { "extended_stats": { "field": "price" } },
"top_rated": {
"top_hits": {
"sort": [{ "rating": "desc" }],
"size": 3,
"_source": ["name", "rating", "price"]
}
}
}
}'
# Date histogram aggregation for time-series analysis
curl -X POST "http://localhost:9200/logs-*/_search" \
-H "Content-Type: application/json" \
-d '{
"size": 0,
"query": { "range": { "@timestamp": { "gte": "now-7d" } } },
"aggs": {
"errors_over_time": {
"date_histogram": {
"field": "@timestamp",
"calendar_interval": "1h"
},
"aggs": {
"error_count": {
"filter": { "term": { "level": "error" } }
},
"error_rate": {
"bucket_script": {
"buckets_path": { "errors": "error_count._count", "total": "_count" },
"script": "params.total > 0 ? (params.errors / params.total) * 100 : 0"
}
}
}
}
}
}'
# Create an ILM policy for log indices
curl -X PUT "http://localhost:9200/_ilm/policy/logs-lifecycle" \
-H "Content-Type: application/json" \
-d '{
"policy": {
"phases": {
"hot": {
"min_age": "0ms",
"actions": {
"rollover": { "max_age": "1d", "max_primary_shard_size": "50gb" },
"set_priority": { "priority": 100 }
}
},
"warm": {
"min_age": "3d",
"actions": {
"shrink": { "number_of_shards": 1 },
"forcemerge": { "max_num_segments": 1 },
"set_priority": { "priority": 50 }
}
},
"cold": {
"min_age": "30d",
"actions": {
"searchable_snapshot": { "snapshot_repository": "backups" },
"set_priority": { "priority": 0 }
}
},
"delete": {
"min_age": "90d",
"actions": { "delete": {} }
}
}
}
}'
# Create a reusable search template
curl -X PUT "http://localhost:9200/_scripts/product-search" \
-H "Content-Type: application/json" \
-d '{
"script": {
"lang": "mustache",
"source": {
"query": {
"bool": {
"must": { "multi_match": { "query": "{{query}}", "fields": ["name^3", "description"] } },
"filter": [
{{#category}}{ "term": { "category": "{{category}}" } },{{/category}}
{ "term": { "in_stock": true } },
{ "range": { "price": { "gte": "{{min_price}}{{^min_price}}0{{/min_price}}", "lte": "{{max_price}}{{^max_price}}99999{{/max_price}}" } } }
]
}
},
"size": "{{size}}{{^size}}20{{/size}}"
}
}
}'
# Use the search template
curl -X POST "http://localhost:9200/products/_search/template" \
-H "Content-Type: application/json" \
-d '{ "id": "product-search", "params": { "query": "headphones", "category": "electronics", "max_price": 200, "size": 10 } }'
keyword sub-fields on text fields for exact match filtering and aggregationsfuzziness: "AUTO" for user-facing search to handle typos gracefullyfilter context for non-scoring clauses (dates, booleans, categories) to leverage cachingindex.search.slowlog.threshold.query.warn: 2sdevelopment
Expert guidance for Fireworks AI, the platform for running open-source LLMs (Llama, Mixtral, Qwen, etc.) with enterprise-grade speed and reliability. Helps developers integrate Fireworks' inference API, fine-tune models, and deploy custom model endpoints with function calling and structured output support.
development
Convert any website into clean, structured data with Firecrawl — API-first web scraping service. Use when someone asks to "turn a website into markdown", "scrape website for LLM", "Firecrawl", "extract website content as clean text", "crawl and convert to structured data", or "scrape website for RAG". Covers single-page scraping, full-site crawling, structured extraction, and LLM-ready output.
tools
Expert guidance for Firebase, Google's platform for building and scaling web and mobile applications. Helps developers set up authentication, Firestore/Realtime Database, Cloud Functions, hosting, storage, and analytics using Firebase's SDK and CLI.
development
When the user needs to build file upload functionality for a web application. Use when the user mentions "file upload," "image upload," "upload endpoint," "multipart upload," "presigned URL," "S3 upload," "file validation," "upload to cloud storage," or "accept user files." Handles upload endpoints, file validation (type, size, magic bytes), cloud storage integration, and upload status tracking. For image/video processing after upload, see media-transcoder.