/ 디렉터리 / 플레이그라운드 / Avoid AI Writing
● 커뮤니티 conorbronsdon ⚡ 바로 사용

Avoid AI Writing

제작: conorbronsdon · conorbronsdon/avoid-ai-writing

Audit and rewrite content to remove AI-tell patterns (em-dashes, 'delve', etc.).

A skill that audits your draft against 21 known AI-writing tells — em-dashes everywhere, 'delve', 'in the realm of', 'it's important to note' — and rewrites to sound human. Use it as a post-pass on anything you ship.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

avoid-ai-writing-skill.replay ▶ 준비됨
0/0

설치

클라이언트 선택

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "avoid-ai-writing-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/conorbronsdon/avoid-ai-writing",
        "~/.claude/skills/avoid-ai-writing"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "avoid-ai-writing-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/conorbronsdon/avoid-ai-writing",
        "~/.claude/skills/avoid-ai-writing"
      ],
      "_inferred": true
    }
  }
}

Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "avoid-ai-writing-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/conorbronsdon/avoid-ai-writing",
        "~/.claude/skills/avoid-ai-writing"
      ],
      "_inferred": true
    }
  }
}

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "avoid-ai-writing-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/conorbronsdon/avoid-ai-writing",
        "~/.claude/skills/avoid-ai-writing"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "avoid-ai-writing-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/conorbronsdon/avoid-ai-writing",
        "~/.claude/skills/avoid-ai-writing"
      ]
    }
  ]
}

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

~/.config/zed/settings.json
{
  "context_servers": {
    "avoid-ai-writing-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/conorbronsdon/avoid-ai-writing",
          "~/.claude/skills/avoid-ai-writing"
        ]
      }
    }
  }
}

context_servers에 추가. 저장 시 Zed가 핫 리로드.

claude mcp add avoid-ai-writing-skill -- git clone https://github.com/conorbronsdon/avoid-ai-writing ~/.claude/skills/avoid-ai-writing

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: Avoid AI Writing

Strip AI tells from a blog post before publishing

👤 Anyone shipping AI-assisted writing ⏱ ~15 min intermediate

언제 쓸까: Right before you hit publish.

사전 조건
  • Server/skill installed and authenticated — See repo README
흐름
  1. Audit
    Run the avoid-ai-writing skill on /drafts/launch-post.md. Show me the offending phrases and counts.✓ 복사됨
    → Inline list of detections
  2. Rewrite
    Apply the rewrite in-place but show me a diff first.✓ 복사됨
    → Diff you can accept or reject hunk-by-hunk

결과: A post that doesn't make readers smell the model.

함정
  • Don't run it on someone else's prose — Don't run it on someone else's prose — the rewrite changes voice. Use on your own drafts only.

비용 및 제한

운영 비용

API 쿼터
See provider docs for rate limits
호출당 토큰
Varies by tool
금액
See repo README for pricing details
Cache tool results and avoid repeated identical calls.

보안

권한, 시크릿, 파급범위

자격 증명 저장: Use environment variables; never commit secrets
데이터 외부 송신: Tool calls go to the provider's API as documented

문제 해결

자주 발생하는 오류와 해결

skill flags valid em-dashes

Tune the threshold in the skill's config — em-dash usage above 1 per 200 words is the default tell.

확인: Reduce density and re-run
rewrites change meaning

Use the diff mode and reject hunks that drift. The skill's confidence score helps prioritize.

확인: Compare original vs rewrite per paragraph

대안

Avoid AI Writing 다른 것과 비교

대안언제 쓰나단점/장점
Generic lintersYou want full style-guide enforcementVale is broader; this skill is AI-tell-specific

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기