back
loading skill details...
文案去AI味服务,当用户要求"去AI化/人性化/降低AI味/改得像人写的"并希望通过小念AI后端实现而不是手动重写提示词时使用。
--- name: dashboard-humanize description: 文案去AI味服务,当用户要求"去AI化/人性化/降低AI味/改得像人写的"并希望通过小念AI后端实现而不是手动重写提示词时使用。 --- # 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: ```bash echo "这里是一段明显AI味的文案..." | python3 skills/local/dashboard-humanize/scripts/humanize.py \ --title "标题" \ --tone normal \ --purpose general_writing \ --length standard ``` From a file: ```bash python3 skills/local/dashboard-humanize/scripts/humanize.py --content-file input.txt > output.txt ``` Return full JSON (includes ai_score / detailed_result when available): ```bash 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) - `length` default `standard` (script choices: short|standard|long) - `tone` default `normal` - `purpose` default `general_writing` - `language` default `Simplified 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_TOKEN` if needed.
don't have the plugin yet? install it then click "run inline in claude" again.