openclaw 网盘下载
OpenClaw

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

首页 > 技能库 > Drug Pronunciation

Provides correct pronunciation guides for complex drug generic names. Generates phonetic transcriptions using IPA and audio generation markers for medical te...

媒体与内容

作者:AIpoch @AIPOCH-AI

许可证:MIT-0

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

版本:v0.1.0

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

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:aipoch-ai/drug-pronunciation

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill's code and runtime instructions are coherent with a small, local pronunciation helper and do not request credentials or network access, but the documentation overstates coverage and some promised protections are not implemented.

目的

The name/description promise (IPA transcriptions, SSML, syllable breakdown) matches the code's behavior. However, the SKILL.md claims 'Coverage of 1000+ common medications' while the bundled Python database contains only a handful (~5) of drugs — that is an overclaim. The README also mentions R scripts but the package only contains a Python script.

说明范围

Runtime instructions and the script stay within the expected scope: they produce pronunciation JSON/SSML and optionally write an output file. The SKILL.md lists a security checklist (input validation, no ../ traversal, sanitized errors) but the provided script does not validate or sanitize the output path or inputs beyond argparse choices. The script does not read unrelated files, environment variables, or contact external endpoints.

安装机制

There is no install spec and requirements.txt is effectively empty. SKILL.md suggests pip install -r requirements.txt, but no external packages are required. No downloads or archive extraction are present.

证书

The skill requests no environment variables, credentials, or config paths. Its runtime behavior (local lookups and optional local file write) is proportionate to the described functionality.

持久

The skill is not always-enabled and does not request persistent/system-wide privileges. It does not modify other skills or agent-wide configuration.

综合结论

This package is a small, local pronunciation helper and appears safe to run, but note: (1) SKILL.md claims 1000+ drugs while the included database contains only a few entries — do not assume broad coverage; (2) the script writes to whatever path you pass via --output without validating the path (it could overwrite files if you give a sensitive path), so run it in a sandbox or specify a safe output location; (3) the checklist in SKILL.md (input…

安装(复制给龙虾 AI)

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

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Drug Pronunciation」。简介:Provides correct pronunciation guides for complex drug generic names. Generates…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aipoch-ai/drug-pronunciation/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: drug-pronunciation
description: Provides correct pronunciation guides for complex drug generic names.
  Generates phonetic transcriptions using IPA and audio generation markers for medical
  terminology.
version: 1.0.0
category: Education
tags:
- pharmacology
- pronunciation
- medical-terminology
- education
author: The King of Skills
license: MIT
status: Draft
risk_level: Medium
skill_type: Tool/Script
owner: The King of Skills
reviewer: ''
last_updated: '2026-02-06'
---

# Drug Pronunciation

Medical drug name pronunciation assistant with IPA phonetics and syllable breakdown.

## Features

- IPA phonetic transcriptions
- Syllable-by-syllable breakdown
- Emphasis markers
- Audio generation markers (SSML-compatible)
- Coverage of 1000+ common medications

## Parameters

| Parameter | Type | Default | Required | Description |
|-----------|------|---------|----------|-------------|
| `--drug`, `-d` | string | - | Yes | Drug name (generic or brand) |
| `--format`, `-f` | string | detailed | No | Output format (ipa, simple, detailed) |
| `--list`, `-l` | flag | - | No | List all available drugs |
| `--output`, `-o` | string | - | No | Output JSON file path |

## Output Format

```json
{
  "drug_name": "string",
  "ipa_transcription": "string",
  "syllable_breakdown": ["string"],
  "emphasis": "string",
  "audio_ssml": "string",
  "common_errors": ["string"]
}
```

## Risk Assessment

| Risk Indicator | Assessment | Level |
|----------------|------------|-------|
| Code Execution | Python/R scripts executed locally | Medium |
| Network Access | No external API calls | Low |
| File System Access | Read input files, write output files | Medium |
| Instruction Tampering | Standard prompt guidelines | Low |
| Data Exposure | Output files saved to workspace | Low |

## Security Checklist

- [ ] No hardcoded credentials or API keys
- [ ] No unauthorized file system access (../)
- [ ] Output does not expose sensitive information
- [ ] Prompt injection protections in place
- [ ] Input file paths validated (no ../ traversal)
- [ ] Output directory restricted to workspace
- [ ] Script execution in sandboxed environment
- [ ] Error messages sanitized (no stack traces exposed)
- [ ] Dependencies audited
## Prerequisites

```bash
# Python dependencies
pip install -r requirements.txt
```

## Evaluation Criteria

### Success Metrics
- [ ] Successfully executes main functionality
- [ ] Output meets quality standards
- [ ] Handles edge cases gracefully
- [ ] Performance is acceptable

### Test Cases
1. **Basic Functionality**: Standard input → Expected output
2. **Edge Case**: Invalid input → Graceful error handling
3. **Performance**: Large dataset → Acceptable processing time

## Lifecycle Status

- **Current Stage**: Draft
- **Next Review Date**: 2026-03-06
- **Known Issues**: None
- **Planned Improvements**: 
  - Performance optimization
  - Additional feature support