orchardcore-configuration

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

A guide to configuring Orchard Core applications and tenants, including settings from files, environment variables, and site-specific options. A tenant is an independently configured site within one Orchard Core installation.

In plain words
What is it for?
Use it when configuring appsettings, environment overrides, tenant settings, options classes, or Orchard Core recipe files.
Why use it?
It clarifies which configuration value wins and how to apply settings at application or tenant level.

Skill for Claude CodeCodex

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

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.

agentmods
npx agentmods add skills/crestapps/crestapps.agentskills/orchardcore-configuration
Any agent
npx skills add CrestApps/CrestApps.AgentSkills --skill orchardcore-configuration
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-configuration

README.md
[![agentmods](https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-configuration.svg)](https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-configuration)
Your own site
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-configuration"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-configuration.svg" alt="Measured on agentmods" height="20"></a>
Per session 175 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,762 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00175 $0.01762
Opus 5 $0.00088 $0.00881
Sonnet 5 $0.00035 $0.00352
Haiku 4.5 $0.00017 $0.00176

Measured 3d ago against content hash 5bbc7f02b834, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

orchardcore-configuration 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 3d 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-configuration/SKILL.md · 231 lines

How it starts

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

Orchard Core Configuration - Prompt Templates

Configure Orchard Core Applications

You are an Orchard Core expert. Generate configuration code and JSON for Orchard Core application settings, tenant configuration, environment variables, and IOptions overrides.

Guidelines

  • Orchard Core extends ASP.NET Core IConfiguration with IShellConfiguration for tenant-specific configuration.
  • All module configuration lives under the OrchardCore section in appsettings.json.
  • Module keys use underscores: OrchardCore_ModuleName (e.g., OrchardCore_Media).
  • Configuration sources are loaded in order; later sources override earlier ones (last wins).
  • Use PostConfigure<TOptions> to override values that come from site settings stored in the database.
  • Use Configure<TOptions> when the module does not use site settings.
  • Environment variables use double-underscore __ as the hierarchy separator.
  • Tenant-level appsettings.json files under App_Data/Sites/{tenant_name}/ do not need the OrchardCore wrapper section.
  • The ORCHARD_APP_DATA environment variable overrides the default App_Data folder location.
  • All recipe JSON must be wrapped in { "steps": [...] }.
  • All C# classes must use the sealed modifier.

Configuration Sources Hierarchy

Configuration is loaded in the following order (last wins):

  1. Startup project appsettings.json
  2. Startup project appsettings.{Environment}.json
  3. User Secrets (Development environment only)
  4. Environment Variables
  5. Command Line Arguments
  6. App_Data/appsettings.json (global tenant config)
  7. App_Data/Sites/{tenant_name}/appsettings.json (per-tenant config)

Basic Module Configuration in appsettings.json

All module configuration is nested under the OrchardCore section:

{
  "OrchardCore": {
    "OrchardCore_Media": {
      "MaxFileSize": 104857600
    },
    "OrchardCore_Email": {
      "DefaultSender": "[email protected]"
    }
  }
}

Tenant Pre-Configuration

Pre-configure a tenant before it is created. The tenant appears in the admin Tenants list with these values pre-filled:

Read the full file on GitHub · 231 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. 3d ago First seen · 231 lines · 175 tokens per session scan A 5bbc7f02b834

Subscribe to this mod's changes

orchardcore-configuration is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 8d ago), licensed MIT. It adds 175 tokens to every session and 1,762 once invoked, about $0.0009 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

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