orchardcore-ai-memory-azureai

orchardcore-ai-memory-azureai is a skill for Claude Code, Codex from CrestApps/CrestApps.AgentSkills. It costs 140 tokens per session (1,550 once invoked), scanned A, original, MIT.

A guide for using Azure AI Search to index and search persistent AI memory in Orchard Core. Azure AI Search is Microsoft’s managed service for text and vector search.

In plain words
What is it for?
Use it to enable the Azure AI Search memory feature, create an index profile, select an embedding deployment, and configure secure Azure access.
Why use it?
It provides the search backend needed to retrieve relevant memories while keeping results limited to the authenticated user. It also covers index mappings and embedding dimensions.

Skill for Claude CodeCodex

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

Good fit Use it to enable the Azure AI Search memory feature, create an index profile, select an embedding deployment, and configure secure Azure access.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-ai-memory-azureai"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-ai-memory-azureai.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 140 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,550 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.00140 $0.01550
Opus 5 $0.00070 $0.00775
Sonnet 5 $0.00028 $0.00310
Haiku 4.5 $0.00014 $0.00155

Measured 7d ago against content hash bb5accd4d048, 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-memory-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 7d 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-memory-azureai/SKILL.md · 154 lines

How it starts

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

Configure Azure AI Search memory indexing

You are an Orchard Core expert. Configure Azure AI Search for persistent user-memory vector indexing and semantic retrieval. Maintain the strict authenticated-user filter and use the provider-managed profile mappings.

Guidelines

  • Enable the exact feature ID CrestApps.OrchardCore.AI.Memory.AzureAI.
  • Its manifest depends on CrestApps.OrchardCore.AI.Memory, OrchardCore.Indexing, and OrchardCore.AzureAI; the base AI Memory feature is enabled by dependency.
  • Create AI Memory (Azure AI Search) from Search → Indexing, select its embedding deployment, then choose it in Settings → Artificial Intelligence → Memory.
  • Memory remains authenticated-user scoped even though all users can occupy a shared external index.
  • The backend registers AzureAISearchMemoryVectorSearchService as a keyed IMemoryVectorSearchService using AzureAISearchConstants.ProviderName.
  • Install the package in the web or startup project and store Azure endpoint and credential configuration securely.
  • Do not use memory to retain secrets, tokens, private keys, payment data, or other sensitive user data.

Provider registrations

Registration Purpose
AIMemoryAzureAISearchIndexProfileHandler Creates, updates, and normalizes Azure Search memory mappings.
AIMemoryAzureAISearchDocumentIndexHandler Builds Azure index documents from persisted memory records.
AzureAISearchMemoryVectorSearchService Retrieves semantically similar memories for one user.
AddAzureAISearchIndexingSource Adds AI Memory (Azure AI Search) as an index source.

Enable the backend

{
  "steps": [
    {
      "name": "Feature",
      "enable": [
        "CrestApps.OrchardCore.AI",
        "CrestApps.OrchardCore.AI.Memory.AzureAI",
        "OrchardCore.AzureAI"
      ],
      "disable": []
    }
  ]
}

The base memory feature is dependency-only. Do not treat it as an independent standalone backend; enable this provider or the Elasticsearch provider alongside it.

Read the full file on GitHub · 154 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. 7d ago First seen · 154 lines · 140 tokens per session scan A bb5accd4d048

Subscribe to this mod's changes

orchardcore-ai-memory-azureai is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 12d ago), licensed MIT. It adds 140 tokens to every session and 1,550 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-09-03.

Related

Other skills, from other repositories

browserwing-admin

Manage and operate BrowserWing — an intelligent browser automation platform. Install dependencies, configure LLM, create/manage/execute automation scripts, use AI-driven exploration to generate scripts, browse the script marketplace, and troubleshoot issues.

MemTensor/MemOS · 47 tokens

mem0-integration

Mem0 memory layer integration for AI agents. Implement persistent, semantic memory for long-term context retention and personalization.

a5c-ai/babysitter · 27 tokens

install-openviking-memory

Install and configure the OpenViking long-term memory plugin for OpenClaw via natural conversation. Once installed, the plugin automatically captures facts from chats and recalls relevant context before each reply (auto-capture + auto-recall, cross-session). Covers prerequisites, install through OpenClaw's plugin…

volcengine/OpenViking · 191 tokens

microsoft-extensions-ai

Build provider-agnostic .NET AI integrations with Microsoft.Extensions.AI, IChatClient, embeddings, middleware, structured output, vector search, and evaluation. USE FOR: building or reviewing .NET code that uses Microsoft.Extensions.AI, Microsoft.Extensions.AI.Abstractions, IChatClient, IEmbeddingGenerator…

managedcode/dotnet-skills · 128 tokens

embeddings-setup

Bring Open Second Brain semantic search online — embedding API key, sqlite-vec extension, first reindex, optional periodic refresh. INVOKE when the user mentions "embeddings", "semantic search", "vector index", or after o2b search check reports vecextension: unavailable, embeddingkey: missing, or any line in its…

itechmeat/open-second-brain · 105 tokens

rag-evaluate-quality

Periodically measure the retrieval quality of the knowledge base using evaluateretrieval (MRR@5, Recall@5, Precision@5) plus getindexstats for health metrics. Run weekly, after significant reindex activity, or when the user reports declining answer quality. Prevents silent index rot and grounds "should we tune X"…

lyonzin/knowledge-rag · 78 tokens