/ 디렉터리 / 플레이그라운드 / antivibe
● 커뮤니티 mohi-devhub ⚡ 바로 사용

antivibe

제작: 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.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

antivibe-skill.replay ▶ 준비됨
0/0

설치

클라이언트 선택

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

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

~/.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는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

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

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "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
    }
  }
}

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

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

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

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

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

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

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

사용 사례

실전 활용법: antivibe

Learn a new framework while Claude writes in it

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

언제 쓸까: You'd normally copy Claude's output and hope for the best. Instead, you want to understand.

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

결과: Code in your repo you understand and can maintain.

함정
  • 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

언제 쓸까: You wrote something and want a teacher's eye on it.

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

결과: Concrete improvements with reasoning you internalize.

함정
  • Claude becomes a hype machine — Prompt explicitly: 'be skeptical; assume the code is wrong until proven'
함께 쓰기: filesystem

Produce teaching-quality explanations for a PR description

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

언제 쓸까: You want the PR description to double as a teaching doc.

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

결과: PR descriptions your team actually reads.

함께 쓰기: github

조합

다른 MCP와 조합해 10배 효율

antivibe-skill + github

Post antivibe-style explanations as inline PR comments

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

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
explain_code code block Right after generation 0
list_alternatives code + goal Deepening understanding 0
quiz_me code block Testing actual understanding 0

비용 및 제한

운영 비용

API 쿼터
None
호출당 토큰
Higher than bare generation — the extra explanation pass doubles tokens roughly
금액
Free
Use for signal code only; skip for repetitive boilerplate.

보안

권한, 시크릿, 파급범위

자격 증명 저장: None
데이터 외부 송신: Local prompts; code sent to Claude API per normal operation

문제 해결

자주 발생하는 오류와 해결

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

확인: ls ~/.claude/skills/antivibe/SKILL.md

대안

antivibe 다른 것과 비교

대안언제 쓰나단점/장점
Native Claude Code without skillAd-hoc teaching requestsInconsistent; depends on prompt each time
Reading docs + pair programmingReal masterySlower; higher quality

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

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