orchardcore-custom-indexing-azureai

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

A guide for building Orchard Core indexing pipelines for custom records with Azure AI Search, Microsoft's hosted search service. It covers records that are not standard Orchard content items, including AI-generated data and vector-search sources.

In plain words
What is it for?
Use it to create index profiles, document handlers, and mappings for custom catalogs, user-scoped memory, imported business data, or other records stored outside normal content items.
Why use it?
It helps make arbitrary application data searchable when Orchard's built-in content indexing is not enough. It also explains how to map the same data to provider-specific search fields.

Skill for Claude CodeCodex

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

Good fit Use it to create index profiles, document handlers, and mappings for custom catalogs, user-scoped memory, imported business data, or other records stored outside normal content items.

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

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

agentmods 80×15 button for orchardcore-custom-indexing-azureai

Your own site · 80×15
<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>
Per session 200 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,359 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.00200 $0.02359
Opus 5 $0.00100 $0.01179
Sonnet 5 $0.00040 $0.00472
Haiku 4.5 $0.00020 $0.00236

Measured 8d ago against content hash 754c8ba09531, 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-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.

plugins/crestapps-orchardcore/skills/orchardcore-custom-indexing-azureai/SKILL.md · 304 lines

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.Memory contains the shared record/indexing logic and the master index setting.
  • CrestApps.OrchardCore.AI.Memory.AzureAI registers the Azure AI Search indexing source plus provider-specific handlers.
  • CrestApps.OrchardCore.AI.Memory.Elasticsearch proves 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:

  1. persist the source record in your own store
  2. build a neutral index document model from it
  3. use IDocumentIndexHandler to map that neutral document into Azure AI Search fields
  4. write through the keyed IDocumentIndexManager
  5. trigger add/update/delete from the record lifecycle, not a single UI path

Key Orchard Core pieces

  • IIndexProfileStore
  • IndexProfileHandlerBase
  • IDocumentIndexHandler
  • keyed IDocumentIndexManager
  • services.AddAzureAISearchIndexingSource(type, options => ...)

1. Define the custom index profile type

public static class CustomerInsightsConstants
{
    public const string IndexingTaskType = "CustomerInsights";
}

Read the full file on GitHub · 304 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 · 304 lines · 200 tokens per session scan A 754c8ba09531

Subscribe to this mod's changes

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.

Related

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…

VincentChuWaiChow/vanguard-frontier-agentic · 93 tokens

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…

JunMystery/Agent-Guidance-Python · 104 tokens

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…

rahulcvwebsitehosting/wayfinder · 155 tokens

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.

microsoft/skills · 48 tokens

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…

mongodb-js/mongodb-mcp-server · 153 tokens

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.

wecode-ai/Wegent · 51 tokens