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-settingsCodex 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>cursor plugin install < plugin-name > @claude-settingsCreate symlinks for cross-tool compatibility:
ln -sfn CLAUDE.md AGENTS.md
ln -sfn CLAUDE.md GEMINI.mdPlugins
<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 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 |
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:
precompact_priorities.sh- Priority-preservation instructions for the compaction summarizer
| Claude Code | Codex CLI | Gemini CLI |
|---|---|---|
/plugin install claude-telemetry-hooks@claude-settings | n/a | gemini 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:
session_start_chat_id.py- SessionStart hook that emits a sticky per-projectchat_iduser_prompt_reject_feedback.py- UserPromptSubmit hook that categorizes tool-rejection reasons
| 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 | Code
…