orchardcore-custom-indexing-elasticsearch

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

A technical guide for indexing custom records in Elasticsearch through Orchard Core. Elasticsearch is a search system used for full-text search, filtering, and vector search.

In plain words
What is it for?
Use it to index AI memory, CRM or ERP records, generated summaries, and synchronized external data with custom mappings.
Why use it?
It helps make non-standard records searchable when they do not fit Orchard Core's normal content-item indexing.

Skill for Claude CodeCodex

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

Good fit Use it to index AI memory, CRM or ERP records, generated summaries, and synchronized external data with custom mappings.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-custom-indexing-elasticsearch/github.svg)](https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-custom-indexing-elasticsearch)
Your own site
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-custom-indexing-elasticsearch"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-custom-indexing-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-custom-indexing-elasticsearch

Your own site · 80×15
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-custom-indexing-elasticsearch"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-custom-indexing-elasticsearch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 187 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,355 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.00187 $0.02355
Opus 5 $0.00093 $0.01177
Sonnet 5 $0.00037 $0.00471
Haiku 4.5 $0.00019 $0.00235

Measured 8d ago against content hash 0e85d36dcfd3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

orchardcore-custom-indexing-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 8d 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/crestapps-orchardcore/skills/orchardcore-custom-indexing-elasticsearch/SKILL.md · 282 lines

How it starts

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

Orchard Core Custom Indexing for Elasticsearch - Prompt Templates

Create a custom Elasticsearch index for arbitrary data

You are an Orchard Core expert. Generate code and configuration for indexing arbitrary records into Elasticsearch using Orchard Core index profiles, document handlers, and provider-specific mappings.

When to use this skill

Use this skill when the data source is not standard Orchard content-item indexing. Good examples:

  • user-scoped AI memory records
  • CRM or ERP records stored in a custom catalog
  • generated AI summaries
  • external records synchronized into a tenant document store
  • any custom record set that needs full-text search, filtering, or vector search

Architecture to follow

Use the CrestApps AI Memory modules as the reference architecture:

  • CrestApps.OrchardCore.AI.Memory defines the source record, master index settings, indexing service, and shared index-profile logic.
  • CrestApps.OrchardCore.AI.Memory.Elasticsearch registers the Elasticsearch indexing source and provider-specific handlers.
  • CrestApps.OrchardCore.AI.Memory.AzureAI uses the same shared record/indexing pattern but with Azure AI Search mappings.

Master index pattern

For arbitrary data, create one logical master index profile type for that record family. Then:

  1. Store the source records in your own catalog/store.
  2. Configure a site setting that chooses the active index profile name.
  3. Build a provider-neutral index document model from each source record.
  4. Let provider-specific IDocumentIndexHandler implementations map that neutral document into Elasticsearch fields.
  5. Trigger indexing from the data lifecycle, not from one individual controller, tool, or UI action.

Key Orchard Core pieces

  • IIndexProfileStore - loads index profiles
  • IndexProfileHandlerBase - reacts when an index profile is created, updated, or synchronized
  • IDocumentIndexHandler - maps a neutral record into DocumentIndex
  • keyed IDocumentIndexManager - writes provider-specific documents
  • services.AddElasticsearchIndexingSource(type, options => ...) - registers a new index source in the admin UI

Read the full file on GitHub · 282 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. 8d ago First seen · 282 lines · 187 tokens per session scan A 0e85d36dcfd3

Subscribe to this mod's changes

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

solr-semantic-search

To build Solr phrase-tagging semantic search: concept tagging, taxonomy, graph paths.

griddynamics/rosetta · 24 tokens

solr-query

To build and debug Solr queries: eDisMax, block join, JSON facets, kNN, explain.

griddynamics/rosetta · 27 tokens

vector-backend-operations

Select and connect the right vector-store backend for the vector-mcp MCP server — chromadb, postgres/pgvector, qdrant, couchbase, or mongodb — and supply the correct dbtype/connection parameters that every collection and search call needs. Use when the agent must decide which engine to target, wire up…

Knuckles-Team/vector-mcp · 113 tokens

vector-collection-management

Create, populate, list, and delete vector-store collections through the vector-mcp MCP server's vectorcollectionmanagement tool. Use when the agent must stand up a new RAG collection, ingest documents (from a directory, file paths/URLs, or raw text) into an existing collection, enumerate collections, or drop one …

Knuckles-Team/vector-mcp · 123 tokens

vector-mcp-operations

Operate vector-mcp through its governed MCP and GraphOS capabilities. Use for collection lifecycle, root-confined document ingestion, semantic or lexical retrieval, hybrid search, backend readiness, troubleshooting, and sanitized verification evidence.

Knuckles-Team/vector-mcp · 48 tokens

api-mirror

Stand up a persistent, self-refreshing local mirror of a bulk upstream dataset with the MirrorService (@cyanheads/mcp-ts-core/mirror). Use when a server wraps a large or slow API and should query a synced local index (embedded SQLite + FTS5) instead of paginating the live API per request.

cyanheads/ntfy-mcp-server · 68 tokens