/ Directorio / Playground / Avoid AI Writing
● Comunidad 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 qué usarlo

Características clave

Demo en vivo

Cómo se ve en la práctica

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

Instalar

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

Abre Claude Desktop → Settings → Developer → Edit Config. Reinicia después de guardar.

~/.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 el mismo esquema mcpServers que Claude Desktop. La configuración del proyecto prevalece sobre la 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
    }
  }
}

Haz clic en el icono MCP Servers de la barra lateral de Cline y luego en "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
    }
  }
}

Mismo formato que Claude Desktop. Reinicia 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"
      ]
    }
  ]
}

Continue usa un array de objetos de servidor en lugar de un mapa.

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

Añádelo a context_servers. Zed recarga en caliente al guardar.

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

Un solo comando. Verifica con claude mcp list. Quita con claude mcp remove.

Casos de uso

Usos del mundo real: Avoid AI Writing

Strip AI tells from a blog post before publishing

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

Cuándo usarlo: Right before you hit publish.

Requisitos previos
  • Server/skill installed and authenticated — See repo README
Flujo
  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.

Errores comunes
  • 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.

Coste y límites

Lo que cuesta ejecutarlo

Cuota de API
See provider docs for rate limits
Tokens por llamada
Varies by tool
Monetario
See repo README for pricing details
Consejo
Cache tool results and avoid repeated identical calls.

Seguridad

Permisos, secretos, alcance

Almacenamiento de credenciales: Use environment variables; never commit secrets
Salida de datos: Tool calls go to the provider's API as documented

Resolución de problemas

Errores comunes y soluciones

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 otros

AlternativaCuándo usarlaContrapartida
Generic lintersYou want full style-guide enforcementVale is broader; this skill is AI-tell-specific

Más

Recursos

📖 Lee el README oficial en GitHub

🐙 Ver issues abiertas

🔍 Ver todos los 400+ servidores MCP y Skills