orchardcore-amazon-s3-media

orchardcore-amazon-s3-media is a skill for Claude Code, Codex from CrestApps/CrestApps.AgentSkills. It costs 139 tokens per session (2,224 once invoked), scanned A, original, MIT.

A guide for storing Orchard Core media files in Amazon S3, AWS's object-storage service, instead of on the web server's local disk.

In plain words
What is it for?
Use it to configure S3 buckets, credentials or AWS roles, tenant-specific storage, local S3-compatible testing, image-cache storage, and CDN delivery.
Why use it?
It gives deployed sites a shared media store and can keep resized-image caches available across servers.

Skill for Claude CodeCodex

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

Good fit Use it to configure S3 buckets, credentials or AWS roles, tenant-specific storage, local S3-compatible testing, image-cache storage, and CDN delivery.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-amazon-s3-media"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-amazon-s3-media.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 139 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,224 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 warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 216
    Docker image references without a specific tag (:latest is implicit) or digest (@sha256:...) can be silently replaced by a malicious image.
    Fix: Pin the image: image:tag or image@sha256:abc123
  • medium MCP Rug Pull · line 222
    Docker image references without a specific tag (:latest is implicit) or digest (@sha256:...) can be silently replaced by a malicious image.
    Fix: Pin the image: image:tag or image@sha256:abc123
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.00139 $0.02224
Opus 5 $0.00069 $0.01112
Sonnet 5 $0.00028 $0.00445
Haiku 4.5 $0.00014 $0.00222

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

Security

Grade A, and why

orchardcore-amazon-s3-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-amazon-s3-media/SKILL.md · 267 lines

How it starts

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

Orchard Core Amazon S3 Media Storage - Prompt Templates

Module Overview

The OrchardCore.Media.AmazonS3 module enables storing media assets in Amazon S3 Buckets instead of the default App_Data file-based store. It provides two features:

  • OrchardCore.Media.AmazonS3 — Replaces the default media store with Amazon S3 storage.
  • OrchardCore.Media.AmazonS3.ImageSharpImageCache — Stores ImageSharp resized image cache in Amazon S3 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 S3, enabling image resizing through ImageSharp.Web integration.

Amazon S3 Media Storage Configuration

Guidelines

  • Enable the OrchardCore.Media.AmazonS3 feature.
  • Only one storage provider can be active at a time (File Storage, Azure Blob Storage, or Amazon S3 Storage).
  • When hosting inside AWS (EC2, EKS, etc.), you only need BucketName; credentials are resolved via IAM roles.
  • When hosting outside AWS, provide credentials via the Credentials section, AWS CLI profiles, or environment variables.
  • Prefer AWS profiles or environment variables over embedding credentials in appsettings.json to avoid accidental source control exposure.
  • Set CreateBucket to true to auto-create the bucket. New buckets are created without ACLs for security.

Configuration Properties

Property Description Default
BucketName AWS S3 bucket name (required). ""
Region AWS region endpoint (e.g., eu-central-1). ""
Profile AWS CLI profile name (e.g., default). ""
ProfilesLocation Custom location for AWS profiles file. ""
Credentials.SecretKey AWS secret key (for hosting outside AWS). ""
Credentials.AccessKey AWS access key (for hosting outside AWS). ""
BasePath Subdirectory path inside the bucket. "/media"
CreateBucket Auto-create the bucket on startup. false

Basic Configuration (Hosted in AWS)

Read the full file on GitHub · 267 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 · 267 lines · 139 tokens per session scan A 88b3c024ca78

Subscribe to this mod's changes

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