hebrew-i18n

A guide to adding Hebrew localization to web and mobile applications. Localization means adapting an application to a language and region, including translation, plural forms, dates, right-to-left layout, and mixed Hebrew-English text.

In plain words
What is it for?
Add Hebrew translations to React, Vue, Angular, or Next.js applications, format Hebrew dates and plurals, support right-to-left CSS, and handle mixed-direction text.
Why use it?
A direct translation is not enough: Hebrew changes layout direction and has language rules that affect numbers, dates, and plural wording.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/squadcodercom/squadcoder/hebrew-i18n
Any agent
npx skills add squadcodercom/squadcoder --skill hebrew-i18n
Clone the repo
git clone --depth 1 https://github.com/squadcodercom/squadcoder

Made for: Claude Code, Codex.

Per session 182 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,743 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 94% copy Near-identical to another mod 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 $0.00182 $0.03743
Opus 5 $0.00091 $0.01871
Sonnet 5 $0.00036 $0.00749
Haiku 4.5 $0.00018 $0.00374

Measured 2d ago against content hash 9250516be39d, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

hebrew-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 2d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/generate_i18n.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Origin

This is a copy

94% identical to hebrew-i18n — 2 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.squadcoder/skills/hebrew-i18n/SKILL.md · 371 lines

How it starts

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

Hebrew I18n

Instructions

Step 1: Set Up the I18n Framework

React (react-intl / react-i18next):

import { IntlProvider } from 'react-intl';
import heMessages from './locales/he.json';

function App() {
  return (
    <IntlProvider locale="he" messages={heMessages}>
      <div dir="rtl" lang="he">
        {/* App content */}
      </div>
    </IntlProvider>
  );
}

Vue (vue-i18n):

import { createI18n } from 'vue-i18n';
const i18n = createI18n({
  locale: 'he',
  fallbackLocale: 'en',
  messages: { he: heMessages, en: enMessages },
});

Next.js App Router (next-intl):

// app/[locale]/layout.tsx
import { NextIntlClientProvider } from 'next-intl';
import { getMessages } from 'next-intl/server';

export default async function LocaleLayout({ children, params }) {
  const { locale } = await params;
  const messages = await getMessages();
  return (
    <html lang={locale} dir={locale === 'he' ? 'rtl' : 'ltr'}>
      <body>
        <NextIntlClientProvider messages={messages}>
          {children}
        </NextIntlClientProvider>
      </body>
    </html>
  );
}
// middleware.ts
import createMiddleware from 'next-intl/middleware';
import { routing } from './i18n/routing';
export default createMiddleware(routing);
// i18n/routing.ts
import { defineRouting } from 'next-intl/routing';
export const routing = defineRouting({
  locales: ['he', 'en'],
  defaultLocale: 'he',
});

Angular:

// angular.json -- add Hebrew locale
"i18n": {
  "sourceLocale": "en",
  "locales": {
    "he": "src/locale/messages.he.xlf"
  }
}

Step 2: Hebrew Plural Forms

Hebrew has three plural categories that i18n frameworks must handle:

Category Hebrew Term Count Example
one (singular) יחיד 1 פריט אחד (one item)
two (dual) זוגי 2 שני פריטים (two items) -- uses special dual form
other (plural) רבים 0, 3+ 5 פריטים (5 items)

Read the full file on GitHub · 371 lines

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 2d ago First seen · 371 lines · 182 tokens per session scan A 9250516be39d

Subscribe to this mod's changes

hebrew-i18n is a skill published in the GitHub repository squadcodercom/squadcoder (11 stars, last pushed 2mo ago), licensed MIT. It adds 182 tokens to every session and 3,743 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 0 findings. It is 94% identical to hebrew-i18n, differing in 2 lines, and is treated as a copy.