/ Directory / Playground / antivibe
● Community mohi-devhub ⚡ Instant

antivibe

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

Why use it

Key features

Live Demo

What it looks like in practice

antivibe-skill.replay ▶ ready
0/0

Install

Pick your client

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

Open Claude Desktop → Settings → Developer → Edit Config. Restart after saving.

~/.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 uses the same mcpServers schema as Claude Desktop. Project config wins over 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
    }
  }
}

Click the MCP Servers icon in the Cline sidebar, then "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
    }
  }
}

Same shape as Claude Desktop. Restart Windsurf to pick up changes.

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

Continue uses an array of server objects rather than a map.

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

Add to context_servers. Zed hot-reloads on save.

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

One-liner. Verify with claude mcp list. Remove with claude mcp remove.

Use Cases

Real-world ways to use antivibe

Learn a new framework while Claude writes in it

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

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

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

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

Pitfalls
  • 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

When to use: You wrote something and want a teacher's eye on it.

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

Outcome: Concrete improvements with reasoning you internalize.

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

Produce teaching-quality explanations for a PR description

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

When to use: You want the PR description to double as a teaching doc.

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

Outcome: PR descriptions your team actually reads.

Combine with: github

Combinations

Pair with other MCPs for X10 leverage

antivibe-skill + github

Post antivibe-style explanations as inline PR comments

Review this PR with antivibe and leave teaching comments on non-obvious lines.✓ Copied
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.✓ Copied

Tools

What this MCP exposes

ToolInputsWhen to callCost
explain_code code block Right after generation 0
list_alternatives code + goal Deepening understanding 0
quiz_me code block Testing actual understanding 0

Cost & Limits

What this costs to run

API quota
None
Tokens per call
Higher than bare generation — the extra explanation pass doubles tokens roughly
Monetary
Free
Tip
Use for signal code only; skip for repetitive boilerplate.

Security

Permissions, secrets, blast radius

Credential storage: None
Data egress: Local prompts; code sent to Claude API per normal operation

Troubleshooting

Common errors and fixes

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

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

Alternatives

antivibe vs others

AlternativeWhen to use it insteadTradeoff
Native Claude Code without skillAd-hoc teaching requestsInconsistent; depends on prompt each time
Reading docs + pair programmingReal masterySlower; higher quality

More

Resources

📖 Read the official README on GitHub

🐙 Browse open issues

🔍 Browse all 400+ MCP servers and Skills