article-icons
Illustrate an article (Markdown, HTML, etc.) with animated-style icons from itshover.com/icons. Fetches icons as clean inline SVG and places them at section…
对指定文档进行去 AI 味的改写。自动选择最合适的人性化策略(humanizer-zh / humanize-chinese / technical-writing), 迭代改写直到效果达标或迭代 42 次为止。适用于中文文本的去 AI 化处理,包括通用文章、技术文档、学术论文等。 Use when user says: "humanize this", "去AI味", "降AIGC", "人性化改写", "改成人话", "去除AI痕迹", "humanize document", "make text human-like", "去机器味",
$ npx -y skills add smallnest/goal-workflow --skill humanize-it --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/humanize-itContext preview
The summary Claude sees to decide when to auto-load this skill.
对指定文档进行去 AI 味的改写。自动选择最合适的人性化策略(humanizer-zh / humanize-chinese / technical-writing), 迭代改写直到效果达标或迭代 42 次为止。适用于中文文本的去 AI 化处理,包括通用文章、技术文档、学术论文等。 Use when user says: "humanize this", "去AI味", "降AIGC", "人性化改写", "改成人话", "去除AI痕迹", "humanize document", "make text human-like", "去机器味",
name: humanize-it description: > 对指定文档进行去 AI 味的改写。自动选择最合适的人性化策略(humanizer-zh / humanize-chinese / technical-writing), 迭代改写直到效果达标或迭代 42 次为止。适用于中文文本的去 AI 化处理,包括通用文章、技术文档、学术论文等。 Use when user says: "humanize this", "去AI味", "降AIGC", "人性化改写", "改成人话", "去除AI痕迹", "humanize document", "make text human-like", "去机器味", "降低AI率", "过AIGC检测" allowed-tools: - Read - Write - Edit - AskUserQuestion - Skill user-invocable: true metadata: trigger: 去AI味改写文档、humanize document、降AIGC、人性化文本
对指定文档进行去 AI 味的改写。根据文本类型和内容,从三个子 skill 中自动选择最合适的一个开始改写。如果改写效果不满意,换用另一个 skill 继续迭代,直到效果达标或达到 42 次迭代上限。
| Skill | 适用场景 | 核心能力 | 改写风格 | |-------|---------|---------|---------| | **humanizer-zh** | 通用文本、文章、博客、文案 | 识别 24+ AI 写作模式,注入个性与灵魂,节奏变化 | 自然、有温度、带观点 | | **humanize-chinese** | 通用 + 学术 + 长文本 | 20+ 规则检测 + 统计特征 + LR 融合评分,CLI 工具链 | 多种风格可选(知乎/小红书/学术/文学等) | | **technical-writing** | 技术文档、架构说明、设计稿、评审文档 | 去除技术黑话,证据先行,消除主持腔 | 平实、严谨、可论证 |
1. 读取用户指定的文档内容 2. 判断文档类型:
根据文档类型选择第一个改写 skill:
文档类型判断: ├── 技术文档 → technical-writing → humanizer-zh → humanize-chinese ├── 学术论文 → humanize-chinese(academic) → humanizer-zh → technical-writing ├── 通用文本 → humanizer-zh → humanize-chinese → technical-writing └── 长文本(≥1500字) → humanize-chinese(longform) → humanizer-zh → technical-writing
iteration = 0
MAX_ITERATIONS = 42
while iteration < MAX_ITERATIONS:
iteration += 1
# 使用当前 skill 进行改写
result = humanize(current_text, current_skill)
# 评估改写效果
score = evaluate(result)
if score >= PASS_THRESHOLD:
# 改写效果达标,输出最终结果
output(result)
break
# 效果不达标,切换到下一个 skill
current_skill = next_skill(skill_order)
current_text = result # 在上次改写基础上继续优化
if all_skills_exhausted():
# 所有 skill 都用过一轮,从头开始新一轮组合
current_skill = first_skill(skill_order)每次改写后,按以下维度评估效果(百分制):
| 维度 | 权重 | 评估标准 | |------|------|---------| | **AI 痕迹去除** | 30% | 三段式、套话、机械连接词是否消除 | | **自然度** | 25% | 读起来是否像人写的,节奏是否自然 | | **信息完整** | 20% | 核心信息是否保留,没有丢失关键内容 | | **风格一致** | 15% | 语气是否前后统一,符合文档类型 | | **可读性** | 10% | 句子是否通顺,逻辑是否清晰 |
**评分标准:**
输出最终改写结果,附带: 1. 改写后的完整文本(写入原文件或指定输出文件) 2. 改写摘要(使用了哪些 skill,迭代了几次,最终评分) 3. 主要改动点列表
使用 Skill 工具调用 `humanizer-zh`,将文档内容传入,让其按 24 种 AI 写作模式进行检测和改写。重点关注:
改写后按其 50 分制质量评分进行初步评估(≥ 40 分为达标)。
使用 Skill 工具调用 `humanize-chinese`,根据文档类型选择对应模式:
如果 CLI 工具可用,优先使用 CLI 进行量化检测和改写;否则按其 LLM 使用指南手动执行。
改写后按其 0-100 分评分体系评估(≤ 35 分为 LOW 区间,达标)。
使用 Skill 工具调用 `technical-writing`,主要用于技术文档的改写。重点关注:
1. **同一个 skill 连续改写 3 次评分无提升** → 切换到下一个 skill 2. **评分下降** → 回退到上一个版本,切换 skill 3. **所有 skill 都用完一轮但未达标** → 从第一个 skill 重新开始,但使用上一轮的改写结果作为输入 4. **达到 42 次迭代** → 输出当前最佳结果
不同 skill 的改写侧重不同,组合使用可以互补:
如果用户提供了明确的偏好(如"保持学术风格"、"要更口语化"、"技术文档不要太随意"),在改写时遵循用户偏好,并优先选择对应的 skill。
如果用户未指定文档类型,可以通过 AskUserQuestion 询问:
An AI-driven development workflow — from PRD to shipped code, all within Claude Code.
Illustrate an article (Markdown, HTML, etc.) with animated-style icons from itshover.com/icons. Fetches icons as clean inline SVG and places them at section…
Reverse-engineer a SPEC document from an existing project. Analyzes code, config, tests, and structure to produce a comprehensive specification. Triggers on:…
Use when turning a requirement, spec, or feature brief into a single self-contained HTML design document in a fixed house style — one styled HTML page with a…
Graph engineering for parallel task execution: convert a task, PRD, SPEC, or issue set into a dependency graph (DAG), layer it into supersteps, then implement…
为任意项目生成 UML 图、架构图和流程图。分析代码库后让用户选择要生成的图表类型,使用 architecture-diagram skill 渲染为 HTML+SVG,保存到 docs/ 目录。适用于任何软件项目的文档可视化。
使用 ListenHub API 将文本转换为语音(TTS)。支持三种模式:快速合成(/v1/tts)、 多角色脚本(/v1/speech)、长文本流式合成(/v1/flow-speech/episodes)。 音色未指定时自动获取音色列表供用户选择,默认使用 chat-girl-105-cn(晓曼)。 Use…