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 skills add CrestApps/CrestApps.AgentSkills --skill orchardcore-decoupled-cmsgit 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-decoupled-cms)<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>- NVIDIA SkillSpector warn
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.
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.00202 | $0.03458 |
| Opus 5 | $0.00101 | $0.01729 |
| Sonnet 5 | $0.00040 | $0.00692 |
| Haiku 4.5 | $0.00020 | $0.00346 |
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.
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.TargetsNuGet package to add Orchard Core CMS capabilities to any ASP.NET Core app. - Call
builder.Services.AddOrchardCms()inProgram.csto register all Orchard Core services. Do not callbuilder.Services.AddRazorPages()separately —AddOrchardCms()invokes it internally. - Call
app.UseOrchardCore()to add the Orchard Core middleware pipeline. Remove default ASP.NET middleware likeUseRouting(),UseAuthorization(), andMapRazorPages()— Orchard Core handles these internally. - Use the Blank site or Headless site recipe during setup for decoupled/headless scenarios.
- Inject
OrchardCore.IOrchardHelper(aliased asOrchard) in Razor Pages to load and render content items. - Load content items by their immutable
ContentItemIdusingOrchard.GetContentItemByIdAsync(id). - Load content items by alias using
Orchard.GetContentItemByHandleAsync($"alias:{slug}"). - Access standard properties like
DisplayText,ContentItemId,Author, andContentTypedirectly on the content item object. - Access dynamic part data through the
Contentproperty (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.
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.
- 4d ago First seen · 459 lines · 202 tokens per session scan A e9decfe35b20
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.
Other skills, from other repositories
add-permission
Add a permission constant across backend and frontend.
gen-types
Regenerate frontend API types from the backend OpenAPI spec.
frontmcp-development
Use when building any FrontMCP server component other than a tool (for tools, use create-tool). Covers @Resource static resources and parameterized URI templates; @Prompt reusable prompts (RAG, multi-turn); @Provider singleton dependency-injection providers (database pools, API clients); @Agent autonomous LLM agents…
new-feature
Scaffold a full-stack feature from entity to frontend page.
nextjs-framework
Explains how to configure App Router, implement server/client components, optimize data fetching, and secure routes. Use when the user mentions: 'add an authenticated route', 'migrate to App Router', 'optimize fetch caching', or 'fix RSC hydration'.
regenerate-api
Regenerate the AppointMe frontend API client (orval/TanStack Query hooks + TypeScript schemas) after the backend OpenAPI surface changes. Use this whenever backend endpoints, request/response DTOs, or other contract-affecting types are added, removed, or modified — e.g. after editing files under src/AppointMe.Api…