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.
npx agentmods add skills/crestapps/crestapps.agentskills/orchardcore-configurationnpx skills add CrestApps/CrestApps.AgentSkills --skill orchardcore-configurationgit clone --depth 1 https://github.com/CrestApps/CrestApps.AgentSkillsWrote 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.
[](https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-configuration)<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>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.
| Model | Per session | Once 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 |
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.
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
IConfigurationwithIShellConfigurationfor tenant-specific configuration. - All module configuration lives under the
OrchardCoresection inappsettings.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.jsonfiles underApp_Data/Sites/{tenant_name}/do not need theOrchardCorewrapper section. - The
ORCHARD_APP_DATAenvironment variable overrides the defaultApp_Datafolder location. - All recipe JSON must be wrapped in
{ "steps": [...] }. - All C# classes must use the
sealedmodifier.
Configuration Sources Hierarchy
Configuration is loaded in the following order (last wins):
- Startup project
appsettings.json - Startup project
appsettings.{Environment}.json - User Secrets (Development environment only)
- Environment Variables
- Command Line Arguments
App_Data/appsettings.json(global tenant config)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:
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.
- 3d ago First seen · 231 lines · 175 tokens per session scan A 5bbc7f02b834
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.
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…
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.…
manage-file-storage
Swap or remove the file storage provider (S3/MinIO).
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.
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.
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.