/ Diretório / Playground / antivibe
● Comunidade mohi-devhub ⚡ Instantâneo

antivibe

por mohi-devhub · mohi-devhub/antivibe

Stop vibe-coding. After Claude writes code, this skill makes it walk you through what it wrote — variables, tradeoffs, alternatives — so you learn it.

antivibe turns AI-generated code into an educational moment. After a code block is produced, the skill prompts Claude to explain what it did: why each pattern, what the alternatives were, where the subtle bugs might live. Designed for devs who want to level up, not just ship copy-paste.

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

antivibe-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": {
    "antivibe-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/mohi-devhub/antivibe",
        "~/.claude/skills/antivibe"
      ],
      "_inferred": true
    }
  }
}

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

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "antivibe-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/mohi-devhub/antivibe",
        "~/.claude/skills/antivibe"
      ],
      "_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": {
    "antivibe-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/mohi-devhub/antivibe",
        "~/.claude/skills/antivibe"
      ],
      "_inferred": true
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "Edit Configuration".

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

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

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "antivibe-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/mohi-devhub/antivibe",
        "~/.claude/skills/antivibe"
      ]
    }
  ]
}

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

~/.config/zed/settings.json
{
  "context_servers": {
    "antivibe-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/mohi-devhub/antivibe",
          "~/.claude/skills/antivibe"
        ]
      }
    }
  }
}

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

claude mcp add antivibe-skill -- git clone https://github.com/mohi-devhub/antivibe ~/.claude/skills/antivibe

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

Casos de uso

Usos do mundo real: antivibe

Learn a new framework while Claude writes in it

👤 Devs picking up an unfamiliar framework (Svelte, Rust, Go) ⏱ ~20 min beginner

Quando usar: You'd normally copy Claude's output and hope for the best. Instead, you want to understand.

Pré-requisitos
  • Skill installed — git clone https://github.com/mohi-devhub/antivibe ~/.claude/skills/antivibe
Fluxo
  1. Ask for code as usual
    Use antivibe. Write a Svelte 5 store for user authentication.✓ Copiado
    → Code block + teaching pass explaining runes, $state, $derived
  2. Ask for alternatives
    What other approaches did you consider? Why this one?✓ Copiado
    → Named alternatives with tradeoffs
  3. Probe understanding
    Quiz me — ask 3 questions about what this code does.✓ Copiado
    → Actual quiz questions, not a quiz on trivia

Resultado: Code in your repo you understand and can maintain.

Armadilhas
  • Skipping the explanation pass when in a hurry — Turn the skill off for throwaway spike code, on for anything you'll merge

Have Claude review code you wrote, antivibe-style

👤 Devs who want a critical second look ⏱ ~15 min intermediate

Quando usar: You wrote something and want a teacher's eye on it.

Fluxo
  1. Submit the code
    Use antivibe. Here's my implementation [...] — review it like you'd teach it.✓ Copiado
    → Per-section commentary
  2. Ask what a senior would say
    What would a senior engineer on this codebase push back on?✓ Copiado
    → Specific pushback, not 'add tests'

Resultado: Concrete improvements with reasoning you internalize.

Armadilhas
  • Claude becomes a hype machine — Prompt explicitly: 'be skeptical; assume the code is wrong until proven'
Combine com: filesystem

Produce teaching-quality explanations for a PR description

👤 Senior devs onboarding juniors through PRs ⏱ ~15 min beginner

Quando usar: You want the PR description to double as a teaching doc.

Fluxo
  1. Feed the diff
    Use antivibe. Write a PR description that explains to a mid-level dev why each change is there.✓ Copiado
    → PR body with rationale per chunk

Resultado: PR descriptions your team actually reads.

Combine com: github

Combinações

Combine com outros MCPs para 10× de alavancagem

antivibe-skill + github

Post antivibe-style explanations as inline PR comments

Review this PR with antivibe and leave teaching comments on non-obvious lines.✓ Copiado
antivibe-skill + filesystem

Walk a junior through a codebase file by file

Use antivibe to explain each file in src/auth/ as if onboarding a new engineer.✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
explain_code code block Right after generation 0
list_alternatives code + goal Deepening understanding 0
quiz_me code block Testing actual understanding 0

Custo e limites

O que custa rodar

Cota de API
None
Tokens por chamada
Higher than bare generation — the extra explanation pass doubles tokens roughly
Monetário
Free
Dica
Use for signal code only; skip for repetitive boilerplate.

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: None
Saída de dados: Local prompts; code sent to Claude API per normal operation

Solução de problemas

Erros comuns e correções

Explanation is just a restatement of the code

Prompt for alternatives and pitfalls explicitly; Claude sometimes defaults to paraphrase

Skill doesn't trigger

Invoke by name and reference 'antivibe style' in prompts

Verificar: ls ~/.claude/skills/antivibe/SKILL.md

Alternativas

antivibe vs. outros

AlternativaQuando usarTroca
Native Claude Code without skillAd-hoc teaching requestsInconsistent; depends on prompt each time
Reading docs + pair programmingReal masterySlower; higher quality

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills