orchardcore-decoupled-cms

orchardcore-decoupled-cms is a skill for Claude Code, Codex from CrestApps/CrestApps.AgentSkills. It costs 202 tokens per session (3,458 once invoked), scanned A, original, MIT.

A guide to building a decoupled Orchard Core CMS, where Orchard manages content while custom Razor Pages or controllers render the front end. A CMS is software for creating and managing website content.

In plain words
What is it for?
Use it to set up a headless or decoupled site, load content by identifier or alias, create custom rendering pages, and support previews.
Why use it?
It lets developers control the website’s presentation in their own application code while still using Orchard Core for content management.

Skill for Claude CodeCodex

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

Good fit Use it to set up a headless or decoupled site, load content by identifier or alias, create custom rendering pages, and support previews.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-decoupled-cms.svg)](https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-decoupled-cms)
Your own site
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-decoupled-cms"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-decoupled-cms.svg" alt="Measured on agentmods" height="20"></a>
Per session 202 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,458 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: 1 finding, up to high

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 →

  • high Prompt Injection · line 148
    Hidden instructions were detected in comments or invisible text. These could contain malicious directives. Manual review is recommended.
    Fix: Audit all comments and invisible characters. Remove any instructions that direct the agent to perform unauthorized actions. Use plain, reviewable content.
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.00202 $0.03458
Opus 5 $0.00101 $0.01729
Sonnet 5 $0.00040 $0.00692
Haiku 4.5 $0.00020 $0.00346

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

Security

Grade A, and why

orchardcore-decoupled-cms 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 4d 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-decoupled-cms/SKILL.md · 459 lines

How it starts

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

Orchard Core Decoupled CMS - Prompt Templates

Building a Decoupled CMS with Orchard Core

You are an Orchard Core expert. Generate code and configuration for building decoupled CMS applications where the front-end is driven by custom Razor Pages or Controllers while the back-end content management is handled by Orchard Core.

Guidelines

  • A decoupled CMS hosts the front-end and back-end in the same web application, but only the back-end is driven by the CMS. Developers write custom Razor Pages or Controllers for the front-end.
  • Use the OrchardCore.Application.Cms.Core.Targets NuGet package to add Orchard Core CMS capabilities to any ASP.NET Core app.
  • Call builder.Services.AddOrchardCms() in Program.cs to register all Orchard Core services. Do not call builder.Services.AddRazorPages() separately — AddOrchardCms() invokes it internally.
  • Call app.UseOrchardCore() to add the Orchard Core middleware pipeline. Remove default ASP.NET middleware like UseRouting(), UseAuthorization(), and MapRazorPages() — Orchard Core handles these internally.
  • Use the Blank site or Headless site recipe during setup for decoupled/headless scenarios.
  • Inject OrchardCore.IOrchardHelper (aliased as Orchard) in Razor Pages to load and render content items.
  • Load content items by their immutable ContentItemId using Orchard.GetContentItemByIdAsync(id).
  • Load content items by alias using Orchard.GetContentItemByHandleAsync($"alias:{slug}").
  • Access standard properties like DisplayText, ContentItemId, Author, and ContentType directly on the content item object.
  • Access dynamic part data through the Content property (a JSON document), e.g., blogPost.Content.MarkdownBodyPart.Markdown.
  • Use Orchard.MarkdownToHtmlAsync((string) contentItem.Content.MarkdownBodyPart.Markdown) to convert Markdown content to HTML.
  • Use Orchard.ConsoleLog(contentItem) during development to inspect a content item's full JSON structure in the browser console.
  • Attach AliasPart to content types that need SEO-friendly URL slugs.
  • Configure AliasPart with a Liquid pattern like {{ ContentItem | display_text | slugify }} to auto-generate aliases from titles.
  • Attach PreviewPart to content types to enable live preview during editing, using a pattern like /blogpost/{{ ContentItem.Content.AliasPart.Alias }} to route previews to custom Razor Pages.

Read the full file on GitHub · 459 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. 4d ago First seen · 459 lines · 202 tokens per session scan A e9decfe35b20

Subscribe to this mod's changes

orchardcore-decoupled-cms is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 10d ago), licensed MIT. It adds 202 tokens to every session and 3,458 once invoked, about $0.0010 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.