← Back to Skills Marketplace
abeperl

Jewish Hebrew Text Tools

by Abraham Perl · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
46
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install hebrew-text-tools
Description
Hebrew text processing utilities: transliteration, gematria calculation, nikud removal, letter identification, and Hebrew number formatting. Pure Python, no...
README (SKILL.md)

Hebrew Text Tools

Pure Python utilities for Hebrew text processing. No dependencies, works offline.

Quick Start

# Transliterate Hebrew to Latin
hebrew-tools "שלום עולם"
# Output: shalom olam

# Calculate gematria
hebrew-tools -g "בראשית"
# Output: 913

# Remove nikud (vowel points)
echo "שָׁלוֹם" | hebrew-tools -n
# Output: שלום

# List letter names
hebrew-tools -l "אבג"
# Output: Alef, Bet, Gimel

# Format number as Hebrew letters
hebrew-tools -N 613
# Output: תרי"ג

Commands

Command Description Example
hebrew-tools \x3Ctext> All transformations hebrew-tools "שלום"
hebrew-tools -t \x3Ctext> Transliterate only hebrew-tools -t "תורה" → "torah"
hebrew-tools -g \x3Ctext> Gematria only hebrew-tools -g "חי" → 18
hebrew-tools -n \x3Ctext> Remove nikud hebrew-tools -n "בְּרֵאשִׁית" → "בראשית"
hebrew-tools -l \x3Ctext> Letter names hebrew-tools -l "אב" → [Alef, Bet]
hebrew-tools -r \x3Ctext> Reverse RTL hebrew-tools -r "שלום" → "מולש"
hebrew-tools -N \x3Cnum> Number to letters hebrew-tools -N 26 → "כו"

Output Format (Default)

original: שלום
has_hebrew: True
transliteration: shalom
no_nikud: שלום
gematria: 376
letter_names: [Shin, Lamed, Vav, Mem]

Features

Transliteration

  • Ashkenazi-style pronunciation
  • Handles all Hebrew letters including sofit (final forms)
  • Shin/Sin distinction (dot right/left)
  • Dagesh handling

Gematria

  • Standard Mispar Hechrachi values
  • Supports all Hebrew letters including sofit forms
  • Works with or without nikud

Nikud Removal

  • Removes all Hebrew vowel points and cantillation marks
  • Preserves base letters
  • Handles composite characters

Letter Names

  • Returns English names for each Hebrew letter
  • Sofit forms identified (e.g., "Mem Sofit")
  • Non-Hebrew characters preserved

Hebrew Number Formatting

  • Converts integers to Hebrew letters (Gematria style)
  • Standard abbreviations (e.g., תרי"ג for 613)
  • Range: 1–999

Python API

from scripts.hebrew_tools import transliterate, gematria, remove_nikud

# Transliterate
print(transliterate("תורה"))  # "torah"

# Gematria
print(gematria("חי"))  # 18

# Remove nikud
clean = remove_nikud("בְּרֵאשִׁית")
print(clean)  # "בראשית"

Limitations

  • Transliteration is Ashkenazi-style; Sephardi variants not yet supported
  • Hebrew number formatting only supports 1–999
  • RTL reversal is basic (word-level, not character-level for mixed text)
Usage Guidance
This skill appears to implement the claimed Hebrew text utilities and does not request credentials or network access, but there are mismatches and minor code issues you should address before trusting it: (1) SKILL.md shows a CLI 'hebrew-tools' and a Python import 'scripts.hebrew_tools', yet the included file is 'scripts/hebrew-tools.py' (hyphen). That prevents importing as a module and means the CLI won't be on PATH unless you install/rename it. (2) The transliteration mapping has duplicate/conflicting entries (e.g., 'ת' appears more than once) and some heuristic code checks that look buggy; outputs may be incorrect. Recommended actions: review the source locally, run it in an isolated environment (container or sandbox), rename the file to a valid module name (hebrew_tools.py) or call it directly with 'python scripts/hebrew-tools.py', and validate outputs on test cases you control. Do not provide any credentials (none are needed) and avoid executing unreviewed code on sensitive systems.
Capability Analysis
Type: OpenClaw Skill Name: hebrew-text-tools Version: 1.0.0 The skill bundle provides legitimate Hebrew text processing utilities, including transliteration, gematria calculation, and nikud removal. The implementation in `scripts/hebrew-tools.py` is written in pure Python, contains no external dependencies, and lacks any high-risk behaviors such as network access, file system manipulation, or obfuscation.
Capability Assessment
Purpose & Capability
The name/description match the provided code: transliteration, gematria, nikud removal, letter naming, and number formatting are implemented in the included Python file. However, the SKILL.md expects a CLI named 'hebrew-tools' and a Python import path 'scripts.hebrew_tools', while the provided file is named 'scripts/hebrew-tools.py' (hyphen). That filename prevents importing as a Python module and also there is no install spec to expose a 'hebrew-tools' command on PATH. These mismatches are coherence issues (likely typos or missing install steps) but not direct evidence of malicious intent.
Instruction Scope
Runtime instructions and examples are narrowly scoped to text processing and do not request files, environment variables, or external endpoints. The code likewise performs only local string processing. The SKILL.md's examples assume a CLI and Python API that are not actually importable/installed given the included filename, which is an inconsistency in runtime expectations.
Install Mechanism
There is no install spec (instruction-only), which is low-risk. The package includes a single Python script; no downloads, external packages, or install hooks are specified. The main concern is that the SKILL.md assumes an installed CLI/module but no mechanism to create one is provided.
Credentials
No environment variables, credentials, or config paths are requested. The code does not access network, files beyond stdin/stdout, or environment variables, so requested privileges are proportionate to the stated purpose.
Persistence & Privilege
The skill does not request always:true and does not modify agent/system configurations. Autonomous invocation is allowed by default (platform normal), but the skill itself does not request elevated persistence.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install hebrew-text-tools
  3. After installation, invoke the skill by name or use /hebrew-text-tools
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of Hebrew Text Tools. - Process Hebrew text: transliteration, gematria calculation, nikud (vowel) removal, letter name listing, and Hebrew number formatting. - Pure Python, works offline, no dependencies required. - Provides both CLI commands and a Python API for core operations. - Features Ashkenazi-style transliteration, standard gematria values, and accurate nikud/cantillation removal. - Supports numbers 1–999 for Hebrew letter formatting. - Outputs letter names, original text info, and other properties.
Metadata
Slug hebrew-text-tools
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Jewish Hebrew Text Tools?

Hebrew text processing utilities: transliteration, gematria calculation, nikud removal, letter identification, and Hebrew number formatting. Pure Python, no... It is an AI Agent Skill for Claude Code / OpenClaw, with 46 downloads so far.

How do I install Jewish Hebrew Text Tools?

Run "/install hebrew-text-tools" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Jewish Hebrew Text Tools free?

Yes, Jewish Hebrew Text Tools is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Jewish Hebrew Text Tools support?

Jewish Hebrew Text Tools is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Jewish Hebrew Text Tools?

It is built and maintained by Abraham Perl (@abeperl); the current version is v1.0.0.

💬 Comments