
from humanize50
Generate or rewrite Chinese communication copy to sound more natural and human, with a scorer-driven optimization loop and visible reports.
Humanize is a focused optimization pipeline that takes a Chinese communication task or draft and iteratively improves it to sound more natural and human. It bootstraps a local runtime, generates baseline and challenger drafts, scores candidates with a local reranker, and produces a visible report with scores and decisions.
Use when you need to improve Chinese copy for customer messages, social media posts, emails, WeChat replies, or other short-form communications and want a defensible, scored rewrite rather than a single manual edit. Trigger examples: "make this message sound more human in Chinese", "rewrite my WeChat reply to sound natural".
humanize.py) for running end-to-end optimization, plus bootstrap and scoring scripts as documented in SKILL.md.python3 humanize.py --text "..." --output-root ./runs), and non-negotiable behavior for relaying final outputs and handling timeouts. It documents inputs, default assumptions, and how to interpret the generated reports.Intended for local execution with Python (requires python3) but callable by agents that can run shell commands; suitable for CoPaw/OpenClaw, Claude Code, or any agent that can run the documented CLI.
Humanize is a Chinese copy optimization skill that generates or rewrites text to sound more natural and human. It uses a local scorer model (BAAI/bge-reranker-v2-m3) with a multi-round challenger/baseline comparison loop. Scripts are well-written but heavily coupled — most fail due to cross-imports (runtime_common) not being on sys.path when run from a temp directory. The CoPaw runtime dependency (qwenpaw/copaw) is a hard requirement for generation. Only 2 of 18 scripts ran cleanly (runtime_common, strategy_state as pure imports); the rest failed on missing modules or missing arguments. The skill requires significant setup: CoPaw runtime, torch, a downloaded model, and python3-venv.
torchtransformerspython3-venvqwenpaw/copaw (CoPaw runtime)Well-engineered skill for a specific niche (Chinese copy humanization). The cross-import design means scripts can't run from arbitrary directories. The model download lacks checksum verification — minor security concern for a model hosting platform (HuggingFace). No exfiltration, no hardcoded credentials, no destructive operations. The CoPaw dependency is clearly documented in SKILL.md.