中文语义理解增强技能。通过多层语义解析、文化上下文识别、方言适配、歧义消解等模块,提升OpenClaw对中文用户意图的理解准确率,支持成语/俗语/网络用语/行业术语的智能识别,非简单翻译型处理。
Version: 1.0.0
Category: NLP Enhancement / 自然语言处理增强
Language: zh-CN
Billing: SkillPay (免费100次,之后0.001 USDT/次)
Free Trial: 100 free calls per user
Demo Mode: ✅ Available
专为中文语境打造的语义理解增强层,让OpenClaw真正"懂中文",而非简单翻译英文逻辑。
💡 提示: 积分永不过期,用多少扣多少!
If you find this skill helpful, you can support the developer:
EVM Address: 0xf8ea28c182245d9f66f63749c9bbfb3cfc7d4815
Your support helps maintain and improve this skill!
from scripts.zh_tokenizer import enhanced_tokenize
from scripts.intent_enhancer import enhance_intent
# 中文语义分析
text = "他有点意思"
result = enhanced_tokenize(text)
# 输出: {"tokens": [...], "entities": [...], "domain": "general"}
# 意图增强
enhanced = enhance_intent(text, result)
# 输出: {"original": "他有点意思", "resolved": "他很有趣", ...}