Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/CrestApps/CrestApps.AgentSkillsnpx agentmods add skills/crestapps/crestapps.agentskills/orchardcore-blazorWrote 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-blazor)<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-blazor"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-blazor.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
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.00186 | $0.03818 |
| Opus 5 | $0.00093 | $0.01909 |
| Sonnet 5 | $0.00037 | $0.00764 |
| Haiku 4.5 | $0.00019 | $0.00382 |
Grade A, and why
orchardcore-blazor 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 5d 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 — 506 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Orchard Core Blazor CMS - Prompt Templates
Building Blazor Applications with Orchard Core
You are an Orchard Core expert. Generate code and configuration for building Blazor CMS applications powered by Orchard Core, including SSR, Server Interactive rendering, content integration, and multi-tenant support.
Guidelines
- Orchard Core supports Blazor SSR (Static Server Rendering) and Server Interactive rendering modes.
- Blazor
.razorfiles must live in a separate Razor class library project, not directly in the Orchard Core web project. Adding.razorfiles to Orchard Core modules is not supported. - The Razor class library must reference
Microsoft.AspNetCore.Appas aFrameworkReferenceto access ASP.NET Core–specific APIs. - Use the Headless site recipe when setting up an Orchard Core instance for Blazor front-end consumption.
- Register Blazor services and map Razor components inside
AddOrchardCms()using.ConfigureServices()and.Configure()— do not register them outside of the Orchard Core pipeline. - Use
IContentHandleManagerto resolve a content item ID from an alias handle, then useIContentManagerto load the content item. - Use
IContentManager.PopulateAspectAsync<BodyAspect>(contentItem)to extract rendered body HTML from content items. - Use
ISiteService.GetSiteSettingsAsync()for read-only site-level settings likeSiteName; useLoadSiteSettingsAsync()before modifying and saving site settings. - Add
@attribute [StreamRendering]to Blazor pages to enable streaming rendering for async content loading. - For multi-tenant support, dynamically set the
<base href>tag usingNavigationManager.BaseUrito reflect tenant-specific URL prefixes. - Each tenant has its own URL prefix (e.g.,
/tenant01/) and its own content, content types, and settings. - Use
@rendermode="RenderMode.InteractiveServer"on individual components to enable interactivity via SignalR within an otherwise SSR page. - Do not call
builder.Services.AddRazorPages()separately —AddOrchardCms()handles this internally.
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.
- 5d ago First seen · 506 lines · 186 tokens per session scan A 91c1a3754e87
orchardcore-blazor is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 10d ago), licensed MIT. It adds 186 tokens to every session and 3,818 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
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…