Back to Plugins

Claude Codex Settings

Well-organized plugins covering core developer activities with cloud platforms like GitHub, Azure, MongoDB, and services like Tavily and Playwright

cloudgithubazuremongodbplaywright
By fcakyon
68259Updated 2 weeks agoPythonApache-2.0

Installation

git clone https://github.com/fcakyon/claude-codex-settings.git ~/.claude-codex-settings && cp -r ~/.claude-codex-settings/.claude ~/

Configuration

# Claude Codex Settings

Pre-configured settings for working with popular cloud platforms and services.

## Included Integrations

### Cloud Platforms
- **GitHub** - Repository management and CI/CD
- **Azure** - Azure services integration
- **MongoDB** - Database operations

### Services
- **Tavily** - AI-powered search
- **Playwright** - Browser automation and testing

## Usage

After installation, the settings are automatically applied to your Claude Code configuration.

How to install

  1. Open Claude Code in your terminal
  2. Run the installation command above
  3. The plugin will be enabled automatically
  4. Use the plugin's features in your Claude Code sessions
<div align="center"> <img src="https://github.com/user-attachments/assets/a978cb0a-785d-4a7d-aff2-7e962edd3120" width="10000" alt="Claude Codex Settings Logo">

Mentioned in Awesome Claude Code Claude Code Codex CLI Gemini CLI Cursor Context7 MCP llms.txt

My daily battle-tested Claude Code/Desktop and OpenAI Codex setup with skills, commands, hooks, subagents and MCP servers.

"They make wrong assumptions on your behalf and just run along with them without checking. They don't manage their confusion, they don't seek clarifications, they don't surface inconsistencies, they don't present tradeoffs. They really like to overcomplicate code and APIs, they bloat abstractions, they don't clean up dead code after themselves." -- Andrej Karpathy

This repo's guidelines are structured to fix exactly these pitfalls.

InstallationPluginsConfigurationReferences

</div>

Installation

Plugins add skills, commands, and automations to your AI coding tool. Install only what you need from the plugin list below.

Prerequisites: See INSTALL.md for setup requirements.

<details open> <summary><strong>Claude Code</strong></summary>
# Add marketplace (one time)
/plugin marketplace add fcakyon/claude-codex-settings

# Install any plugin by name
/plugin install < plugin-name > @claude-settings
</details> <details> <summary><strong>Codex CLI</strong></summary>

Codex installs plugins from a local marketplace rather than a direct shell install command.

  1. Clone this repo locally and open it in Codex.
  2. This repo already includes .agents/plugins/marketplace.json.
  3. If Codex was already open when you added or changed that file, restart Codex.
  4. In Codex, open /plugins.
  5. Choose Claude & Codex Settings and install the plugins you want.

This README only covers installing this marketplace. For generic Codex marketplace examples and maintainer docs, see CLAUDE.md.

</details> <details> <summary><strong>Gemini CLI</strong></summary>
gemini extensions install --path ./plugins/<plugin-name>
</details> <details> <summary><strong>Cursor</strong></summary>
cursor plugin install < plugin-name > @claude-settings
</details>

Create symlinks for cross-tool compatibility:

ln -sfn CLAUDE.md AGENTS.md
ln -sfn CLAUDE.md GEMINI.md

Plugins

<details> <summary><strong>intelligent-compact</strong> - Stop Claude Code from forgetting file paths, root causes, and open questions when it auto-summarizes long sessions</summary>
Claude CodeCodex CLIGemini CLI
/plugin install intelligent-compact@claude-settingsOpen /plugins -> Claude & Codex Settings -> install intelligent-compactgemini extensions install --path ./plugins/intelligent-compact

When Claude Code auto-summarizes a long session, the default summary routinely drops the highest-signal facts. This plugin tells the summarizer to keep them:

  • File paths under investigation so the next turn doesn't re-discover where you were
  • Confirmed root causes so you don't re-debug what's already solved
  • Open questions, metrics, and IDs that prose summaries usually round away
  • Findings from expensive subagent runs that took minutes to gather

Runs on every /compact (manual) and every auto compaction. Claude Code only; Codex, Cursor, and Gemini CLI don't yet expose a comparable summary hook.

Hooks:

</details> <details> <summary><strong>claude-telemetry-hooks</strong> - Track per-device Claude Code usage, rejection reasons, and per-session stats from a single dashboard</summary>
Claude CodeCodex CLIGemini CLI
/plugin install claude-telemetry-hooks@claude-settingsn/agemini extensions install --path ./plugins/claude-telemetry-hooks

Adds the two missing pieces Claude Code's telemetry needs to power a usage dashboard:

  • Sticky session ID per project: resumed conversations stay one session, not dozens
  • Categorized rejection reasons (profanity, wrong target, scope drift, retry, and more): chart why Claude pushes back

Per-device data is already in Claude Code's built-in OpenTelemetry stream. Pairs naturally with openobserve-skills for the dashboard side.

Hooks:

</details> <details> <summary><strong>anthropic-office-skills</strong> - Official Anthropic PDF, Word, PowerPoint, Excel skills</summary>
Claude CodeCodex CLIGemini CLI
/plugin install anthropic-office-skills@claude-settingsOpen /plugins -> Claude & Codex Settings -> install anthropic-office-skillsgemini extensions install --path ./plugins/anthropic-office-skills

Skills CLI

npx skills add https://github.com/fcakyon/claude-codex-settings/tree/main/plugins/anthropic-office-skills --skill '*'

Official office document skills from anthropics/skills.

SkillDescriptionInstall
pdfPDF processing (read, merge, split, create, OCR, forms)ZIP
pptxPowerPoint presentation building and editingZIP
xlsxExcel spreadsheet processing with formulasZIP
docxWord document creation and editingZIP
</details> <details> <summary><strong>openai-office-skills</strong> - Official OpenAI PDF, Word, PowerPoint, Excel skills</summary>
Claude CodeCodex CLIGemini CLI
/plugin install openai-office-skills@claude-settingsOpen /plugins -> Claude & Codex Settings -> install openai-office-skillsgemini extensions install --path ./plugins/openai-office-skills

Skills CLI

npx skills add https://github.com/fcakyon/claude-codex-settings/tree/main/plugins/openai-office-skills --skill '*'

Official office document skills from openai/skills.

SkillDescriptionInstall
pdfPDF generation and extraction with visual reviewZIP
slidesSlide deck creation with PptxGenJSZIP
spreadsheetSpreadsheet processing with formulas and formattingZIP
docWord document creation and editingZIP
</details> <details> <summary><strong>python-skills</strong> - Python best practices from PEP 8, Zen of Python, Google Style Guide, Effective Python</summary>

| Claude Code | Code

View source on GitHub