Dashboard Humanize(去AI化/人性化)
Use the bundled script to call the existing Dashboard Console API. No configuration needed — auth is built in.
Quick start
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
What to send to the API
Payload fields map 1:1 to HumanizerRequest:
title(optional)content(required)prompt(optional)lengthdefaultstandard(script choices: short|standard|long)tonedefaultnormalpurposedefaultgeneral_writinglanguagedefaultSimplified Chinese
For exact request/response shapes, read: references/api.md.
Notes
- Full route path is
/employee-console/dashboard/v2/api/ai-tools/humanize. - Override token via env
DASHBOARD_TOKENif needed.