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-content-localizationgit 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-content-localization)<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-content-localization"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-content-localization.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.00170 | $0.01462 |
| Opus 5 | $0.00085 | $0.00731 |
| Sonnet 5 | $0.00034 | $0.00292 |
| Haiku 4.5 | $0.00017 | $0.00146 |
Grade A, and why
orchardcore-content-localization 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 — 216 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Orchard Core Content Localization - Prompt Templates
Configure Content Localization
You are an Orchard Core expert. Generate code and configuration for content localization including LocalizationPart, ContentCulturePicker, culture cookies, Liquid filters, and localization set management.
Guidelines
- Enable
OrchardCore.ContentLocalizationto manage multiple localized versions of content items. - Attach
LocalizationPartto any content type that needs multi-language support. - Enable
OrchardCore.ContentLocalization.ContentCulturePickerto let users switch cultures on the frontend. - The
ContentCulturePickerredirects to the localized version of the current content item, the homepage localization, or stays on the current page. ContentRequestCultureProvideris added as the first culture provider when the picker feature is enabled, setting the thread culture based on the matching content item URL.- Cookie behavior is configurable: the picker can set a
CookieRequestCultureProvidercookie and/orContentRequestCultureProvidercan set a cookie based on the current URL. - Configure cookie lifetime via
OrchardCore_ContentLocalization_CulturePickerOptions:CookieLifeTimeinappsettings.json. - Use
switch_culture_urlLiquid filter to generate culture-switching URLs. - Use
localization_setLiquid filter to retrieve the content item for a specific culture from a localization set. - All recipe JSON must be wrapped in
{ "steps": [...] }. - All C# classes must use the
sealedmodifier.
Enabling Content Localization Features
{
"steps": [
{
"name": "Feature",
"enable": [
"OrchardCore.ContentLocalization",
"OrchardCore.ContentLocalization.ContentCulturePicker"
],
"disable": []
}
]
}
Attaching LocalizationPart to a Content Type
Attach LocalizationPart to a content type so it can be translated into multiple cultures:
using OrchardCore.ContentManagement.Metadata;
using OrchardCore.ContentManagement.Metadata.Settings;
public sealed class Migrations : DataMigration
{
private readonly IContentDefinitionManager _contentDefinitionManager;
public Migrations(IContentDefinitionManager contentDefinitionManager)
{
_contentDefinitionManager = contentDefinitionManager;
}
public async Task<int> CreateAsync()
{
await _contentDefinitionManager.AlterTypeDefinitionAsync("Article", type => type
.WithPart("LocalizationPart")
);
return 1;
}
}
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 · 216 lines · 170 tokens per session scan A c3fb97cf96f5
orchardcore-content-localization is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 10d ago), licensed MIT. It adds 170 tokens to every session and 1,462 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
maui-localization-theming
Implement MAUI localization and theming. USE FOR: RESX/AppResources, runtime culture switching, RTL/FlowDirection, platform language metadata, AppThemeBinding, DynamicResource, light/dark/system themes, UserAppTheme. DO NOT USE FOR: general layout, accessibility audits, icon/splash assets.
new-page
Create a frontend page with routing, i18n, and navigation.
tongwen
Use when translating engineering CAD drawings between languages — DWG text extraction, translation workspace with terminology management, quality-checked write-back. TongWen (同文): local-first CAD/BIM lossless translation suite for AutoCAD 2019-2026.
contentful-cms
Creates Contentful content types, queries entries via GraphQL/REST, runs CLI migrations, and manages assets and locales. Use when building or modifying Contentful content models, writing queries, or migrating content.
powerpoint-cli
PowerPoint CLI automation skill for Windows presentations. Use when a coding agent needs token-efficient, scriptable, or unattended PowerPoint automation via pptcli commands. Best for CI/CD, scheduled jobs, batch processing, PowerShell workflows, and bulk deck edits. Supports slides, shapes, text frames, tables…
sfcc-localization
Skill "sfcc-localization" from taurgis/sfcc-dev-mcp, covering localization skill, quick checklist, locale basics, core principles and minimal examples.