freshcrate
Skin:/
Home > MCP Servers > claude-codex-settings

claude-codex-settings

My personal Claude Code and OpenAI Codex setup with battle-tested skills, commands, hooks, agents and MCP servers that I use daily.

Why this rank:Strong adoptionRelease freshnessHealthy release cadence

Description

My personal Claude Code and OpenAI Codex setup with battle-tested skills, commands, hooks, agents and MCP servers that I use daily.

README

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.

Installation â€ĸ Plugins â€ĸ Configuration â€ĸ References

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.

Claude Code
# Add marketplace (one time)
/plugin marketplace add fcakyon/claude-codex-settings

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

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.

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

Create symlinks for cross-tool compatibility:

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

Plugins

intelligent-compact - PreCompact hook that preserves high-signal context in auto-compact summaries
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:

anthropic-office-skills - Official Anthropic PDF, Word, PowerPoint, Excel skills
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) ZIPpptx PowerPoint presentation building and editing ZIPxlsx Excel spreadsheet processing with formulas ZIPdocx Word document creation and editing ZIPSkills 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 ZIPslides Slide deck creation with PptxGenJS ZIPspreadsheet Spreadsheet processing with formulas and formatting ZIPdoc Word document creation and editing ZIPPython 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:

react-skills - Official React, Next.js, and React Native best practices
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 ZIPreact-best-practices 64 React/Next.js performance rules from Vercel Engineering ZIPreact-native-skills 35+ React Native/Expo rules for performance and animations ZIPreact-view-transitions View Transition API for page/route animations ZIPweb-design-guidelines UI review against 16 web interface guideline categories ZIPSkills CLI

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

Browser automation via CLI instead of MCP. 93% less context usage than Playwright MCP by using snapshot + element refs instead of full DOM tree dumps. From vercel-labs/agent-browser.

Skills (ZIP for claude.ai, Claude Code, Cursor, Codex, VS Code):

Skill Description ZIP
agent-browser Browser automation: navigation, forms, clicking, screenshots, auth, sessions ZIPelectron Automate Electron desktop apps (VS Code, Slack, Discord, Figma, Notion) ZIPCLI Tool: agent-browser - install via npm i -g agent-browser && agent-browser install

frontend-design-skills - Official frontend design skills (Anthropic + OpenAI)
Claude Code Codex CLI Gemini CLI
/plugin install frontend-design-skills@claude-settings Open /plugins -> Claude & Codex Settings -> install frontend-design-skills gemini extensions install --path ./plugins/frontend-design-skills

Skills CLI

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

Frontend design skills from anthropics/claude-plugins-official and openai/skills.

Skill Description Install
openai-frontend-design Composition-first design: restrained layout, image-led hierarchy, tasteful motion ZIPanthropic-frontend-design Bold aesthetic direction, distinctive typography, anti-generic AI aesthetics ZIPSkills CLI

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

Official MongoDB agent skills for schema design, query tuning, Atlas Search, and connections. From mongodb/agent-skills.

Skills (ZIP for claude.ai, Claude Code, Cursor, Codex, VS Code):

Skill Description ZIP
atlas-stream-processing Atlas stream processing patterns ZIPmongodb-connection Connection management ZIPmongodb-mcp-setup MCP server setup ZIPmongodb-natural-language-querying Natural language to queries ZIPmongodb-query-optimizer Query performance tuning ZIPmongodb-schema-design Schema design patterns ZIPmongodb-search-and-ai Atlas Search and AI integration ZIPSkills CLI

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

Supabase skills covering Postgres query/schema best practices from supabase/agent-skills, JavaScript SDK usage from supabase/supabase-js, and CLI workflows from supabase/cli.

Skills (ZIP for claude.ai, Claude Code, Cursor, Codex, VS Code):

Skill Description ZIP
supabase-postgres-best-practices Postgres performance and schema design across 8 categories ZIPsupabase-js JavaScript SDK for auth, database, storage, realtime, edge functions ZIPsupabase-cli CLI for local dev, migrations, edge functions, project management ZIPSkills CLI

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

