orchardcore-content-localization

orchardcore-content-localization is a skill for Claude Code, Codex from CrestApps/CrestApps.AgentSkills. It costs 170 tokens per session (1,462 once invoked), scanned A, original, MIT.

A guide to adding multiple languages to Orchard Core content. It covers localized versions of content, language selection, culture cookies, and links between translations.

In plain words
What is it for?
Use it when making content translatable, adding a language picker, configuring culture detection, or generating links to localized content.
Why use it?
It helps developers set up multilingual sites and avoid confusing language-selection and translation-linking behavior.

Skill for Claude CodeCodex

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

Good fit Use it when making content translatable, adding a language picker, configuring culture detection, or generating links to localized content.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-content-localization.svg)](https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-content-localization)
Your own site
<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>
Per session 170 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,462 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 pass 7 Sept 2026
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.00170 $0.01462
Opus 5 $0.00085 $0.00731
Sonnet 5 $0.00034 $0.00292
Haiku 4.5 $0.00017 $0.00146

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

Security

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.

plugins/orchardcore/skills/orchardcore-content-localization/SKILL.md · 216 lines

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.ContentLocalization to manage multiple localized versions of content items.
  • Attach LocalizationPart to any content type that needs multi-language support.
  • Enable OrchardCore.ContentLocalization.ContentCulturePicker to let users switch cultures on the frontend.
  • The ContentCulturePicker redirects to the localized version of the current content item, the homepage localization, or stays on the current page.
  • ContentRequestCultureProvider is 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 CookieRequestCultureProvider cookie and/or ContentRequestCultureProvider can set a cookie based on the current URL.
  • Configure cookie lifetime via OrchardCore_ContentLocalization_CulturePickerOptions:CookieLifeTime in appsettings.json.
  • Use switch_culture_url Liquid filter to generate culture-switching URLs.
  • Use localization_set Liquid 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 sealed modifier.

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;
    }
}

Read the full file on GitHub · 216 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. 5d ago First seen · 216 lines · 170 tokens per session scan A c3fb97cf96f5

Subscribe to this mod's changes

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.

Related

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.

dotnet/maui-labs · 73 tokens

new-page

Create a frontend page with routing, i18n, and navigation.

fpindej/netrock · 13 tokens

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.

znlgis/opengis-skills · 55 tokens

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.

monkilabs/opencastle · 46 tokens

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…

sbroenne/mcp-server-powerpoint · 122 tokens

sfcc-localization

Skill "sfcc-localization" from taurgis/sfcc-dev-mcp, covering localization skill, quick checklist, locale basics, core principles and minimal examples.

taurgis/sfcc-dev-mcp · 0 tokens