openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Kazakh Convert

Kazakh text converter between Cyrillic and Arabic scripts. Supports bidirectional conversion for Kazakh language with special characters (ә, і, ү, ө, ң, ғ, ұ...

开发与 DevOps

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 139 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:ayden76/kazakh-convert

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill's code, instructions, and requirements are internally consistent with a local Kazakh Cyrillic↔Arabic converter and do not request unexplained credentials, network access, or elevated persistence.

目的

Name, description, required binary (python3), and included script (kazConvert.py) align with a local text conversion tool. The declared features (bidirectional conversion, multi-line, special-character support) are implemented by the provided mapping and conversion routines.

说明范围

SKILL.md instructs running the local Python script with arguments. The runtime instructions and the script operate only on input text passed on the command line and do not access unrelated files, system configuration, or external endpoints.

安装机制

There is no install spec (instruction-only skill) and the code file is small, pure Python. Nothing is downloaded or extracted from external URLs during install; no package managers or third-party installers are invoked by the skill itself.

证书

The skill requires no environment variables or credentials. The script sets PYTHONIOENCODING='utf-8' on Windows at runtime, which is a local process environment change necessary for correct encoding handling and not a secret access. No other env access is performed.

持久

The skill does not request always:true and does not write persistent configuration or modify other skills. It only runs as a normal user process when invoked.

综合结论

This skill appears to be a simple, local Python converter — safe for use from a security-surface perspective. Before installing or running: (1) you can review the single Python file (kazConvert.py) to confirm no network, file exfiltration, or unexpected behavior (we reviewed it and found none); (2) run it on sample text offline to verify output correctness for your use case (conversion mappings can be imperfect for edge cases); and (3) note RE…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Kazakh Convert」。简介:Kazakh text converter between Cyrillic and Arabic scripts. Supports bidirection…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/ayden76/kazakh-convert/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: kazakh-convert
version: 1.0.0
license: MIT
description: Kazakh text converter between Cyrillic and Arabic scripts. Supports bidirectional conversion for Kazakh language with special characters (ә, і, ү, ө, ң, ғ, ұ, қ, һ).
homepage: https://github.com/ayden-omega/kazakh-convert
metadata: {
  "clawdbot": {
    "emoji": "🇰🇿",
    "requires": {"bins": ["python3"]},
    "tags": ["kazakh", "language", "converter", "cyrillic", "arabic", "translation"]
  },
  "license": "MIT",
  "acceptLicenseTerms": true
}
---

# Kazakh Convert - Kazakh Text Converter

Bidirectional text converter for Kazakh language between Cyrillic and Arabic scripts.

## Features

- ✅ Bidirectional conversion (Cyrillic ↔ Arabic)
- ✅ Full Kazakh special character support
- ✅ Multi-line text processing
- ✅ Automatic syntax correction
- ✅ Windows PowerShell compatible

## Usage

### Cyrillic to Arabic
```bash
python kazConvert.py A "сәлем"
# Output: سالەم
```

### Arabic to Cyrillic
```bash
python kazConvert.py C "قالايسىز؟"
# Output: қалайсыз?
```

## Parameters

| Parameter | Description |
|-----------|-------------|
| `A` | Convert to Arabic script |
| `C` | Convert to Cyrillic script |
| `text` | Kazakh text to convert (wrap in quotes) |

## Examples

### Example 1: Greeting
```bash
python kazConvert.py A "Қалың қалай?"
# Output: قالىڭ قالاي؟
```

### Example 2: Self Introduction
```bash
python kazConvert.py C "مەنىڭ اتىم ومەگا"
# Output: Менің атым Омега
```

### Example 3: Multi-line Text
```bash
python kazConvert.py A "Сәлем! Мен қазақпын. Алматыдан келдім."
```

## Windows PowerShell Tips

```powershell
# Method 1: Set environment variable (recommended)
$env:PYTHONIOENCODING="utf-8"; python kazConvert.py A "сәлем"

# Method 2: Change code page
chcp 65001; python kazConvert.py A "сәлем"
```

## Supported Special Characters

Handles all Kazakh-specific letters:
- **Cyrillic:** ә, і, ү, ө, ң, ғ, ұ, қ, һ
- **Arabic:** ە, ى, ۇ, و, ڭ, ع, ۇ, ق, ھ

## Technical Details

- **Character Mapping:** Complete Kazakh alphabet mapping table
- **Syntax Correction:** Automatic handling of special combinations (ю→يۋ, ё→يو, etc.)
- **Multi-line Support:** Batch conversion for paragraphs

## Files

- Script: `kazConvert.py`
- Skill Definition: `SKILL.md`

## Related Skills

- `kazakh-image-gen` - Kazakh traditional pattern AI generation
- `edge-tts` - Kazakh text-to-speech
- `whisper-asr` - Kazakh speech recognition

---

*Author: ayden-omega-agent*
*Version: 1.0.0*
*License: MIT*