Official Stripe agent skills for payment integration: API selection, Connect platform setup, billing/subscriptions, Treasury, and SDK upgrades. From stripe/ai.

Skills (ZIP for claude.ai, Claude Code, Cursor, Codex, VS Code):

Skill Description ZIP
stripe-best-practices Payments, billing, Connect, Treasury integration best practices ZIPstripe-projects Stripe Projects CLI setup and stack provisioning ZIPupgrade-stripe Stripe API version and SDK upgrade guide ZIPSkills CLI

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

Official Polar agent skills for billing system, Stripe integration, subscription lifecycle, and local dev with Docker. From polarsource/polar.

Skills (ZIP for claude.ai, Claude Code, Cursor, Codex, VS Code):

Skill Description ZIP
polar-billing Polar billing system, Stripe integration, subscriptions, benefit provisioning ZIPpolar-local-environment Polar local development environment with Docker ZIPSkills CLI

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

Voice AI agent development with the LiveKit Agents SDK. Cloud-agnostic: supports both LiveKit Cloud and self-hosted deployments. Uses lk CLI for docs access instead of MCP. Based on livekit/agent-skills, patched for CLI workflow and BYOK model providers.

Skills (ZIP for claude.ai, Claude Code, Cursor, Codex, VS Code):

Skill Description ZIP
livekit-skills Voice AI agents: architecture, handoffs, testing, CLI workflow ZIPSkills CLI

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

Cloudflare developer platform skill with decision trees for product selection across Workers, Durable Objects, R2, D1, KV, Workers AI, and 50+ services. From cloudflare/skills.

Skills (ZIP for claude.ai, Claude Code, Cursor, Codex, VS Code):

Skill Description ZIP
cloudflare-deploy Cloudflare platform: compute, storage, AI, networking, security ZIPSkills CLI

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

Audit web page performance using Chrome DevTools MCP. Measures Core Web Vitals (FCP, LCP, TBT, CLS, Speed Index), identifies render-blocking resources, network dependency chains, layout shifts, caching issues, and accessibility gaps. From cloudflare/skills.

Bundles the chrome-devtools MCP server (no API key needed).

Skills (ZIP for claude.ai, Claude Code, Cursor, Codex, VS Code):

Skill Description ZIP
web-performance-optimization Core Web Vitals, Lighthouse, render-blocking, accessibility audits ZIPSkills CLI

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

Hetzner Cloud infrastructure management via the hcloud CLI. Decision trees for compute, networking, storage, DNS, and common deploy workflows. Reference docs extracted from hetznercloud/cli.

Skills (ZIP for claude.ai, Claude Code, Cursor, Codex, VS Code):

Skill Description ZIP
hetzner-deploy Servers, networks, firewalls, load balancers, DNS, volumes, storage ZIPSkills CLI

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

Dokploy Cloud and self-hosted dashboard workflows from Dokploy/website, plus a compact CLI command index generated from Dokploy/cli.

Skills (ZIP for claude.ai, Claude Code, Cursor, Codex, VS Code):

Skill Description ZIP
dokploy-deploy Dokploy Cloud, self-hosted dashboard, Docker Compose, databases, domains, remote servers, CLI index ZIPBest-of bundle from anthropics/claude-plugins-official. Cherry-picks skills, agents, and commands from multiple upstream plugins.

Skills:

  • claude-md-improver - Audit and improve CLAUDE.md files across a codebase
  • skill-creator - Create, improve, and benchmark Agent Skills with eval testing

Agents:

  • code-architect - Architecture design from codebase patterns
  • code-explorer - Deep codebase exploration and analysis
  • code-reviewer - Code quality and review

Commands:

  • /feature-dev - Guided feature development workflow
  • /revise-claude-md - Capture session learnings into CLAUDE.md

Hooks:

  • Stop (prompt) - Suggest CLAUDE.md updates after significant code changes
  • SessionEnd (prompt) - Remind to capture learnings when session ends
anthropic-plugin-dev - Plugin development toolkit

