/ Verzeichnis / Playground / Claude + Codex Settings
● Community fcakyon ⚡ Sofort

Claude + Codex Settings

von fcakyon · fcakyon/claude-codex-settings

An opinionated, working configuration for Claude Code AND OpenAI Codex — skills, plugins, hooks, MCPs, all known-good.

Useful as a reference point: instead of starting from blank settings.json, fork this repo and trim. Covers commonly-needed hooks (formatting, lint), permission allowlists, MCP configs that play together, and skills the author actually uses.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

bereit

Installieren

Wählen Sie Ihren Client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "claude-codex-settings-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/fcakyon/claude-codex-settings"
      ],
      "_inferred": true
    }
  }
}

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

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "claude-codex-settings-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/fcakyon/claude-codex-settings"
      ],
      "_inferred": true
    }
  }
}

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

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "claude-codex-settings-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/fcakyon/claude-codex-settings"
      ],
      "_inferred": true
    }
  }
}

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

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "claude-codex-settings-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/fcakyon/claude-codex-settings"
      ],
      "_inferred": true
    }
  }
}

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

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "claude-codex-settings-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/fcakyon/claude-codex-settings"
      ]
    }
  ]
}

Continue nutzt ein Array von Serverobjekten statt einer Map.

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

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

claude mcp add claude-codex-settings-skill -- git clone https://github.com/fcakyon/claude-codex-settings

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

Anwendungsfälle

Praxisnahe Nutzung: Claude + Codex Settings

Bootstrap a working Claude Code config from a known-good baseline

👤 Claude Code users ⏱ ~15 min intermediate

Wann einsetzen: You're tired of starting from a blank slate.

Ablauf
  1. Clone
    Clone into a scratch folder.✓ Kopiert
    → Files visible
  2. Pick + trim
    Copy what you need into your real ~/.claude; remove what you don't✓ Kopiert
    → Personalized config
  3. Iterate
    Tweak permissions and hooks based on real usage✓ Kopiert
    → Stable setup

Ergebnis: Config that already covers the obvious things, customized to your style.

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

claude-codex-settings-skill + fewer-permission-prompts (built-in skill)

Use it to slim the allowlist further to your usage

Combine claude-codex-settings-skill with fewer-permission-prompts (built-in skill): Use it to slim the allowlist further to your usage✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
reference-config (see docs) Static config files; not callable tools 1 call

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
N/A
Tokens pro Aufruf
0
Kosten in €
Free
Tipp
Don't copy blindly — author's preferences may not match yours

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: None
Datenabfluss: None by itself
Niemals gewähren: blindly trust permission entries; review them

Fehlerbehebung

Häufige Fehler und Lösungen

Some MCPs not starting

Author's versions may be outdated; bump npm package versions

Alternativen

Claude + Codex Settings vs. andere

AlternativeWann stattdessenKompromiss
Empty configYou want to learn by building upSlow start

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen