Install
openclaw skills install dashboard-humanize文案去AI味服务,当用户要求"去AI化/人性化/降低AI味/改得像人写的"并希望通过小念AI后端实现而不是手动重写提示词时使用。
openclaw skills install dashboard-humanizeUse the bundled script to call the existing Dashboard Console API. No configuration needed — auth is built in.
Pipe stdin:
echo "这里是一段明显AI味的文案..." | python3 skills/local/dashboard-humanize/scripts/humanize.py \
--title "标题" \
--tone normal \
--purpose general_writing \
--length standard
From a file:
python3 skills/local/dashboard-humanize/scripts/humanize.py --content-file input.txt > output.txt
Return full JSON (includes ai_score / detailed_result when available):
python3 skills/local/dashboard-humanize/scripts/humanize.py --content "..." --json
Payload fields map 1:1 to HumanizerRequest:
title (optional)content (required)prompt (optional)length default standard (script choices: short|standard|long)tone default normalpurpose default general_writinglanguage default Simplified ChineseFor exact request/response shapes, read: references/api.md.
/employee-console/dashboard/v2/api/ai-tools/humanize.DASHBOARD_TOKEN if needed.