Actively maintained plugin development toolkit from anthropics/claude-plugins-official. 7 skills, 3 agents, and guided plugin creation.

Skills: hook-development, mcp-integration, plugin-structure, plugin-settings, command-development, agent-development, skill-development

Agents: agent-creator, plugin-validator, skill-reviewer

Commands: /create-plugin - Guided plugin workflow

phd-skills - Hypothesis design, paper review, citation checks

Academic research toolkit from fcakyon/phd-skills. Experiment design, literature review, paper writing, citation verification, and reviewer defense for PhD workflows.

Skills:

Agents:

Commands:

  • /factcheck - Verify citations and claims
  • /fortify - Strengthen paper against reviewer critiques
  • /gaps - Find gaps in literature coverage
  • /setup - Configure phd-skills
  • /xray - Deep analysis of a paper
github-dev - Git workflow agents + skills
Claude Code Codex CLI Gemini CLI
/plugin install github-dev@claude-settings Open /plugins -> Claude & Codex Settings -> install github-dev gemini extensions install --path ./plugins/github-dev

Skills CLI

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

Git and GitHub automation. Run the setup skill after install.

Agents:

Skills:

Hooks:

ultralytics-dev - Auto-formatting hooks
Claude Code Codex CLI Gemini CLI
/plugin install ultralytics-dev@claude-settings Open /plugins -> Claude & Codex Settings -> install ultralytics-dev gemini extensions install --path ./plugins/ultralytics-dev

Auto-formatting hooks for Python, JavaScript, Markdown, and Bash.

Hooks:

azure-tools - Azure MCP & Skills
Claude Code Codex CLI Gemini CLI
/plugin install azure-tools@claude-settings Open /plugins -> Claude & Codex Settings -> install azure-tools gemini extensions install --path ./plugins/azure-tools

Skills CLI

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

40+ Azure services with Azure CLI authentication. Run /azure-tools:setup after install.

Skills:

Commands:

MCP: .mcp.json | microsoft/mcp/Azure.Mcp.Server

claude-tools - Sync CLAUDE.md + allowlist + context refresh
Claude Code Codex CLI Gemini CLI
/plugin install claude-tools@claude-settings Open /plugins -> Claude & Codex Settings -> install claude-tools gemini extensions install --path ./plugins/claude-tools

Commands for syncing CLAUDE.md and permissions allowlist from repository, plus context refresh for long conversations.

Commands:

Hooks:

gcloud-tools - GCloud MCP & Skills
Claude Code Codex CLI Gemini CLI
/plugin install gcloud-tools@claude-settings Open /plugins -> Claude & Codex Settings -> install gcloud-tools gemini extensions install --path ./plugins/gcloud-tools

Skills CLI

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

Logs, metrics, and traces. Run /gcloud-tools:setup after install.

Skills:

  • gcloud-usage - Best practices for GCloud Logs/Metrics/Traces
  • setup - Troubleshooting guide

Commands:

MCP: .mcp.json | google-cloud/observability-mcp

paper-search-tools - Paper Search MCP & Skills
Claude Code Codex CLI Gemini CLI
/plugin install paper-search-tools@claude-settings Open /plugins -> Claude & Codex Settings -> install paper-search-tools gemini extensions install --path ./plugins/paper-search-tools

Skills CLI

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

Search papers across arXiv, PubMed, IEEE, Scopus, ACM. Run /paper-search-tools:setup after install. Requires Docker.

Skills:

Commands:

MCP: .mcp.json | mcp/paper-search

tavily-tools - Tavily MCP & Skills
Claude Code Codex CLI Gemini CLI
/plugin install tavily-tools@claude-settings Open /plugins -> Claude & Codex Settings -> install tavily-tools gemini extensions install --path ./plugins/tavily-tools

Skills CLI

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

Web search and content extraction. Run /tavily-tools:setup after install.

Skills:

Commands:

Hooks:

MCP: .mcp.json | tavily-ai/tavily-mcp


Configuration

Claude Code

