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-custom-indexing-azureaigit 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-custom-indexing-azureai)<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-custom-indexing-azureai"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-custom-indexing-azureai/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-custom-indexing-azureai"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-custom-indexing-azureai.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.00200 | $0.02359 |
| Opus 5 | $0.00100 | $0.01179 |
| Sonnet 5 | $0.00040 | $0.00472 |
| Haiku 4.5 | $0.00020 | $0.00236 |
Grade A, and why
orchardcore-custom-indexing-azureai 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.
How it starts
The opening of the file, as written. The whole thing — 304 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Orchard Core Custom Indexing for Azure AI Search - Prompt Templates
Create a custom Azure AI Search index for arbitrary data
You are an Orchard Core expert. Generate code and configuration for indexing arbitrary records into Azure AI Search using Orchard Core index profiles, document handlers, and provider-specific mappings.
When to use this skill
Use this skill when Orchard content-item indexing is not enough and you need an index for custom records such as:
- generated AI artifacts
- domain records stored in a custom catalog
- user-scoped memory or preference records
- imported external business data
- custom vector-search sources
Architecture to follow
Use the CrestApps AI Memory modules as the reference architecture:
CrestApps.OrchardCore.AI.Memorycontains the shared record/indexing logic and the master index setting.CrestApps.OrchardCore.AI.Memory.AzureAIregisters the Azure AI Search indexing source plus provider-specific handlers.CrestApps.OrchardCore.AI.Memory.Elasticsearchproves the same neutral-document approach can target another provider with different mappings.
Master index pattern
For arbitrary data, create a single logical index profile type for that record family and let the tenant choose the active master index profile by name.
Then:
- persist the source record in your own store
- build a neutral index document model from it
- use
IDocumentIndexHandlerto map that neutral document into Azure AI Search fields - write through the keyed
IDocumentIndexManager - trigger add/update/delete from the record lifecycle, not a single UI path
Key Orchard Core pieces
IIndexProfileStoreIndexProfileHandlerBaseIDocumentIndexHandler- keyed
IDocumentIndexManager services.AddAzureAISearchIndexingSource(type, options => ...)
Recommended implementation steps
1. Define the custom index profile type
public static class CustomerInsightsConstants
{
public const string IndexingTaskType = "CustomerInsights";
}
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.
- 8d ago First seen · 304 lines · 200 tokens per session scan A 754c8ba09531
orchardcore-custom-indexing-azureai is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 13d ago), licensed MIT. It adds 200 tokens to every session and 2,359 once invoked, about $0.0010 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
aws-generative-ai-developer
Build Amazon Bedrock and serverless generative AI applications using Lambda, API Gateway, Step Functions, EventBridge, S3, DynamoDB, SQS, Guardrails, and IAM. Prefer this for serverless GenAI app design and implementation; prefer aws-agentcore for AgentCore runtime, aws-bedrock-agent-security-governor for deep Bedrock…
recsys-pipeline-architect
Design composable recommendation, ranking, and feed pipelines using the six-stage Source→Hydrator→Filter→Scorer→Selector→SideEffect framework popularized by xAI's open-sourced For You algorithm. Use this skill whenever the user is building any system that picks "the top K items for a (user, context)" — social feeds…
ai-sdk
Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI…
azure-search-documents-ts
Build search applications using Azure AI Search SDK for JavaScript (@azure/search-documents). Use when creating/managing indexes, implementing vector/hybrid search, semantic ranking, or building agentic retrieval with knowledge bases.
mongodb-mcp-v3-migration
Migrates external consumer code from the mongodb-mcp-server v1/v2 single-package API to the v3 scoped-package structure. In v3, mongodb-mcp-server is a binary-only package (npx / MCPB); library embedding uses @mongodb-js/mcp-cli, @mongodb-js/mcp-core, @mongodb-js/mcp-http-runners, @mongodb-js/mcp-tools-, and the other…
wegent-knowledge
Knowledge base management and search tools for Wegent. Provides capabilities to list, create, update, and search knowledge bases and documents using RAG retrieval. Use this skill when the user wants to manage knowledge bases, documents, or search for information programmatically.