← 返回 Skills 市场
Jewish Hebrew Text Tools
作者
Abraham Perl
· GitHub ↗
· v1.0.0
· MIT-0
46
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install hebrew-text-tools
功能描述
Hebrew text processing utilities: transliteration, gematria calculation, nikud removal, letter identification, and Hebrew number formatting. Pure Python, no...
使用说明 (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)
安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install hebrew-text-tools - 安装完成后,直接呼叫该 Skill 的名称或使用
/hebrew-text-tools触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
常见问题
Jewish Hebrew Text Tools 是什么?
Hebrew text processing utilities: transliteration, gematria calculation, nikud removal, letter identification, and Hebrew number formatting. Pure Python, no... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 46 次。
如何安装 Jewish Hebrew Text Tools?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install hebrew-text-tools」即可一键安装,无需额外配置。
Jewish Hebrew Text Tools 是免费的吗?
是的,Jewish Hebrew Text Tools 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Jewish Hebrew Text Tools 支持哪些平台?
Jewish Hebrew Text Tools 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Jewish Hebrew Text Tools?
由 Abraham Perl(@abeperl)开发并维护,当前版本 v1.0.0。
推荐 Skills