Configuration in .claude/settings.json:

  • Model: OpusPlan mode (plan: Opus 4.6, execute: Opus 4.6, fast: Sonnet 4.6) - source
  • Environment: bash working directory, telemetry disabled, MCP output limits
  • Permissions: bash commands, git operations, MCP tools
  • Plugins: All plugins enabled
Z.ai (85% cheaper)

Configuration in .claude/settings-zai.json using Z.ai GLM models via Anthropic-compatible API:

  • Main model: GLM-5-Turbo (dialogue, planning, coding, complex reasoning)
  • Fast model: GLM-4.7-Flash (file search, syntax checking)
  • Cost savings: 85% cheaper than Claude 4.6 - source
  • API key: Get from z.ai/model-api
Kimi K2.5

Run Claude Code with Kimi K2.5 via Anthropic-compatible API - source:

export ANTHROPIC_BASE_URL=https://api.moonshot.ai/anthropic
export ANTHROPIC_AUTH_TOKEN="your-moonshot-api-key"
export ANTHROPIC_MODEL=kimi-k2.5
export ANTHROPIC_DEFAULT_OPUS_MODEL=kimi-k2.5
export ANTHROPIC_DEFAULT_SONNET_MODEL=kimi-k2.5
export ANTHROPIC_DEFAULT_HAIKU_MODEL=kimi-k2.5
export CLAUDE_CODE_SUBAGENT_MODEL=kimi-k2.5
export ENABLE_TOOL_SEARCH=false
MiniMax M2.7 (204K context)

Run Claude Code with MiniMax M2.7 via Anthropic-compatible API - source:

  • Model: MiniMax-M2.7 - 204K context window
  • Fast model: MiniMax-M2.7-highspeed - high-throughput variant
  • API key: Get from minimax.io
export ANTHROPIC_BASE_URL=https://api.minimax.io/anthropic
export ANTHROPIC_AUTH_TOKEN="your-minimax-api-key"
export ANTHROPIC_MODEL=MiniMax-M2.7
export ANTHROPIC_DEFAULT_OPUS_MODEL=MiniMax-M2.7
export ANTHROPIC_DEFAULT_SONNET_MODEL=MiniMax-M2.7
export ANTHROPIC_DEFAULT_HAIKU_MODEL=MiniMax-M2.7-highspeed
export CLAUDE_CODE_SUBAGENT_MODEL=MiniMax-M2.7
export ENABLE_TOOL_SEARCH=false

Or use the settings file: .claude/settings-minimax.json

For Codex CLI, see the recipe at .codex/config-minimax.toml. Note that Codex requires a local Responses API proxy since MiniMax only exposes chat completions.

OpenAI Codex

Configuration in ~/.codex/config.toml:

  • Model: gpt-5.4 with model_reasoning_effort set to "high"
  • Provider: Azure via responses API surface
  • Auth: Project-specific base URL with env_key authentication
VSCode

Settings in .vscode/settings.json:

  • GitHub Copilot: Custom instructions for automated commit messages and PR descriptions
  • Python: Ruff formatting with auto-save and format-on-save enabled
  • Terminal: Cross-platform compatibility configurations

TODO

Visual demos:

  • Add before/after comparison slider images or GIFs for each plugin showing the value visually

Zero-MCP goal:

  • Replace MCP-based plugins with CLI alternatives where possible (mongodb, tavily, gcloud, azure, paper-search)

New plugins/skills:

  • Payments: Stripe best practices, Polar billing and local dev
  • Payments: Paddle billing and checkout skills
  • Deployment: Cloudflare platform skill
  • Deployment: Hetzner Cloud CLI skill
  • Deployment: Dokploy deployment skill
  • Frontend design: Anthropic + OpenAI frontend design skills (bundled as frontend-design-skills)
  • Frontend: TanStack (Router, Query, Table, Form)
  • Real-time: LiveKit voice/video agent skill
  • Documents: Google Docs, PPTX, DOCX, Excel from OpenAI (bundled as openai-office-skills)
  • Auth: Clerk, Firebase patterns
  • Fullstack: FastAPI, NodeJS backends, Tailwind CSS v4, shadcn/ui, Sentry monitoring, Web Vitals
  • Productivity: Caveman compressed output style saving ~75% of tokens

