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.
npx skills add CrestApps/CrestApps.AgentSkills --skill orchardcore-elasticsearchgit clone --depth 1 https://github.com/CrestApps/CrestApps.AgentSkillsWrote 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.
[](https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-elasticsearch)<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.
<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>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once 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 |
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.
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.Elasticsearchto manage Elasticsearch indices. - Configure the Elasticsearch connection in
appsettings.jsonunder theOrchardCore_Elasticsearchsection. - Use the
CreateOrUpdateIndexProfilerecipe step to create indexes (preferred over the obsoleteElasticIndexSettingsstep). - Use the
ResetIndexrecipe step to restart indexing without deleting entries (preferred over the obsoleteelastic-index-resetstep). - Use the
RebuildIndexrecipe step to delete and recreate indexes (preferred over the obsoleteelastic-index-rebuildstep). - Elasticsearch uses the Elasticsearch Query DSL for queries.
- Elasticsearch automatically maps string fields to both
textandkeywordtypes. - 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
sealedmodifier.
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"
}
}
}
}
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.
- 5d ago First seen · 369 lines · 168 tokens per session scan A 8029af59ed33
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.
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.
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.
solr-schema
To design and audit Solr schemas: field types, analyzers, docValues, solrconfig.
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.
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…
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.