hebrew-nlp-toolkit

hebrew-nlp-toolkit is a skill for Claude Code from skills-il/localization. It costs 107 tokens per session (3,049 once invoked), scanned A, original, MIT.

A guide to processing Hebrew text with language models and related tools. It covers tasks such as generating text, classifying text, finding names and places, analyzing sentiment, and identifying word structure.

In plain words
What is it for?
Use it when building Hebrew search, chat, translation, classification, named-entity recognition, sentiment analysis, morphology, or question-answering features.
Why use it?
It helps developers choose a suitable Hebrew model for a specific text-processing task instead of guessing. It also explains the differences between larger, smaller, and specialized models.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it when building Hebrew search, chat, translation, classification, named-entity recognition, sentiment analysis, morphology, or question-answering features.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/skills-il/localization/hebrew-nlp-toolkit
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 skills-il/localization --skill hebrew-nlp-toolkit
Clone the repo
git clone --depth 1 https://github.com/skills-il/localization

Made for: Claude Code.

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 hebrew-nlp-toolkit

README.md
[![agentmods](https://agentmods.dev/badge/skills/skills-il/localization/hebrew-nlp-toolkit/github.svg)](https://agentmods.dev/skills/skills-il/localization/hebrew-nlp-toolkit)
Your own site
<a href="https://agentmods.dev/skills/skills-il/localization/hebrew-nlp-toolkit"><img src="https://agentmods.dev/badge/skills/skills-il/localization/hebrew-nlp-toolkit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for hebrew-nlp-toolkit

Your own site · 80×15
<a href="https://agentmods.dev/skills/skills-il/localization/hebrew-nlp-toolkit"><img src="https://agentmods.dev/badge/skills/skills-il/localization/hebrew-nlp-toolkit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 107 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,049 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.00107 $0.03049
Opus 5 $0.00053 $0.01524
Sonnet 5 $0.00021 $0.00610
Haiku 4.5 $0.00011 $0.00305

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

Security

Grade A, and why

hebrew-nlp-toolkit 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 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/preprocess_hebrew.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

Copies of this mod

1 near-identical copy found in the catalogue:

hebrew-nlp-toolkit/SKILL.md · 174 lines

How it starts

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

Hebrew NLP Toolkit

Instructions

Step 1: Identify the NLP Task

Task Recommended Model HuggingFace ID Size Notes
Text generation (large) DictaLM 3.0 24B Base dicta-il/DictaLM-3.0-24B-Base 24B Best Hebrew generation, built on Mistral-Small-3.1-24B
Text generation (small) DictaLM 3.0 Nemotron Instruct dicta-il/DictaLM-3.0-Nemotron-12B-Instruct 12B Instruction-tuned, smaller footprint
Reasoning / chain-of-thought DictaLM 3.0 24B Thinking dicta-il/DictaLM-3.0-24B-Thinking 24B Emits explicit thinking blocks before answering
Lightweight / edge DictaLM 3.0 1.7B Thinking (GGUF) dicta-il/DictaLM-3.0-1.7B-Thinking-GGUF 1.7B Runs on laptop / CPU via llama.cpp
Classification / fill-mask DictaBERT dicta-il/dictabert 184M Fast, good accuracy
NER DictaBERT NER dicta-il/dictabert-ner 184M Recognizes PER, GPE, TIMEX, TTL
Sentiment DictaBERT Sentiment dicta-il/dictabert-sentiment 184M Hebrew sentiment classification
Morphology DictaBERT Morph dicta-il/dictabert-morph 184M Prefix segmentation and POS
Hebrew QA DictaBERT HeQ dicta-il/dictabert-heq 184M Extractive question answering
Embeddings (modern) NeoDictaBERT Bilingual Embed dicta-il/neodictabert-bilingual-embed 400M Hebrew-English sentence embeddings
Embeddings (legacy) AlephBERT onlplab/alephbert-base 110M Older baseline for similarity
Speech-to-text ivrit.ai Whisper v3 ivrit-ai/whisper-large-v3 1.55B Fine-tuned on the ivrit.ai Hebrew speech corpus (a 22K+ hour dataset)
Speech-to-text (fast) ivrit.ai Whisper v3 Turbo CT2 ivrit-ai/whisper-large-v3-turbo-ct2 809M CTranslate2, ~3x faster inference

Step 2: Install and Load Model

DictaBERT (base model, fill-mask):

from transformers import AutoTokenizer, AutoModelForMaskedLM

tokenizer = AutoTokenizer.from_pretrained("dicta-il/dictabert")
model = AutoModelForMaskedLM.from_pretrained("dicta-il/dictabert")

dicta-il/dictabert is a masked-LM base with NO classification head. Do not load it with AutoModelForSequenceClassification and run inference, that instantiates a randomly-initialised head and returns meaningless predictions. For classification, either fine-tune it on labeled data first, or use a ready task-specific model such as dicta-il/dictabert-sentiment (sentiment) or dicta-il/dictabert-ner (NER).

Read the full file on GitHub · 174 lines

Files

What ships with it

5 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. 10d ago First seen · 174 lines · 107 tokens per session scan A 56866ae85f47

Subscribe to this mod's changes

hebrew-nlp-toolkit is a skill published in the GitHub repository skills-il/localization (23 stars, last pushed 16d ago), licensed MIT. It adds 107 tokens to every session and 3,049 once invoked, about $0.0005 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-30.

Related

Other skills, from other repositories

developing-genkit-js

Develop AI-powered applications using Genkit in Node.js/TypeScript. Use when the user asks about Genkit, AI agents, flows, or tools in JavaScript/TypeScript, or when encountering Genkit errors, validation issues, type errors, or API problems.

google/skills · 60 tokens

optimize-for-gpu

GPU-accelerates scientific Python on NVIDIA hardware and verifies that the result is correct and faster. Use for CUDA/GPU optimization; CPU-bound NumPy, SciPy, pandas, scikit-learn, NetworkX, scikit-image, vector-search, image-processing, graph, simulation, or file-I/O workloads; CuPy, cuDF, cuML, cuGraph, cuVS…

K-Dense-AI/scientific-agent-skills · 151 tokens

azure-ai-openai-dotnet

Azure OpenAI SDK for .NET. Client library for Azure OpenAI and OpenAI services. Use for chat completions, embeddings, image generation, audio transcription, and assistants. Triggers: "Azure OpenAI", "AzureOpenAIClient", "ChatClient", "chat completions .NET", "GPT-4", "embeddings", "DALL-E", "Whisper", "OpenAI .NET".

microsoft/skills · 92 tokens

rubyllm

Build and maintain Ruby or Rails applications with the RubyLLM AI framework. Use for chats, agents, tools, structured output, media generation, transcription, OCR, moderation, embeddings, reranking, Rails integration, and RubyLLM upgrades; not for contributing to the framework itself.

crmne/ruby_llm · 61 tokens

ax-go-gen

Use when writing Go code with github.com/ax-llm/ax/packages/go for AxGen programs, forward calls, indexed multi-sampling, result pickers, streaming, tools, assertions, traces, usage, and output parsing.

ax-llm/ax · 54 tokens

ax-cpp-gen

Use when writing C++ code with axllm for AxGen programs, forward calls, indexed multi-sampling, result pickers, streaming, tools, assertions, traces, usage, and output parsing.

ax-llm/ax · 48 tokens