Add marketplace (one time)
<div align="center"> <img src="https://github.com/user-attachments/assets/a978cb0a-785d-4a7d-aff2-7e962edd3120" width="10000" alt="Claude Codex Settings Logo">
Overview
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.
Installation • Plugins • Configuration • References
</div>Installation
Plugins add skills, commands, and automations to your AI coding tool. Install only what you need from the plugin list below.
<details open> <summary><strong>Claude Code</strong></summary>Prerequisites: See INSTALL.md for setup requirements.
# 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.
- Clone this repo locally and open it in Codex.
- This repo already includes
.agents/plugins/marketplace.json. - If Codex was already open when you added or changed that file, restart Codex.
- In Codex, open
/plugins. - Choose
Claude & Codex Settingsand install the plugins you want.
</details> <details> <summary><strong>Gemini CLI</strong></summary>This README only covers installing this marketplace. For generic Codex marketplace examples and maintainer docs, see CLAUDE.md.
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> - PreCompact hook that preserves high-signal context in auto-compact summaries</summary>| Claude Code | Codex CLI | Gemini CLI |
|---|---|---|
/plugin install intelligent-compact@claude-settings | Open /plugins -> Claude & Codex Settings -> install intelligent-compact | gemini extensions install --path ./plugins/intelligent-compact |
Claude Code's auto-compact summarizes long sessions to fit the context window, but the default summary routinely drops the highest-signal facts: file paths under investigation, confirmed root causes, remaining tasks, unanswered questions, metrics and IDs, and findings from expensive subagent runs. This plugin ships a single PreCompact hook that injects A-F fidelity requirements on top of the 9-section default compact prompt, so those categories survive every /compact (manual) and every auto compaction. Active on Claude Code only; Codex, Cursor, and Gemini CLI do not yet expose a PreCompact hook.
Hooks:
precompact_priorities.sh- Priority-preservation instructions for the compaction summarizer
| Claude Code | Codex CLI | Gemini CLI |
|---|---|---|
/plugin install anthropic-office-skills@claude-settings | Open /plugins -> Claude & Codex Settings -> install anthropic-office-skills | gemini 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.
| Skill | Description | Install |
|---|---|---|
pdf | PDF processing (read, merge, split, create, OCR, forms) | |
pptx | PowerPoint presentation building and editing | |
xlsx | Excel spreadsheet processing with formulas | |
docx | Word document creation and editing |
| Claude Code | Codex CLI | Gemini CLI |
|---|---|---|
/plugin install openai-office-skills@claude-settings | Open /plugins -> Claude & Codex Settings -> install openai-office-skills | gemini 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.
| Skill | Description | Install |
|---|---|---|
pdf | PDF generation and extraction with visual review | |
slides | Slide deck creation with PptxGenJS | |
spreadsheet | Spreadsheet processing with formulas and formatting | |
doc | Word document creation and editing |
| Claude Code | Codex CLI | Gemini CLI |
|---|---|---|
/plugin install python-skills@claude-settings | Open /plugins -> Claude & Codex Settings -> install python-skills | gemini extensions install --path ./plugins/python-skills |
Python coding guidelines grounded in authoritative sources: PEP 8, PEP 20 (Zen of Python), Google Python Style Guide, and Brett Slatkin's "Effective Python" (3rd ed.). Covers code integration, idiomatic patterns, YAGNI anti-abstraction rules, Google-style docstrings, and 18 before/after code examples.
Skills:
| Skill | Description |
|---|---|
python-guidelines | Core rules, self-tests, and reference index |
Reference files:
zen-of-python.md- Full PEP 20 with annotationsgoogle-style-guide.md- Curated sections with source URLsidiomatic-patterns.md- 18 patterns with before/after codeeffective-python-tips.md- Key tips from 3rd edition
| Claude Code | Codex CLI | Gemini CLI |
|---|---|---|
/plugin install react-skills@claude-settings | Open /plugins -> Claude & Codex Settings -> install react-skills | gemini extensions install --path ./plugins/react-skills |
Skills CLI
npx skills add https://github.com/fcakyon/claude-codex-settings/tree/main/plugins/react-skills --skill '*'
React and frontend best practices from vercel-labs/agent-skills.
Skills (ZIP for claude.ai, Claude Code, Cursor, Codex, VS Code):
| Skill | Description | ZIP |
|---|---|---|
composition-patterns | React composition patterns: compound components, render props, context | |
react-best-practices | 64 React/Next.js performance rules from Vercel Engineering | |
react-native-skills | 35+ React Native/Expo rules for performance and animations | [ |