/ Verzeichnis / Playground / Dive into Claude Code
● Community VILA-Lab ⚡ Sofort

Dive into Claude Code

von VILA-Lab · VILA-Lab/Dive-into-Claude-Code

Systematic analysis and discussion of Claude Code for designing AI agent systems.

Systematic analysis and discussion of Claude Code for designing AI agent systems.

Live-Demo

In der Praxis

dive-into-claude-code.replay ▶ bereit
0/0

Installieren

Wählen Sie Ihren Client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "dive-into-claude-code": {
      "command": "npx",
      "args": [
        "-y",
        "dive-into-claude-code"
      ]
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "dive-into-claude-code": {
      "command": "npx",
      "args": [
        "-y",
        "dive-into-claude-code"
      ]
    }
  }
}

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "dive-into-claude-code": {
      "command": "npx",
      "args": [
        "-y",
        "dive-into-claude-code"
      ]
    }
  }
}

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "dive-into-claude-code": {
      "command": "npx",
      "args": [
        "-y",
        "dive-into-claude-code"
      ]
    }
  }
}

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "dive-into-claude-code",
      "command": "npx",
      "args": [
        "-y",
        "dive-into-claude-code"
      ]
    }
  ]
}

Continue nutzt ein Array von Serverobjekten statt einer Map.

~/.config/zed/settings.json
{
  "context_servers": {
    "dive-into-claude-code": {
      "command": {
        "path": "npx",
        "args": [
          "-y",
          "dive-into-claude-code"
        ]
      }
    }
  }
}

In context_servers hinzufügen. Zed lädt beim Speichern neu.

claude mcp add dive-into-claude-code -- npx -y dive-into-claude-code

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: Dive into Claude Code

Get started with Dive into Claude Code

Wann einsetzen: When you want to bring Dive into Claude Code into your Claude workflow.

Ablauf
  1. Install the skill in your client (see Install tab).
  2. Authenticate or configure required tokens.
  3. Ask Claude to use the new tools.
    Use Dive into Claude Code to help me with a task.✓ Kopiert

Ergebnis: Claude can interact with Dive into Claude Code directly from your IDE.

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen