Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问许可证需确认审计通过

ai-writing-humanizerAI 写作人性化

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

165

周安装

7

GitHub Stars

209

下载量

58
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ai-writing-humanizer(AI 写作人性化)
来源仓库:https://github.com/wentorai/research-plugins
仓库路径:skills/ai-writing-humanizer
安装命令:
npx skills add https://github.com/wentorai/research-plugins --skill ai-writing-humanizer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/wentorai/research-plugins --skill ai-writing-humanizer

简介

AI 写作人性化用于辅助文档、README、Markdown 等内容的整理与改写,提升文本可读性。

  • 它适合提炼结构、补齐章节、统一术语或检查链接,适用于内容稿件优化场景。
  • 通过 npx skills add 命令从指定仓库安装,需保留项目已有事实和路径。
  • 涉及对外文案时应控制语气,避免过度营销或夸大能力。
  • ai-writing-humanizer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

AI Writing Humanizer

A skill for identifying and removing characteristic patterns of AI-generated text to produce natural, authentic academic writing. Designed for researchers who use AI tools for drafting and want to ensure the final output reads as genuine scholarly prose.

Common AI Writing Patterns

Lexical Patterns to Identify and Replace

AI-generated text frequently overuses certain words and phrases:

def identify_ai_patterns(text: str) -> dict:
    """
    Scan text for common AI-generated writing patterns.

    Returns a report of detected patterns with suggested replacements.
    """
    overused_phrases = {
        # Hedging/filler phrases AI overuses
        'it is important to note that': 'Note that',
        'it is worth mentioning that': '[delete or rephrase]',
        'it should be noted that': '[delete or rephrase]',
        'in the realm of': 'in',
        'in the context of': 'in / for / regarding',
        'a testament to': '[rephrase with specific evidence]',
        'the landscape of': '[delete -- be specific]',
        'a nuanced understanding': '[delete or specify what nuance]',
        'shed light on': 'clarified / revealed / explained',
        'delve into': 'examined / analyzed / investigated',
        'furthermore': '[vary: also, additionally, moreover, or restructure]',
        'moreover': '[vary: in addition, also, or restructure]',
        'utilizing': 'using',
        'leverage': 'use / apply / employ',
        'facilitate': 'enable / support / help',
        'a myriad of': 'many / numerous / various',
        'plays a crucial role': 'is important for / contributes to',
        'in conclusion': '[often unnecessary -- just conclude]',
        'overall': '[often unnecessary filler]',
        'comprehensive': '[usually vague -- be specific about scope]',
        'robust': '[overused -- specify what makes it strong]',
        'multifaceted': '[specify the actual facets]',
        'notably': '[usually filler -- delete or restructure]'
    }

    results = {'detected': [], 'total_flags': 0}

    text_lower = text.lower()
    for phrase, suggestion in overused_phrases.items():
        count = text_lower.count(phrase.lower())
        if count > 0:
            results['detected'].append({
                'phrase': phrase,
                'count': count,
                'suggestion': suggestion
            })
            results['total_flags'] += count

    return results

Structural Patterns

AI text tends to exhibit predictable structural patterns:

AI Pattern: Formulaic paragraph structure
  - Topic sentence (broad claim)
  - Supporting point 1
  - Supporting point 2
  - Concluding/transition sentence
  Every paragraph follows this exact template.

Human Fix: Vary paragraph structure
  - Sometimes lead with evidence, then interpret
  - Sometimes pose a question, then answer it
  - Sometimes use a single punchy sentence as a paragraph
  - Let paragraph length vary naturally (2-8 sentences)
AI Pattern: Excessive parallel construction
  "The study examined X, analyzed Y, and evaluated Z."
  "This approach enhances accuracy, improves efficiency, and reduces cost."

Human Fix: Break parallelism occasionally
  "The study examined X. For Y, a different analytical lens was required,
   so we turned to Z for comparison."

Revision Strategies

Sentence-Level Humanization

def humanize_sentence_variety(sentences: list[str]) -> dict:
    """
    Analyze sentence variety -- AI text often has uniform sentence lengths
    and structures.
    """
    lengths = [len(s.split()) for s in sentences]
    avg_length = sum(lengths) / len(lengths)
    std_length = (sum((l - avg_length)**2 for l in lengths) / len(lengths)) ** 0.5

    # Check first word variety
    first_words = [s.split()[0].lower() if s.split() else '' for s in sentences]
    unique_first_words = len(set(first_words)) / len(first_words)

    issues = []

    if std_length < 3:
        issues.append(
            f"Sentence lengths are too uniform (avg={avg_length:.0f}, "
            f"std={std_length:.1f}). Mix short (5-10 words) and long "
            f"(20-30 words) sentences."
        )

    if unique_first_words < 0.5:
        repeated = [w for w in set(first_words) if first_words.count(w) > 2]
        issues.append(
            f"Too many sentences start with the same word: {repeated}. "
            f"Vary sentence openings."
        )

    # Check for consecutive similar-length sentences
    uniform_runs = 0
    for i in range(1, len(lengths)):
        if abs(lengths[i] - lengths[i-1]) < 3:
            uniform_runs += 1

    if uniform_runs > len(lengths) * 0.6:
        issues.append("Too many consecutive sentences with similar lengths.")

    return {
        'avg_sentence_length': round(avg_length, 1),
        'length_std': round(std_length, 1),
        'first_word_variety': round(unique_first_words, 2),
        'issues': issues,
        'assessment': 'natural' if not issues else 'needs_revision'
    }

Voice and Perspective

AI text often defaults to an impersonal, overly balanced voice. Academic writing benefits from:

  1. Authorial voice: Use "we" in multi-author papers. Take clear positions.
  2. Disciplinary conventions: Match the register of your target journal (some are more formal, others more conversational).
  3. Specific over general: Replace "many researchers have studied X" with "Smith (2020), Jones (2021), and Lee (2023) each approached X differently."
  4. Genuine hedging: Use hedging when genuinely uncertain, not as a default.

Workflow for AI-Assisted Writing

Step 1: Draft with AI assistance (outline, first draft)
Step 2: Print the draft and read aloud -- mark anything that sounds generic
Step 3: Replace flagged phrases with your natural voice
Step 4: Add personal scholarly judgment (interpretations, critiques)
Step 5: Insert discipline-specific terminology and citations
Step 6: Vary sentence structure and paragraph length
Step 7: Run the pattern detector to catch remaining AI fingerprints
Step 8: Final read-aloud check

Ethical Considerations

Using AI for writing assistance is increasingly accepted in academia, but transparency is essential. Many journals now require disclosure of AI tool usage. The key ethical principle: you must deeply understand and stand behind every claim in the final text. AI is a drafting tool; scholarly judgment and intellectual ownership remain yours.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.32%
按下载量换算20

Claude

32.57%
按下载量换算19

Cursor

20.1%
按下载量换算12

Gemini CLI

8.78%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills