orchardcore-azure-media

orchardcore-azure-media is a skill for Claude Code, Codex from CrestApps/CrestApps.AgentSkills. It costs 132 tokens per session (1,579 once invoked), scanned A, original, MIT.

A guide to storing Orchard Core media files and resized-image caches in Azure Blob Storage, Microsoft's cloud object-storage service. The website continues to serve the media while Azure stores the files.

In plain words
What is it for?
Use it when connecting Orchard Core media to Azure, configuring containers and connection strings, storing resized images, or preparing media for CDN delivery.
Why use it?
It helps move media storage away from the web server's local disk and configure image caching and CDN-related settings correctly.

Skill for Claude CodeCodex

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

Good fit Use it when connecting Orchard Core media to Azure, configuring containers and connection strings, storing resized images, or preparing media for CDN delivery.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-azure-media"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-azure-media.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 132 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,579 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.00132 $0.01579
Opus 5 $0.00066 $0.00790
Sonnet 5 $0.00026 $0.00316
Haiku 4.5 $0.00013 $0.00158

Measured 7d ago against content hash c25c5a4f6949, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

orchardcore-azure-media 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/orchardcore/skills/orchardcore-azure-media/SKILL.md · 151 lines

How it starts

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

Orchard Core Azure Media Storage - Prompt Templates

Module Overview

The OrchardCore.Media.Azure module enables storing media assets in Microsoft Azure Blob Storage instead of the default App_Data file-based store. It provides two features:

  • OrchardCore.Media.Azure.Storage — Replaces the default media store with Azure Blob Storage.
  • OrchardCore.Media.Azure.ImageSharpImageCache — Stores ImageSharp resized image cache in Azure Blob Storage instead of the local file system.

Media is still served by the Orchard Core web site. The Media Cache module fetches assets on the fly from Azure Blob Storage, enabling image resizing through ImageSharp.Web integration. The AssetUrl helpers generate URLs pointing to the Orchard Core web site.

Azure Media Storage Configuration

Guidelines

  • Enable the OrchardCore.Media.Azure.Storage feature.
  • Provide a valid Azure Storage account connection string.
  • The container name must be a valid DNS name and conform to Azure container naming rules (lowercase only).
  • Set CreateContainer to true to auto-create the container on startup; set to false if your container already exists.
  • If the connection string is missing or invalid, the feature will not activate and an error will be logged.
  • Only one storage provider can be active at a time (File Storage, Azure Blob Storage, or Amazon S3 Storage).

Configuration Properties

Property Description Default
ConnectionString Azure Storage account connection string (required). ""
ContainerName Azure Blob container name (lowercase, valid DNS name). ""
BasePath Subdirectory path inside the container for media storage. ""
CreateContainer Whether to create the container on startup if it doesn't exist. true
RemoveContainer Whether the container is deleted when the tenant is removed. false

Basic Configuration

{
  "OrchardCore": {
    "OrchardCore_Media_Azure": {
      "ConnectionString": "DefaultEndpointsProtocol=https;AccountName=myaccount;AccountKey=mykey;EndpointSuffix=core.windows.net",
      "ContainerName": "media",
      "BasePath": "Media",
      "CreateContainer": true,
      "RemoveContainer": false
    }
  }
}

Read the full file on GitHub · 151 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 · 151 lines · 132 tokens per session scan A c25c5a4f6949

Subscribe to this mod's changes

orchardcore-azure-media is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 13d ago), licensed MIT. It adds 132 tokens to every session and 1,579 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

publish-release

Releases a new McpOrchestrator version end to end — version bump PR, tag, and the automated deploy to GitHub Releases, NuGet, and the MCP Registry. Use when asked to release, publish, deploy, ship, or bump the version of McpOrchestrator.

Byggarepop/dotnet-mcp-orchestrator · 63 tokens

agentcore-investigation

Investigate Bedrock AgentCore runtime sessions via CloudWatch Logs Insights — resolve session/trace IDs, query OTEL spans, filter noise, build timelines. Use when debugging AgentCore agent sessions, tracing tool calls, or analyzing latency.

awslabs/mcp · 52 tokens

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

coolify-deployment

Deploys applications, databases, and services on self-hosted Coolify instances, manages environments and env vars, runs infrastructure diagnostics, and performs batch operations. Use when deploying apps to Coolify, managing Coolify servers, debugging deployment issues, setting up databases, or managing Coolify…

monkilabs/opencastle · 63 tokens

alibaba-live-kms-key-mutation-guard

Gate KMS key deletion and disable operations. All data encrypted with a deleted CMK (OSS SSE-KMS, ECS encrypted disks, RDS/PolarDB TDE) becomes permanently and irrecoverably inaccessible. This guard enforces complete CMK dependency audits, deletion window confirmation, and explicit operator approval before any key…

VincentChuWaiChow/vanguard-frontier-agentic · 78 tokens