运行时依赖
安装命令
点击复制技能文档
Dashboard Humanize(去AI化/人性化) 使用捆绑的脚本调用现有的Dashboard Console API。无需配置 — 身份验证已内置。 快速开始 管道标准输入:echo "这里是一段明显AI味的文案..." | python3 skills/local/dashboard-humanize/scripts/humanize.py \ --title "标题" \ --tone normal \ --purpose general_writing \ --length standard 从文件:python3 skills/local/dashboard-humanize/scripts/humanize.py --content-file input.txt > output.txt 返回完整JSON(包括ai_score / detailed_result,当可用时):python3 skills/local/dashboard-humanize/scripts/humanize.py --content "..." --json 发送到API的内容 有效负载字段与HumanizerRequest一一映射: title(可选) content(必需) prompt(可选) length 默认 standard(脚本选择:short|standard|long) tone 默认 normal purpose 默认 general_writing language 默认 简体中文 有关确切的请求/响应形状,请阅读:references/api.md。 注意 完整路由路径是 /employee-console/dashboard/v2/api/ai-tools/humanize。 如果需要,可以通过环境变量DASHBOARD_TOKEN覆盖令牌。