/ ディレクトリ / プレイグラウンド / Claude + Codex Settings
● コミュニティ fcakyon ⚡ 即起動

Claude + Codex Settings

作者 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.

なぜ使うのか

主な機能

ライブデモ

実際の動作

準備完了

インストール

クライアントを選択

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

Claude Desktop → Settings → Developer → Edit Config を開く。保存後、アプリを再起動。

~/.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 は Claude Desktop と同じ mcpServers スキーマを使用。プロジェクト設定はグローバルより優先。

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

Cline サイドバーの MCP Servers アイコンをクリックし、"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
    }
  }
}

Claude Desktop と同じ形式。Windsurf を再起動して反映。

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

Continue はマップではなくサーバーオブジェクトの配列を使用。

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

context_servers に追加。保存時に Zed がホットリロード。

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

ワンライナー。claude mcp list で確認、claude mcp remove で削除。

ユースケース

実用的な使い方: Claude + Codex Settings

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

👤 Claude Code users ⏱ ~15 min intermediate

使うタイミング: You're tired of starting from a blank slate.

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

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

組み合わせ

他のMCPと組み合わせて10倍の力を

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✓ コピーしました

ツール

このMCPが提供する機能

ツール入力呼び出すタイミングコスト
reference-config (see docs) Static config files; not callable tools 1 call

コストと制限

運用コスト

APIクォータ
N/A
呼び出しあたりのトークン
0
金額
Free
ヒント
Don't copy blindly — author's preferences may not match yours

セキュリティ

権限、シークレット、影響範囲

認証情報の保管: None
データ送信先: None by itself
絶対に付与しない: blindly trust permission entries; review them

トラブルシューティング

よくあるエラーと対処法

Some MCPs not starting

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

代替案

Claude + Codex Settings 他との比較

代替案代わりに使う場面トレードオフ
Empty configYou want to learn by building upSlow start

その他

リソース

📖 GitHub の公式 README を読む

🐙 オープンな issue を見る

🔍 400以上のMCPサーバーとSkillsを見る