Install agent skills and plugins in Claude, Codex, and Cursor
Use plugin marketplaces with coding agents. Upload a skill ZIP when you work in ChatGPT or Claude.ai. This guide covers both paths and how to use what you install.
Choose the installation path for your app
Install a plugin when you use a coding agent. Upload a ZIP when you use Skills in ChatGPT or Claude.ai.
Add this marketplace to Claude Code
Claude Code uses the same configured marketplaces in the terminal and desktop app for local sessions.
From the terminal, add the marketplace once, then install each plugin by name.
claude plugin marketplace add fcakyon/claude-codex-settings
claude plugin install simplify@claude-settingsIn Claude Code desktop, select + beside the prompt, then Plugins and Add plugin. Choose a plugin from the configured marketplace.
Run /reload-plugins after an install in an open session. New sessions load installed plugins automatically.
Add this marketplace to OpenAI Codex
Codex supports this marketplace in the terminal and the Codex desktop app. The Codex IDE extension doesn’t support plugins.
From the terminal, add the marketplace once, then install each plugin by name.
codex plugin marketplace add fcakyon/claude-codex-settings
codex plugin add simplify@claude-settingsEnter /plugins in Codex CLI to browse configured marketplaces interactively. Start a new session after installing a plugin.
In the Codex desktop app, open Plugins, find the plugin, and select Install. Start a new task before you use its skills or tools.
Read the official OpenAI plugin guideAdd this marketplace to Cursor
Cursor installs personal plugins interactively. User-scope plugins work in the Cursor app and Cursor Agent CLI.
From the terminal, add the repository and start Cursor Agent. Enter /plugin to choose and install a plugin.
cursor-agent plugin marketplace add https://github.com/fcakyon/claude-codex-settings
cursor-agentIn the Cursor app, open Customize, find the plugin, and select Install. Choose user or project scope when prompted.
The marketplace command only adds the catalog.
Read the official Cursor plugin guideInstall a local extension in Gemini CLI
Gemini CLI installs extensions from local plugin folders. Clone the repository, then run the extension command from its root.
git clone https://github.com/fcakyon/claude-codex-settings.git
cd claude-codex-settings
gemini extensions install --path ./plugins/simplifyReplace simplify with the plugin you want. Start a new Gemini CLI session after installation.
Use an installed plugin in a new session
Start a new session so the agent loads the plugin. Describe the task or name the skill in your prompt.
Use the simplify skill to review my staged diff.
Use the humanize skill to revise this README.Some plugins also add slash commands. Open the plugin catalog to see each plugin’s components and install commands.
Choose and review a skill
Open the source before uploading code from any publisher. Check SKILL.md, scripts, references, and external tool requirements.
Upload a skill to ChatGPT
Personal Skills are available on eligible ChatGPT plans. Workspace administrators can control skill uploads.

- Open chatgpt.com/skills
- Select the Skills tab
- Select +, then Upload a skill
- Choose the downloaded ZIP and wait for the security check
- Run a prompt that matches the skill description
Upload a skill to Claude.ai
Custom skills are available on supported Claude plans with code execution enabled.

- Open Customize, then Skills
- Select Add, then Upload skill
- Choose the downloaded ZIP
- Select Save and wait for the security scan
- Run a prompt that matches the skill description
Keep the named folder inside the ZIP
Claude requires the archive to contain the named skill directory. Every release asset on this site follows that structure.
skill-name.zip
└── skill-name/
├── SKILL.md
├── scripts/
└── references/