/ Diretório / Playground / Claude + Codex Settings
● Comunidade fcakyon ⚡ Instantâneo

Claude + Codex Settings

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

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

pronto

Instalar

Escolha seu cliente

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

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

~/.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 usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

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

Clique no ícone MCP Servers na barra lateral do Cline, depois "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
    }
  }
}

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

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

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

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

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

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

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

Casos de uso

Usos do mundo real: Claude + Codex Settings

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

👤 Claude Code users ⏱ ~15 min intermediate

Quando usar: You're tired of starting from a blank slate.

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

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

Combinações

Combine com outros MCPs para 10× de alavancagem

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✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
reference-config (see docs) Static config files; not callable tools 1 call

Custo e limites

O que custa rodar

Cota de API
N/A
Tokens por chamada
0
Monetário
Free
Dica
Don't copy blindly — author's preferences may not match yours

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: None
Saída de dados: None by itself
Nunca conceda: blindly trust permission entries; review them

Solução de problemas

Erros comuns e correções

Some MCPs not starting

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

Alternativas

Claude + Codex Settings vs. outros

AlternativaQuando usarTroca
Empty configYou want to learn by building upSlow start

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills