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 agentmods add skills/iwritec0de/wp-dev/wordpress-i18nnpx skills add iwritec0de/wp-dev --skill wordpress-i18ngit clone --depth 1 https://github.com/iwritec0de/wp-devWhat 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 | $0.00118 | $0.02617 |
| Opus 5 | $0.00059 | $0.01308 |
| Sonnet 5 | $0.00024 | $0.00523 |
| Haiku 4.5 | $0.00012 | $0.00262 |
Grade A, and why
wordpress-i18n 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 yesterday.
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 — 338 lines — stays where its author put it; the contents beside it link to each section on GitHub.
WordPress Internationalization (i18n) & Localization (l10n)
This skill covers making WordPress plugins and themes translatable, generating translation files, and handling JavaScript translations.
Core Concepts
| Term | Meaning |
|---|---|
| i18n | Internationalization — preparing code for translation |
| l10n | Localization — translating strings for a specific locale |
| Text domain | Unique identifier matching your plugin/theme slug |
| POT file | Portable Object Template — source strings catalog |
| PO file | Portable Object — translated strings for one locale |
| MO file | Machine Object — compiled PO for runtime use |
| JSON | JavaScript translation files (WP 5.0+) |
PHP Translation Functions
Basic Functions
// Return translated string (most common)
$label = __( 'Settings', 'myplugin' );
// Echo translated string
_e( 'Save Changes', 'myplugin' );
// Singular/plural
$message = sprintf(
/* translators: %d: number of items */
_n( '%d item found', '%d items found', $count, 'myplugin' ),
$count
);
// Context-disambiguated (same English string, different meaning)
$label = _x( 'Post', 'noun — a blog post', 'myplugin' );
_ex( 'Post', 'verb — to publish', 'myplugin' );
// Singular/plural with context
$label = _nx( '%d item', '%d items', $count, 'cart items', 'myplugin' );
Escaping + Translation Combos
Always use these when outputting translated strings in HTML:
// Escape for HTML body
echo esc_html__( 'Untrusted translated text', 'myplugin' );
esc_html_e( 'Untrusted translated text', 'myplugin' );
// Escape for HTML attributes
echo esc_attr__( 'Button label', 'myplugin' );
esc_attr_e( 'Button label', 'myplugin' );
// Rich HTML — use wp_kses on translated strings containing markup
printf(
wp_kses(
/* translators: %s: settings page URL */
__( 'Configure <a href="%s">settings</a>.', 'myplugin' ),
[ 'a' => [ 'href' => [] ] ]
),
esc_url( $settings_url )
);
Function Reference
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.
- yesterday First seen · 338 lines · 118 tokens per session scan A 08e641b307ba
wordpress-i18n is a skill published in the GitHub repository iwritec0de/wp-dev (1 stars, last pushed 4mo ago), licensed MIT. It adds 118 tokens to every session and 2,617 once invoked, about $0.0006 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-08-31.
Other skills, from other repositories
planning-with-files-ar
تخطيط مستمر قائم على الملفات لعمل وكلاء الذكاء الاصطناعي متعدد الخطوات. يحتفظ بملفات taskplan.md و findings.md و progress.md على القرص، وتحقن خطافات دورة الحياة سياق التخطيط المحدد للمشروع. تقرأ الاستعادة التلقائية ملفات تخطيط المشروع فقط. يمكن للأمر الصريح session-catchup.py --metadata فحص بيانات وصفية لجلسات الوكيل…
kl-consistency-test
Write, calibrate, and debug the prefill-vs-decode logprob (KL) consistency tests in sglang -- the two independent conditions a zero requires (every operator batch-invariant, and the two paths computing the same function), which helper separates them, how to pick a threshold once they hold, and how to localize a…
i18n-localization
Internationalization and localization patterns. Detecting hardcoded strings, managing translations, locale files, RTL support.
dsh-web-documentation
Use when adding or editing dsh-web README files, docs, AGENTS.md instructions, user-facing configuration text, or bilingual documentation pairs.
baoyu-youtube-transcript
Downloads YouTube video transcripts/subtitles and cover images by URL or video ID. Supports multiple languages, translation, chapters, and speaker identification. Caches raw data for fast re-formatting. Use when user asks to "get YouTube transcript", "download subtitles", "get captions", "YouTube字幕", "YouTube封面"…
indication-dossier
Build a source-backed biomedical indication dossier. Use when a research task asks for disease biology, target rationale, patient segmentation, biomarkers, trials, drugs, competitive landscape, or translational evidence.