orchardcore-ai-documents-elasticsearch

orchardcore-ai-documents-elasticsearch is a skill for Claude Code, Codex from CrestApps/CrestApps.AgentSkills. It costs 131 tokens per session (1,455 once invoked), scanned A, original, MIT.

An Orchard Core integration that stores searchable AI document indexes in Elasticsearch. Elasticsearch is a search system that can also find text by meaning using vector embeddings, which are numerical representations of content.

In plain words
What is it for?
Use it to configure AI Documents indexing, create vector-search indexes, and support retrieval-augmented generation (RAG), where an AI answer is based on retrieved documents.
Why use it?
It provides meaning-based document retrieval for AI features and keeps search results limited to the relevant document scope. It avoids requiring manually written search queries.

Skill for Claude CodeCodex

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

Good fit Use it to configure AI Documents indexing, create vector-search indexes, and support retrieval-augmented generation (RAG), where an AI answer is based on retrieved documents.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-ai-documents-elasticsearch"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-ai-documents-elasticsearch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 131 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,455 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.00131 $0.01455
Opus 5 $0.00066 $0.00727
Sonnet 5 $0.00026 $0.00291
Haiku 4.5 $0.00013 $0.00145

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

Security

Grade A, and why

orchardcore-ai-documents-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 11d 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-ai-documents-elasticsearch/SKILL.md · 151 lines

How it starts

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

Orchard Core AI Documents Elasticsearch

Configure Elasticsearch document retrieval

You are an Orchard Core expert. Configure Elasticsearch as the vector indexing and retrieval backend for CrestApps AI Documents. Use the provider-created index profile, embedding dimensions, and reference-scoped retrieval rather than hand-written queries.

Guidelines

  • Enable the exact feature ID CrestApps.OrchardCore.AI.Documents.Elasticsearch.
  • Its manifest depends on AI Documents through ChatInteractionsConstants.Feature.ChatDocuments and on OrchardCore.Elasticsearch; the base document feature is enabled by dependency.
  • Create the index at Search → Indexing using AI Documents (Elasticsearch).
  • Configure an embedding-capable deployment before creating or reindexing the profile.
  • The service is registered as a keyed IVectorSearchService using ElasticsearchConstants.ProviderName.
  • Keep document storage separate from indexing. Azure Blob Storage is optional and does not replace this provider.
  • Install the package in the web or startup project and keep Elasticsearch connection secrets outside recipes and source control.

Feature registration

Registration Purpose
AIDocumentElasticsearchIndexProfileHandler Defines chunk fields, dense vectors, and default textual fields.
AIDocumentElasticsearchDocumentIndexHandler Maps document chunk records into Elasticsearch documents.
ElasticsearchVectorSearchService Runs filtered k-nearest-neighbor chunk retrieval.
AddElasticsearchIndexingSource Adds AI Documents (Elasticsearch) to Search → Indexing.

Enable document indexing

{
  "steps": [
    {
      "name": "Feature",
      "enable": [
        "CrestApps.OrchardCore.AI.Documents.ChatInteractions",
        "CrestApps.OrchardCore.AI.Documents.Elasticsearch",
        "OrchardCore.Elasticsearch"
      ],
      "disable": []
    }
  ]
}

Enable CrestApps.OrchardCore.AI.Documents.Pdf or CrestApps.OrchardCore.AI.Documents.OpenXml separately for optional extraction support. These processor features are not required by Elasticsearch itself.

Read the full file on GitHub · 151 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. 11d ago First seen · 151 lines · 131 tokens per session scan A 601b5d20cf10

Subscribe to this mod's changes

orchardcore-ai-documents-elasticsearch is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 13d ago), licensed MIT. It adds 131 tokens to every session and 1,455 once invoked, about $0.0007 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-08-30.

Related

Other skills, from other repositories

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

chroma

Embedding database for RAG and semantic search.

NousResearch/hermes-agent · 12 tokens

pinecone

Managed vector DB for production RAG and search.

NousResearch/hermes-agent · 13 tokens

pgvector-semantic-search

Use this skill for setting up vector similarity search with pgvector for AI/ML embeddings, RAG applications, or semantic search. Trigger when user asks to: Store or search vector embeddings in PostgreSQL Set up semantic search, similarity search, or nearest neighbor search Create HNSW or IVFFlat indexes for vectors…

timescale/pg-aiguide · 190 tokens