orchardcore-ai-documents-azure-storage

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

An Orchard Core storage integration that saves uploaded AI document files in Azure Blob Storage. Azure Blob Storage is Microsoft's cloud service for storing files and other unstructured data.

In plain words
What is it for?
Use it when an Orchard Core site needs AI document files stored in Azure Blob Storage, with the connection and container configured separately.
Why use it?
It moves document files to Azure while leaving document extraction, text chunking, embeddings, indexing, and retrieval to the existing AI Documents workflow. It does not create the search index or choose the search provider.

Skill for Claude CodeCodex

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

Good fit Use it when an Orchard Core site needs AI document files stored in Azure Blob Storage, with the connection and container configured separately.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-ai-documents-azure-storage"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-ai-documents-azure-storage.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 129 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,705 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.00129 $0.01705
Opus 5 $0.00064 $0.00852
Sonnet 5 $0.00026 $0.00341
Haiku 4.5 $0.00013 $0.00170

Measured 10d ago against content hash dbb98a5ddc92, 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-azure-storage 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 10d 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-azure-storage/SKILL.md · 175 lines

How it starts

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

Orchard Core AI Documents Azure Blob Storage

Configure Azure Blob document storage

You are an Orchard Core expert. Configure CrestApps AI Documents to place uploaded document files in Azure Blob Storage while preserving the normal document extraction, chunking, embedding, indexing, and RAG workflow.

Guidelines

  • Enable the exact feature ID CrestApps.OrchardCore.AI.Documents.Azure.
  • This feature depends on AI Documents through ChatInteractionsConstants.Feature.ChatDocuments; it enables the base document capability by dependency rather than replacing its processing pipeline.
  • The feature changes only the IDocumentFileStore implementation. It does not create an index, generate embeddings, or select a vector-search backend.
  • If either ConnectionString or ContainerName is empty, the feature logs an error and leaves the existing IDocumentFileStore registration unchanged rather than registering the Azure-backed replacement.
  • Install CrestApps.OrchardCore.AI.Documents.Azure in the web or startup project.
  • Keep connection strings in user secrets, environment variables, managed identity configuration, or a production secret store; never place production keys in recipes or source control.
  • Use a lowercase Azure-valid container name. Configuration normalizes the container name to lowercase.
  • Treat the container lifecycle options carefully for multi-tenant installations, especially if tenants share one container.

What the feature registers

Registration Purpose
AIDocumentBlobStorageOptionsConfiguration Binds the tenant shell configuration to AIDocumentBlobStorageOptions.
BlobFileStore Orchard Core Azure Blob file-system implementation.
DefaultDocumentFileStore Wraps the blob store and replaces the default IDocumentFileStore.
AIDocumentBlobContainerTenantEvents Creates or removes tenant storage during tenant lifecycle events.

AIDocumentBlobStorageOptions derives from MediaBlobStorageOptionsBase. Its storage settings therefore include the connection string, container name, base path, create, and removal behavior.

Read the full file on GitHub · 175 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. 10d ago First seen · 175 lines · 129 tokens per session scan A dbb98a5ddc92

Subscribe to this mod's changes

orchardcore-ai-documents-azure-storage is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 12d ago), licensed MIT. It adds 129 tokens to every session and 1,705 once invoked, about $0.0006 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

aspire

Build, upgrade, and operate Aspire 13.5.x C# or TypeScript application hosts with the current CLI, AppHost, ServiceDefaults, integrations, dashboard, testing, MCP, and deployment patterns for distributed apps. USE FOR: Aspire.AppHost.Sdk, Aspire.Hosting., DistributedApplication.CreateBuilder, apphost.mts…

managedcode/dotnet-skills · 145 tokens

azure-functions

Build, review, or migrate Azure Functions in .NET with correct execution model, isolated worker setup, bindings, DI, and Durable Functions patterns. USE FOR: working on Azure Functions in .NET; migrating from the in-process model to the isolated worker model; adding Durable Functions, bindings, or host configuration.…

managedcode/dotnet-skills · 113 tokens

manage-file-storage

Swap or remove the file storage provider (S3/MinIO).

fpindej/netrock · 14 tokens

alibaba-event-driven-architecture-review

Review Alibaba Cloud EventBridge, MNS (Message Notification Service), RocketMQ, and MSE event-driven designs — dead-letter queues, message ordering, idempotency, retry storm prevention, schema registry, and consumer group lag monitoring.

VincentChuWaiChow/vanguard-frontier-agentic · 55 tokens

alibaba-mse-microservice-engine

Configure and operate Alibaba MSE (Microservice Engine) — Nacos service discovery and configuration management, Sentinel rate limiting and circuit breaking, Seata distributed transactions, and ARMS APM for microservices observability.

VincentChuWaiChow/vanguard-frontier-agentic · 52 tokens

alibaba-serverless-production-readiness

Review Function Compute 3.0 (FC3), SAE (Serverless App Engine), and EDAS for production readiness — cold start optimization, VPC binding, RAM role injection, ARMS distributed tracing, security group rules, concurrency limits, and SLA-readiness.

VincentChuWaiChow/vanguard-frontier-agentic · 62 tokens