/ Diretório / Playground / Avoid AI Writing
● Comunidade conorbronsdon ⚡ Instantâneo

Avoid AI Writing

por 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.

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

avoid-ai-writing-skill.replay ▶ pronto
0/0

Instalar

Escolha seu cliente

~/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
    }
  }
}

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

~/.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 usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

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
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "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
    }
  }
}

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

~/.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"
      ]
    }
  ]
}

O Continue usa um array de objetos de servidor em vez de um map.

~/.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"
        ]
      }
    }
  }
}

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

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

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: Avoid AI Writing

Strip AI tells from a blog post before publishing

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

Quando usar: Right before you hit publish.

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

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

Armadilhas
  • 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.

Custo e limites

O que custa rodar

Cota de API
See provider docs for rate limits
Tokens por chamada
Varies by tool
Monetário
See repo README for pricing details
Dica
Cache tool results and avoid repeated identical calls.

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: Use environment variables; never commit secrets
Saída de dados: Tool calls go to the provider's API as documented

Solução de problemas

Erros comuns e correções

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.

Verificar: Reduce density and re-run
rewrites change meaning

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

Verificar: Compare original vs rewrite per paragraph

Alternativas

Avoid AI Writing vs. outros

AlternativaQuando usarTroca
Generic lintersYou want full style-guide enforcementVale is broader; this skill is AI-tell-specific

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills