orchardcore-elasticsearch

orchardcore-elasticsearch is a skill for Claude Code, Codex from CrestApps/CrestApps.AgentSkills. It costs 168 tokens per session (2,503 once invoked), scanned A, original, MIT.

A guide to using Elasticsearch, a separate search and analytics engine, with Orchard Core. It covers connections, indexes, field mapping, text analysis, and Elasticsearch's query language.

In plain words
What is it for?
Use it to deploy and connect Elasticsearch, create index profiles, define analyzers, index custom fields, choose authentication, and write searches.
Why use it?
It helps configure search correctly and distinguishes rebuilding an index from restarting the indexing process.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to deploy and connect Elasticsearch, create index profiles, define analyzers, index custom fields, choose authentication, and write searches.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/crestapps/crestapps.agentskills/orchardcore-elasticsearch
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.

Any agent
npx skills add CrestApps/CrestApps.AgentSkills --skill orchardcore-elasticsearch
Clone the repo
git clone --depth 1 https://github.com/CrestApps/CrestApps.AgentSkills

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 orchardcore-elasticsearch

README.md
[![agentmods](https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-elasticsearch/github.svg)](https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-elasticsearch)
Your own site
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-elasticsearch"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-elasticsearch/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for orchardcore-elasticsearch

Your own site · 80×15
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-elasticsearch"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-elasticsearch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 168 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,503 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00168 $0.02503
Opus 5 $0.00084 $0.01252
Sonnet 5 $0.00034 $0.00501
Haiku 4.5 $0.00017 $0.00250

Measured 5d ago against content hash 8029af59ed33, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

orchardcore-elasticsearch 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 5d ago.

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.

plugins/orchardcore/skills/orchardcore-elasticsearch/SKILL.md · 369 lines

How it starts

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

Orchard Core Elasticsearch - Prompt Templates

Configure Elasticsearch

You are an Orchard Core expert. Generate code and configuration for Elasticsearch-based search in Orchard Core.

Guidelines

  • Enable OrchardCore.Elasticsearch to manage Elasticsearch indices.
  • Configure the Elasticsearch connection in appsettings.json under the OrchardCore_Elasticsearch section.
  • Use the CreateOrUpdateIndexProfile recipe step to create indexes (preferred over the obsolete ElasticIndexSettings step).
  • Use the ResetIndex recipe step to restart indexing without deleting entries (preferred over the obsolete elastic-index-reset step).
  • Use the RebuildIndex recipe step to delete and recreate indexes (preferred over the obsolete elastic-index-rebuild step).
  • Elasticsearch uses the Elasticsearch Query DSL for queries.
  • Elasticsearch automatically maps string fields to both text and keyword types.
  • Supported connection types: SingleNodeConnectionPool, CloudConnectionPool, StaticConnectionPool, SniffingConnectionPool, StickyConnectionPool.
  • Supported authentication types: Basic, ApiKey, Base64ApiKey, KeyIdAndKey.
  • Custom analyzers and token filters are defined in appsettings.json.
  • Both Lucene and Elasticsearch modules can be enabled simultaneously.
  • All recipe JSON must be wrapped in { "steps": [...] }.
  • All C# classes must use the sealed modifier.

Enabling Elasticsearch Features

{
  "steps": [
    {
      "name": "Feature",
      "enable": [
        "OrchardCore.Search",
        "OrchardCore.Elasticsearch",
        "OrchardCore.Indexing"
      ],
      "disable": []
    }
  ]
}

Elasticsearch Connection Configuration

Configure the connection in appsettings.json:

{
  "OrchardCore_Elasticsearch": {
    "ConnectionType": "SingleNodeConnectionPool",
    "Url": "http://localhost",
    "Ports": [9200],
    "AuthenticationType": "Basic",
    "Username": "admin",
    "Password": "admin",
    "CertificateFingerprint": "",
    "EnableDebugMode": false,
    "EnableHttpCompression": true,
    "IndexPrefix": "",
    "Analyzers": {
      "standard": {
        "type": "standard"
      }
    }
  }
}

Read the full file on GitHub · 369 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. 5d ago First seen · 369 lines · 168 tokens per session scan A 8029af59ed33

Subscribe to this mod's changes

orchardcore-elasticsearch is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 11d ago), licensed MIT. It adds 168 tokens to every session and 2,503 once invoked, about $0.0008 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

amazon aurora dsql

Deprecated compatibility redirect for Aurora DSQL guidance. Use when a request concerns DSQL, Aurora DSQL, distributed SQL, DSQL schemas, migrations, queries, authentication, performance, or application development.

awslabs/mcp · 46 tokens

dv-query

Bulk reads, multi-page iteration, and analytics over Dataverse data. Use when the user wants to read, list, filter, aggregate, group, join, or analyze records — including pandas DataFrame workflows and notebook exploration.

microsoft/Dataverse-skills · 48 tokens

solr-schema

To design and audit Solr schemas: field types, analyzers, docValues, solrconfig.

griddynamics/rosetta · 25 tokens

dv-connect

One-step setup for a Dataverse environment — installs tools, authenticates, registers the MCP server, and writes .env. Use when starting a new project, switching environments, fixing authentication, or troubleshooting an MCP connection that won't come up.

microsoft/Dataverse-skills · 51 tokens

odoo-data-quality-gate

Audit an Odoo database's data quality with evidence before trusting AI answers, importing, or migrating — duplicates, missing required values, orphaned references, format anomalies — and drive remediation through odoo-mcp's gated write workflow. Use when the user asks to "check data quality", "clean up data", "prepare…

erpipe-org/mcp-odoo · 85 tokens

sqlsugar

Use when doing multi-database ORM operations in .NET — SQL Server, MySQL, PostgreSQL, SQLite, Oracle with fluent API, code-first, and LINQ. SqlSugar: high-performance .NET ORM supporting 10+ databases.

znlgis/opengis-skills · 53 tokens