Static website:

  • Publish agentplugins.net as a plugin catalog site with search, category filtering, per-tool install snippets, and GitHub Pages hosting

Other:

  • Change marketplace and repo name to Agent Plugins instead of Claude Settings or Claude Codex Settings, and update the repo thumbnail

References

Thank you for the support!

Star History Chart

Release History

VersionChangesUrgencyDate
v2.3.0<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](https://awesome.re/mentioned-badge-flat.svg)](https://github.com/hesreallyhim/awesome-claude-code) [![Claude Code Plugin](https://img.shields.io/badge/Claude%20Code-Plugin-blue)](#available-plugins) [![Context7 MCP](https://img.shields.io/badge/Context7%20MCP-Indexed-blue)](https://context7.com/fcakMedium3/24/2026
v2.2.0<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](https://awesome.re/mentioned-badge-flat.svg)](https://github.com/hesreallyhim/awesome-claude-code) [![Claude Code Plugin](https://img.shields.io/badge/Claude%20Code-Plugin-blue)](#available-plugins) [![Context7 MCP](https://img.shields.io/badge/Context7%20MCP-Indexed-blue)](https://context7.comLow3/6/2026
v2.1.0<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](https://awesome.re/mentioned-badge-flat.svg)](https://github.com/hesreallyhim/awesome-claude-code) [![Claude Code Plugin](https://img.shields.io/badge/Claude%20Code-Plugin-blue)](#available-plugins) [![Context7 MCP](https://img.shields.io/badge/Context7%20MCP-Indexed-blue)](https://context7.comLow2/4/2026
v2.0.7## What's Changed * Simplify Statusline README section by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/98 * Make statusline plugin cross-platform without extra dependency by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/99 **Full Changelog**: https://github.com/fcakyon/claude-codex-settings/compare/v2.0.6...v2.0.7 <div align="center"> <img src="https://github.com/user-attachments/assets/a978cb0a-785d-4a7d-aff2-7e962edd3120" width="10000" alt=Low12/27/2025
v2.0.6## What's Changed * Add statusline-tools plugin with account-wide block usage tracking by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/96 * Update version to 2.0.6 in marketplace.json by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/97 **Full Changelog**: https://github.com/fcakyon/claude-codex-settings/compare/v2.0.5...v2.0.6 ## Statusline <img src="https://github.com/user-attachments/assets/7bbb8e98-2755-46be-b0a4-cc8367a58fdb" width="600">Low12/26/2025
v2.0.5## What's Changed * Add colored statusline with cache hit rate display by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/92 * Move plugin validation from hooks to GitHub Actions CI by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/93 * Rename marketplace to claude-settings by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/94 * Restructure Supabase skill with progressive disclosure pattern by @fcakyon in https://github.com/fcakyon/claudLow12/25/2025
v2.0.4## What's Changed * fix: fix md frontmatter yaml syntax by @hesreallyhim in https://github.com/fcakyon/claude-codex-settings/pull/89 * Add responsive-tester agent for Playwright plugin by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/90 * Add native statusline setup command by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/91 ## New Contributors * @hesreallyhim made their first contribution in https://github.com/fcakyon/claude-codex-settings/pull/89 Low12/24/2025
v2.0.3## What's Changed * Add TODO section for future enhancements and skills updates by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/83 * Rewrite MongoDB setup guide with interactive flow by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/85 * Add Awesome Claude Code badge to README by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/86 * Rewrite Slack and ccproxy plugin setup commands by @fcakyon in https://github.com/fcakyon/claude-codex-sLow12/19/2025
v2.0.1## What's Changed * Add ccproxy-tools plugin for LLM provider configuration by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/81 * Update plugin skills and main readme to include source repositories of the MCP servers by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/82 **Full Changelog**: https://github.com/fcakyon/claude-codex-settings/compare/v2.0.0...v2.0.1 <div align="center"> <img src="https://github.com/user-attachments/assets/a978cb0a-78Low12/17/2025
v2.0.0## What's Changed * Fix hook stderr output and soften tavily GitHub URL handling by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/78 * Add 9 new MCP integration plugins: azure-tools, slack-tools, mongodb-tools, gcloud-tools, linear-tools, paper-search-tools, supabase-tools, notification-tools, playwright-tools by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/80 **Full Changelog**: https://github.com/fcakyon/claude-codex-settings/compare/v1.2.3...v2.Low12/17/2025
v1.2.3## What's Changed * Rename agents and add /review-pr command by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/70 * Fix ccusage statusline pricing for Opus 4.5 by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/71 * Refactor pr-reviewer for concise actionable output by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/72 * Add tree command to bash allowlist by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/73 * Scope plLow12/13/2025
v1.2.2## What's Changed * Fix hook script compatibility for Python 3.9 and remove PyYAML dependency by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/63 * Add load-frontend-skill command to claude-tools by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/64 * Standardize exclusion lists across hook scripts by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/65 * Add skills field to agent files for auto-loading by @fcakyon in https://github.com/fLow11/29/2025
v1.2.1## What's Changed * Remove enabledPlugins from settings files by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/56 * Align formatting hooks with ultralytics/actions configuration by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/57 * Switch from SonnetPlan to OpusPlan mode by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/59 * Simplify agent config and inline documentation by @fcakyon in https://github.com/fcakyon/claude-codex-settingsLow11/26/2025
v1.2.0## What's Changed * Fix Python hook script execution by adding shebang line by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/41 * Add Claude Code VS Code settings by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/42 * Fix infinite loop in Python docstring formatter hook by @fcakyon in https://github.com/fcakyon/claude-codex-settings/pull/43 * Add desktop notification system for task completion by @fcakyon in https://github.com/fcakyon/claude-codex-settiLow11/23/2025
v1.1.1> **Prerequisites:** Before installing, ensure you have Claude Code and required tools installed. See [INSTALL.md](INSTALL.md) for complete prerequisites. Install agents, commands, hooks, and MCP servers via [Claude Code Plugins](https://docs.claude.com/en/docs/claude-code/plugins) system: ```bash # Add marketplace /plugin marketplace add fcakyon/claude-codex-settings # Install plugins /plugin install code-quality-hooks@fcakyon-claude-plugins /plugin install git-workflow-agents@fcakLow11/5/2025
v1.1.0> **Prerequisites:** Before installing, ensure you have Claude Code and required tools installed. See [INSTALL.md](INSTALL.md) for complete prerequisites. Install agents, commands, hooks, and MCP servers via [Claude Code Plugins](https://docs.claude.com/en/docs/claude-code/plugins) system: ```bash # Add marketplace /plugin marketplace add fcakyon/claude-codex-settings # Install plugins /plugin install code-quality-hooks@fcakyon-claude-plugins /plugin install git-workflow-agents@fcakLow11/4/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

claude-skills-hub2,300+ skills, 10 AI agents, and 100 prompt codes for Claude Code — browse, download, and launch AI tools0.0.0
altk-evolveSelf improving agents through iterationsv1.1.3
trace-mcpMCP server for Claude Code and Codex. One tool call replaces ~42 minutes of agent explorationv1.41.3
linkedin-mcp-serverOpen-source MCP server for LinkedIn. Give Claude and any MCP-compatible AI assistant access to profiles, companies, jobs, and messages.v4.13.2
LLM-WikiAutonomous knowledge base plugin for Claude Code - captures reserch, ideas, and decisions into an interlinked wiki with reserch-on-miss, semantic search, and a Wikipedia-style web UI. Knowledge compoumain@2026-04-26

More in MCP Servers

AstrBotAgentic IM Chatbot infrastructure that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. ✨
agentscopeBuild and run agents you can see, understand and trust.
claude-plugins-officialOfficial, Anthropic-managed directory of high quality Claude Code Plugins.
langchain4jLangChain4j is an open-source Java library that simplifies the integration of LLMs into Java applications through a unified API, providing access to popular LLMs and vector databases. It makes impleme