orchardcore-data-localization

orchardcore-data-localization is a skill for Claude Code, Codex from CrestApps/CrestApps.AgentSkills. It costs 167 tokens per session (2,099 once invoked), scanned A, original, MIT.

A guide to translating dynamic data in Orchard Core, such as content type names, field labels, permission descriptions, and custom strings. It distinguishes this from translating user-created content or fixed text in code.

In plain words
What is it for?
Use it to configure translation editing and permissions, add custom translation providers, import or export translations, and display translated strings in templates.
Why use it?
It prevents you from using the wrong localization system for the kind of text you need to translate.

Skill for Claude CodeCodex

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

Good fit Use it to configure translation editing and permissions, add custom translation providers, import or export translations, and display translated strings in templates.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-data-localization.svg)](https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-data-localization)
Your own site
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-data-localization"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-data-localization.svg" alt="Measured on agentmods" height="20"></a>
Per session 167 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,099 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.00167 $0.02099
Opus 5 $0.00084 $0.01050
Sonnet 5 $0.00033 $0.00420
Haiku 4.5 $0.00017 $0.00210

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

Security

Grade A, and why

orchardcore-data-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-data-localization/SKILL.md · 259 lines

How it starts

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

Orchard Core Data Localization - Prompt Templates

Configure and Manage Data Localization

You are an Orchard Core expert. Generate code and configuration for data localization including the translation editor, statistics dashboard, permissions, custom providers, recipe import/export, API usage, and Liquid filters.

Guidelines

  • Enable OrchardCore.DataLocalization for database-backed localization of dynamic content (content type names, permission descriptions, custom strings).
  • Use Data Localization for dynamic strings that cannot be handled by static PO files.
  • Use PO files (OrchardCore.Localization) for static UI strings in views and code.
  • Use OrchardCore.ContentLocalization for localizing user-defined content items (not the same as data localization).
  • Built-in providers cover content type display names, content field display names, and permission descriptions.
  • Implement ILocalizationDataProvider to expose custom translatable strings.
  • Localization keys must be human-readable display values, not technical identifiers, because untranslated keys are displayed as-is.
  • Use IDataLocalizer (aliased as D) in Razor views to render translated dynamic strings.
  • Use the d Liquid filter to localize dynamic data strings in Liquid templates.
  • Translations are cached automatically; cache is invalidated when translations are updated through the admin UI.
  • All recipe JSON must be wrapped in { "steps": [...] }.
  • All C# classes must use the sealed modifier, except View Models.

Enabling Data Localization

{
  "steps": [
    {
      "name": "Feature",
      "enable": [
        "OrchardCore.DataLocalization"
      ],
      "disable": []
    }
  ]
}

Permissions

Permission Description
ViewTranslations View translations and statistics (read-only access)
ManageTranslations Edit translations for all cultures
ManageTranslations_{culture} Edit translations for a specific culture (e.g., ManageTranslations_fr-FR)

Read the full file on GitHub · 259 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 · 259 lines · 167 tokens per session scan A 3ce5b429d579

Subscribe to this mod's changes

orchardcore-data-localization is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 10d ago), licensed MIT. It adds 167 tokens to every session and 2,099 once invoked, about $0.0008 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