Back to the catalog

pr-workflow-fcakyon-claude-codex-settings

This skill should be used when user asks to "create a PR", "make a pull request", "open PR for this branch", "submit changes as PR", "push a

Open source Repository Open in the app JSON README (API)

About

This skill should be used when user asks to "create a PR", "make a pull request", "open PR for this branch", "submit changes as PR", "push and create PR", or runs /create-pr or /pr-creator commands.

Details

Kind
Agent skills
Topic
Version control
Publisher
fcakyon
Origin
majiayu
Category
ferramentas
Stars
1,137
Forks
108
Last push
2026-09-08T21:07:11Z
Repository state
ativo
Language
Python
License
Apache-2.0
Added
2026-09-02 18:14:00
Updated
2026-09-04 20:12:47
Origin id
fcakyon/claude-codex-settings/plugins/github-dev/skills/pr-workflow/SKILL.md@main

README

<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](https://img.shields.io/badge/Claude_Code-Plugin-blue)](#installation)
[![Codex CLI](https://img.shields.io/badge/Codex_CLI-Plugin-green)](#installation)
[![Cursor](https://img.shields.io/badge/Cursor-Plugin-purple)](#installation)
[![Context7 MCP](https://img.shields.io/badge/Context7%20MCP-Indexed-blue)](https://context7.com/fcakyon/claude-codex-settings)
[![llms.txt](https://img.shields.io/badge/llms.txt-✓-brightgreen)](https://context7.com/fcakyon/claude-codex-settings/llms.txt)

[![Downloads](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Ffcakyon%2Fclaude-codex-settings%2Ftraffic-data%2Fclones.json&cacheSeconds=3600)](https://github.com/fcakyon/claude-codex-settings/blob/traffic-data/history.json)
[![Views](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Ffcakyon%2Fclaude-codex-settings%2Ftraffic-data%2Fviews.json&cacheSeconds=3600)](https://github.com/fcakyon/claude-codex-settings/blob/traffic-data/history.json)

Battle-tested [Claude Code](https://github.com/anthropics/claude-code), [Claude Desktop](https://claude.ai/download), [OpenAI Codex](https://developers.openai.com/codex), and [Cursor](https://cursor.com) setup with skills, commands, hooks, subagents, and MCP servers, plus Kimi, MiniMax, and GLM API support.

> _"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](https://x.com/karpathy/status/2015883857489522876)

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

[Installation](#installation) • [Plugins](#plugins) • [Configuration](#configuration) • [References](#references)

[Claude Settings](https://claudesettings.com) has setup guides and skill downloads. [Agent Plugins](https://agentplugins.net) is the compact plugin directory.

</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](INSTALL.md) for setup requirements.

<details open>
<summary><strong>Claude Code</strong></summary>

```bash
# Add marketplace (one time)
claude plugin marketplace add fcakyon/claude-codex-settings

# Install any plugin by name
claude plugin install fable-advisor@claude-settings
```

In Claude Code desktop, select **+** beside the prompt, then **Plugins** and **Add plugin**.

</details>

<details>
<summary><strong>Codex CLI</strong></summary>

```bash
# Add marketplace (one time)
codex plugin marketplace add fcakyon/claude-codex-settings

# Install any plugin by name
codex plugin add simplify@claude-settings
```

In the Codex desktop app, open **Plugins**, find the plugin, and select **Install**.

</details>

<details>
<summary><strong>Gemini CLI</strong></summary>

```bash
# Install any plugin by name
gemini extensions install --path ./plugins/simplify
```

</details>

<details>
<summary><strong>Cursor</strong></summary>

```bash
# Add marketplace (one time)
cursor-agent plugin marketplace add https://github.com/fcakyon/claude-codex-settings

# Start the interactive CLI
cursor-agent
```

Enter `/plugin`, open the marketplace, and install the plugin at user or project scope. In the Cursor app, open **Customize** and select **Install**.

</details>

Want the shared agent guidance too? [`.claude/CLAUDE.md`](https://github.com/fcakyon/claude-codex-settings/blob/main/.claude/CLAUDE.md) is the file written for your projects. Run `/claude-tools:sync-claude-md` to pull it into `~/.claude/CLAUDE.md`, or paste it into a project as `CLAUDE.md`, then point the other tools at the same file:

```bash
ln -sfn CLAUDE.md AGENTS.md # Codex CLI, Cursor, Copilot
ln -sfn CLAUDE.md GEMINI.md # Gemini CLI
```

## Plugins

<details>
<summary><strong>simplify</strong> - Review changed code for reuse, redundancy, and over-engineering, then apply fixes</summary>

| Claude Code                                      | Codex CLI                                   | Gemini CLI                                            |
| ------------------------------------------------ | ------------------------------------------- | ----------------------------------------------------- |
| `claude plugin install simplify@claude-settings` | `codex plugin add simplify@claude-settings` | `gemini extensions install --path ./plugins/simplify` |

Run `/simplify` to review your staged or committed diff across four angles (reuse, simplification, efficiency, altitude) with parallel agents, then apply the cleanups. It reviews changed-code quality, not correctness bugs. It brings [Claude Code's built-in `/simplify`](https://code.claude.com/docs/en/code-review#review-a-diff-locally) to Codex, Cursor, and Gemini, which don't ship it natively, so all three get the same review and apply flow.

**Skills:**

- [`simplify`](./plugins/simplify/skills/simplify/SKILL.md) - review the changed diff across four angles and apply the fixes

**Hooks:**

- [`guard.py`](./plugins/simplify/hooks/scripts/guard.py) - Require a completed /simplify run before each Claude Code or Codex commit, unless you explicitly ask to skip it for one commit

</details>

<details>
<summary><strong>humanize</strong> - Block a curated list of AI buzzwords on every write with a hook</summary>

| Claude Code                                      | Codex CLI                                   | Gemini CLI                                            |
| ------------------------------------------------ | ------------------------------------------- | ----------------------------------------------------- |
| `claude plugin install humanize@claude-settings` | `codex plugin add humanize@claude-settings` | `gemini extensions install --path ./plugins/humanize` |

Before a Write or Edit saves, humanize scans the new text and blocks whatever reads like a machine wrote it, each hit paired with a plain-word swap. It reads Markdown files whole and checks comments and docstrings in code files while skipping source code and recognized code-shaped references:

- **3 marks**: the em-dash, section sign, and stray semicolon (the en-dash stays)
- **53 stock words** like `leverage`, `seamlessly`, `vibrant`, `game-changing`, each mapped to a plain swap
- **16 openers and cliches** like `in conclusion`, `a testament to`, `aims to bridge`
- **10 pile-up words** like `crucial` or `significant`, flagged at 3+ uses in one write

Runs on Claude Code and Gemini. Unlike a markdown rule the model can ignore, the hook checks every Write or Edit and blocks each match until it is replaced. The word list draws on [Wikipedia's "Signs of AI writing"](https://en.wikipedia.org/wiki/Wikipedia:Signs_of_AI_writing).

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

| Skill                                                     | Description                                    | ZIP                                                                                                                                                              |
| --------------------------------------------------------- | ---------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`humanize`](./plugins/humanize/skills/humanize/SKILL.md) | Avoid common AI writing patterns with examples | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/humanize.zip) |

**Hooks:**

- [`humanize.py`](./plugins/humanize/hooks/scripts/humanize.py) - blocks matched marks, buzzwords, and cliches before a Write or Edit lands

</details>

<details>
<summary><strong>fable-advisor</strong> - Get a second opinion from Claude Fable 5 before big decisions</summary>

| Claude Code                                           | Codex CLI                                        | Gemini CLI                                                 |
| ----------------------------------------------------- | ------------------------------------------------ | ---------------------------------------------------------- |
| `claude plugin install fable-advisor@claude-settings` | `codex plugin add fable-advisor@claude-settings` | `gemini extensions install --path ./plugins/fable-advisor` |

Ask a Fable 5 reviewer to challenge a plan or conclusion before you commit. Claude Code now supports Fable through its built-in advisor, while Codex, Cursor, and Gemini call the same model through an authenticated Claude Code CLI with `claude -p --model fable`.

**Agents:**

- [`fable-advisor`](./plugins/fable-advisor/claude-agents/fable-advisor.md) - Native Claude Code reviewer with recent conversation context

**Skills:**

- [`fable-advisor`](./plugins/fable-advisor/skills/fable-advisor/SKILL.md) - Routes Claude Code to its native agent and other tools to `claude -p`

</details>

<details>
<summary><strong>codex-advisor</strong> - Get a second opinion from GPT via Codex CLI before big decisions</summary>

| Claude Code                                           | Codex CLI                                        | Gemini CLI                                                 |
| ----------------------------------------------------- | ------------------------------------------------ | ---------------------------------------------------------- |
| `claude plugin install codex-advisor@claude-settings` | `codex plugin add codex-advisor@claude-settings` | `gemini extensions install --path ./plugins/codex-advisor` |

Ask GPT to challenge a plan before you build it, the cross-model check the built-in advisor cannot give you. Claude Code attaches the recent conversation, so "ask the codex advisor" is enough. Codex, Cursor, and Gemini reach the same reviewer. Needs the Codex CLI signed in.

**Agents:**

- [`codex-advisor`](./plugins/codex-advisor/claude-agents/codex-advisor.md) - Sends the recent conversation to GPT and returns the verdict verbatim

**Skills:**

- [`codex-advisor`](./plugins/codex-advisor/skills/codex-advisor/SKILL.md) - Routes Claude Code to its native agent and other tools to `codex exec`

</details>

<details>
<summary><strong>adhd-output-style</strong> - Use fewer output tokens with short steps, quick insights, and clear next actions</summary>

| Claude Code                                               | Codex CLI                                            | Gemini CLI                                                     |
| --------------------------------------------------------- | ---------------------------------------------------- | -------------------------------------------------------------- |
| `claude plugin install adhd-output-style@claude-settings` | `codex plugin add adhd-output-style@claude-settings` | `gemini extensions install --path ./plugins/adhd-output-style` |

Cuts filler and keeps output token use down with the answer or next step first, one-action-per-step lists, concrete time estimates, a single under-two-minute next action, and short teaching notes while coding. Claude Code applies the output style automatically. Codex, Cursor, and Gemini CLI expose the same instructions as an `adhd-output-style` skill because they do not support plugin output styles.

**Output styles:**

- [`ADHD Explanatory`](./plugins/adhd-output-style/output-styles/adhd-explanatory.md) - Low-token ADHD formatting plus educational Insight blocks while coding

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

| Skill                                                                                | Description                                                  | ZIP                                                                                                                                                                       |
| ------------------------------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`adhd-output-style`](./plugins/adhd-output-style/skills/adhd-output-style/SKILL.md) | Apply the same reply format in Codex, Cursor, and Gemini CLI | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/adhd-output-style.zip) |

</details>

<details>
<summary><strong>intelligent-compact</strong> - Keep file paths, root causes, and open questions through auto-summaries</summary>

| Claude Code                                                 | Codex CLI                                              | Gemini CLI                                                       |
| ----------------------------------------------------------- | ------------------------------------------------------ | ---------------------------------------------------------------- |
| `claude plugin install intelligent-compact@claude-settings` | `codex plugin add intelligent-compact@claude-settings` | `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`](./plugins/intelligent-compact/hooks/scripts/precompact_priorities.sh) - Priority-preservation instructions for the compaction summarizer

</details>

<details>
<summary><strong>claude-telemetry-hooks</strong> - Track Claude Code usage, rejections, and session stats in one dashboard</summary>

| Claude Code                                                    | Codex CLI | Gemini CLI                                                          |
| -------------------------------------------------------------- | --------- | ------------------------------------------------------------------- |
| `claude 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`](./plugins/claude-telemetry-hooks/hooks/scripts/session_start_chat_id.py) - SessionStart hook that emits a sticky per-project `chat_id`
- [`user_prompt_reject_feedback.py`](./plugins/claude-telemetry-hooks/hooks/scripts/user_prompt_reject_feedback.py) - UserPromptSubmit hook that categorizes tool-rejection reasons

</details>

<details>
<summary><strong>anthropic-office-skills</strong> - Official Anthropic PDF, Word, PowerPoint, Excel skills</summary>

| Claude Code                                                     | Codex CLI                                                  | Gemini CLI                                                           |
| --------------------------------------------------------------- | ---------------------------------------------------------- | -------------------------------------------------------------------- |
| `claude plugin install anthropic-office-skills@claude-settings` | `codex plugin add anthropic-office-skills@claude-settings` | `gemini extensions install --path ./plugins/anthropic-office-skills` |

**Skills CLI**

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

Official office document skills from [anthropics/skills](https://github.com/anthropics/skills).

| Skill                                                            | Description                                             | Install                                                                                                                                                               |
| ---------------------------------------------------------------- | ------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`pdf`](./plugins/anthropic-office-skills/skills/pdf/SKILL.md)   | PDF processing (read, merge, split, create, OCR, forms) | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/anthropic-pdf.zip) |
| [`pptx`](./plugins/anthropic-office-skills/skills/pptx/SKILL.md) | PowerPoint presentation building and editing            | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/pptx.zip)          |
| [`xlsx`](./plugins/anthropic-office-skills/skills/xlsx/SKILL.md) | Excel spreadsheet processing with formulas              | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/xlsx.zip)          |
| [`docx`](./plugins/anthropic-office-skills/skills/docx/SKILL.md) | Word document creation and editing                      | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/docx.zip)          |

</details>

<details>
<summary><strong>openai-office-skills</strong> - Official OpenAI PDF, Word, PowerPoint, Excel skills</summary>

| Claude Code                                                  | Codex CLI                                               | Gemini CLI                                                        |
| ------------------------------------------------------------ | ------------------------------------------------------- | ----------------------------------------------------------------- |
| `claude plugin install openai-office-skills@claude-settings` | `codex plugin add openai-office-skills@claude-settings` | `gemini extensions install --path ./plugins/openai-office-skills` |

**Skills CLI**

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

Office document skills for creating and editing PDFs, Word documents, slide decks, and spreadsheets.

| Skill                                                                       | Description                                         | Install                                                                                                                                                             |
| --------------------------------------------------------------------------- | --------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`pdf`](./plugins/openai-office-skills/skills/pdf/SKILL.md)                 | PDF generation and extraction with visual review    | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/openai-pdf.zip)  |
| [`slides`](./plugins/openai-office-skills/skills/slides/SKILL.md)           | Slide deck creation with PptxGenJS                  | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/slides.zip)      |
| [`spreadsheet`](./plugins/openai-office-skills/skills/spreadsheet/SKILL.md) | Spreadsheet processing with formulas and formatting | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/spreadsheet.zip) |
| [`doc`](./plugins/openai-office-skills/skills/doc/SKILL.md)                 | Word document creation and editing                  | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/doc.zip)         |

</details>

<details>
<summary><strong>python-skills</strong> - Python best practices from PEP 8, Zen of Python, Google style, and Effective Python</summary>

| Claude Code                                           | Codex CLI                                        | Gemini CLI                                                 |
| ----------------------------------------------------- | ------------------------------------------------ | ---------------------------------------------------------- |
| `claude plugin install python-skills@claude-settings` | `codex plugin add python-skills@claude-settings` | `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** (ZIP for claude.ai, Claude Code, Cursor, Codex, VS Code):

| Skill                                                                            | Description                                 | ZIP                                                                                                                                                                       |
| -------------------------------------------------------------------------------- | ------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`python-guidelines`](./plugins/python-skills/skills/python-guidelines/SKILL.md) | Core rules, self-tests, and reference index | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/python-guidelines.zip) |

**Reference files:**

- [`zen-of-python.md`](./plugins/python-skills/skills/python-guidelines/references/zen-of-python.md) - Full PEP 20 with annotations
- [`google-style-guide.md`](./plugins/python-skills/skills/python-guidelines/references/google-style-guide.md) - Curated sections with source URLs
- [`idiomatic-patterns.md`](./plugins/python-skills/skills/python-guidelines/references/idiomatic-patterns.md) - 18 patterns with before/after code
- [`effective-python-tips.md`](./plugins/python-skills/skills/python-guidelines/references/effective-python-tips.md) - Key tips from 3rd edition

</details>

<details>
<summary><strong>react-skills</strong> - Official React, Next.js, and React Native best practices</summary>

| Claude Code                                          | Codex CLI                                       | Gemini CLI                                                |
| ---------------------------------------------------- | ----------------------------------------------- | --------------------------------------------------------- |
| `claude plugin install react-skills@claude-settings` | `codex plugin add react-skills@claude-settings` | `gemini extensions install --path ./plugins/react-skills` |

**Skills CLI**

```bash
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](https://github.com/vercel-labs/agent-skills).

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

| Skill                                                                                     | Description                                                            | ZIP                                                                                                                                                                            |
| ----------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| [`composition-patterns`](./plugins/react-skills/skills/composition-patterns/SKILL.md)     | React composition patterns: compound components, render props, context | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/composition-patterns.zip)   |
| [`react-best-practices`](./plugins/react-skills/skills/react-best-practices/SKILL.md)     | 64 React/Next.js performance rules from Vercel Engineering             | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/react-best-practices.zip)   |
| [`react-native-skills`](./plugins/react-skills/skills/react-native-skills/SKILL.md)       | 35+ React Native/Expo rules for performance and animations             | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/react-native-skills.zip)    |
| [`react-view-transitions`](./plugins/react-skills/skills/react-view-transitions/SKILL.md) | View Transition API for page/route animations                          | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/react-view-transitions.zip) |
| [`web-design-guidelines`](./plugins/react-skills/skills/web-design-guidelines/SKILL.md)   | UI review against 16 web interface guideline categories                | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/web-design-guidelines.zip)  |

</details>

<details>
<summary><strong>agent-browser</strong> - Official browser automation CLI for AI agents</summary>

| Claude Code                                           | Codex CLI                                        | Gemini CLI                                                 |
| ----------------------------------------------------- | ------------------------------------------------ | ---------------------------------------------------------- |
| `claude plugin install agent-browser@claude-settings` | `codex plugin add agent-browser@claude-settings` | `gemini extensions install --path ./plugins/agent-browser` |

**Skills CLI**

```bash
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](https://medium.com/@richardhightower/agent-browser-ai-first-browser-automation-that-saves-93-of-your-context-window-7a2c52562f8c) than Playwright MCP by using snapshot + element refs instead of full DOM tree dumps. From [vercel-labs/agent-browser](https://github.com/vercel-labs/agent-browser).

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

| Skill                                                                    | Description                                                                  | ZIP                                                                                                                                                                   |
| ------------------------------------------------------------------------ | ---------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`agent-browser`](./plugins/agent-browser/skills/agent-browser/SKILL.md) | Browser automation: navigation, forms, clicking, screenshots, auth, sessions | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/agent-browser.zip) |
| [`electron`](./plugins/agent-browser/skills/electron/SKILL.md)           | Automate Electron desktop apps (VS Code, Slack, Discord, Figma, Notion)      | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/electron.zip)      |

**CLI Tool:** [agent-browser](https://github.com/vercel-labs/agent-browser) - install via `npm i -g agent-browser && agent-browser install`

</details>

<details>
<summary><strong>frontend-design-skills</strong> - Frontend design and writing skills (Anthropic + OpenAI + Vercel)</summary>

| Claude Code                                                    | Codex CLI                                                 | Gemini CLI                                                          |
| -------------------------------------------------------------- | --------------------------------------------------------- | ------------------------------------------------------------------- |
| `claude plugin install frontend-design-skills@claude-settings` | `codex plugin add frontend-design-skills@claude-settings` | `gemini extensions install --path ./plugins/frontend-design-skills` |

**Skills CLI**

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

Frontend design and writing skills from [anthropics/claude-plugins-official](https://github.com/anthropics/claude-plugins-official), [openai/plugins](https://github.com/openai/plugins), and [vercel-labs/writing-guidelines](https://github.com/vercel-labs/writing-guidelines).

| Skill                                                                                                     | Description                                                                       | Install                                                                                                                                                                           |
| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`openai-frontend-design`](./plugins/frontend-design-skills/skills/openai-frontend-design/SKILL.md)       | Composition-first design: restrained layout, image-led hierarchy, tasteful motion | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/openai-frontend-design.zip)    |
| [`anthropic-frontend-design`](./plugins/frontend-design-skills/skills/anthropic-frontend-design/SKILL.md) | Bold aesthetic direction, distinctive typography, anti-generic AI aesthetics      | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/anthropic-frontend-design.zip) |
| [`writing-guidelines`](./plugins/frontend-design-skills/skills/writing-guidelines/SKILL.md)               | Review interface copy and text for clear, consistent writing                      | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/writing-guidelines.zip)        |

</details>

<details>
<summary><strong>mongodb-skills</strong> - Official MongoDB agent skills for schema design, query tuning, and Atlas Search</summary>

| Claude Code                                            | Codex CLI                                         | Gemini CLI                                                  |
| ------------------------------------------------------ | ------------------------------------------------- | ----------------------------------------------------------- |
| `claude plugin install mongodb-skills@claude-settings` | `codex plugin add mongodb-skills@claude-settings` | `gemini extensions install --path ./plugins/mongodb-skills` |

**Skills CLI**

```bash
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](https://github.com/mongodb/agent-skills).

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

| Skill                                                                                                             | Description                      | ZIP                                                                                                                                                                                       |
| ----------------------------------------------------------------------------------------------------------------- | -------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`mongodb-atlas-stream-processing`](./plugins/mongodb-skills/skills/mongodb-atlas-stream-processing/SKILL.md)     | Atlas stream processing patterns | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/mongodb-atlas-stream-processing.zip)   |
| [`mongodb-connection`](./plugins/mongodb-skills/skills/mongodb-connection/SKILL.md)                               | Connection management            | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/mongodb-connection.zip)                |
| [`mongodb-mcp-setup`](./plugins/mongodb-skills/skills/mongodb-mcp-setup/SKILL.md)                                 | MCP server setup                 | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/mongodb-mcp-setup.zip)                 |
| [`mongodb-natural-language-querying`](./plugins/mongodb-skills/skills/mongodb-natural-language-querying/SKILL.md) | Natural language to queries      | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/mongodb-natural-language-querying.zip) |
| [`mongodb-query-optimizer`](./plugins/mongodb-skills/skills/mongodb-query-optimizer/SKILL.md)                     | Query performance tuning         | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/mongodb-query-optimizer.zip)           |
| [`mongodb-schema-design`](./plugins/mongodb-skills/skills/mongodb-schema-design/SKILL.md)                         | Schema design patterns           | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/mongodb-schema-design.zip)             |
| [`mongodb-search-and-ai`](./plugins/mongodb-skills/skills/mongodb-search-and-ai/SKILL.md)                         | Atlas Search and AI integration  | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/mongodb-search-and-ai.zip)             |

</details>

<details>
<summary><strong>supabase-skills</strong> - Supabase Postgres best practices, JavaScript SDK, and CLI skills</summary>

| Claude Code                                             | Codex CLI                                          | Gemini CLI                                                   |
| ------------------------------------------------------- | -------------------------------------------------- | ------------------------------------------------------------ |
| `claude plugin install supabase-skills@claude-settings` | `codex plugin add supabase-skills@claude-settings` | `gemini extensions install --path ./plugins/supabase-skills` |

**Skills CLI**

```bash
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](https://github.com/supabase/agent-skills), JavaScript SDK usage from [supabase/supabase-js](https://github.com/supabase/supabase-js), and CLI workflows from [supabase/cli](https://github.com/supabase/cli).

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

| Skill                                                                                                            | Description                                                          | ZIP                                                                                                                                                                                      |
| ---------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`supabase-postgres-best-practices`](./plugins/supabase-skills/skills/supabase-postgres-best-practices/SKILL.md) | Postgres performance and schema design across 8 categories           | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/supabase-postgres-best-practices.zip) |
| [`supabase-js`](./plugins/supabase-skills/skills/supabase-js/SKILL.md)                                           | JavaScript SDK for auth, database, storage, realtime, edge functions | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/supabase-js.zip)                      |
| [`supabase-cli`](./plugins/supabase-skills/skills/supabase-cli/SKILL.md)                                         | CLI for local dev, migrations, edge functions, project management    | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/supabase-cli.zip)                     |

</details>

<details>
<summary><strong>stripe-skills</strong> - Official Stripe agent skills for payments, billing, Connect, and API upgrades</summary>

| Claude Code                                           | Codex CLI                                        | Gemini CLI                                                 |
| ----------------------------------------------------- | ------------------------------------------------ | ---------------------------------------------------------- |
| `claude plugin install stripe-skills@claude-settings` | `codex plugin add stripe-skills@claude-settings` | `gemini extensions install --path ./plugins/stripe-skills` |

**Skills CLI**

```bash
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](https://github.com/stripe/ai).

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

| Skill                                                                                    | Description                                                     | ZIP                                                                                                                                                                           |
| ---------------------------------------------------------------------------------------- | --------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`stripe-best-practices`](./plugins/stripe-skills/skills/stripe-best-practices/SKILL.md) | Payments, billing, Connect, Treasury integration best practices | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/stripe-best-practices.zip) |
| [`stripe-projects`](./plugins/stripe-skills/skills/stripe-projects/SKILL.md)             | Stripe Projects CLI setup and stack provisioning                | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/stripe-projects.zip)       |
| [`upgrade-stripe`](./plugins/stripe-skills/skills/upgrade-stripe/SKILL.md)               | Stripe API version and SDK upgrade guide                        | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/upgrade-stripe.zip)        |

</details>

<details>
<summary><strong>polar-skills</strong> - Official Polar agent skills for billing, subscriptions, and local dev environment</summary>

| Claude Code                                          | Codex CLI                                       | Gemini CLI                                                |
| ---------------------------------------------------- | ----------------------------------------------- | --------------------------------------------------------- |
| `claude plugin install polar-skills@claude-settings` | `codex plugin add polar-skills@claude-settings` | `gemini extensions install --path ./plugins/polar-skills` |

**Skills CLI**

```bash
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](https://github.com/polarsource/polar).

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

| Skill                                                                                       | Description                                                                   | ZIP                                                                                                                                                                             |
| ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`polar-billing`](./plugins/polar-skills/skills/polar-billing/SKILL.md)                     | Polar billing system, Stripe integration, subscriptions, benefit provisioning | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/polar-billing.zip)           |
| [`polar-local-environment`](./plugins/polar-skills/skills/polar-local-environment/SKILL.md) | Polar local development environment with Docker                               | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/polar-local-environment.zip) |

</details>

<details>
<summary><strong>livekit-skills</strong> - LiveKit voice AI agent development (Cloud + self-hosted)</summary>

| Claude Code                                            | Codex CLI                                         | Gemini CLI                                                  |
| ------------------------------------------------------ | ------------------------------------------------- | ----------------------------------------------------------- |
| `claude plugin install livekit-skills@claude-settings` | `codex plugin add livekit-skills@claude-settings` | `gemini extensions install --path ./plugins/livekit-skills` |

**Skills CLI**

```bash
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](https://github.com/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`](./plugins/livekit-skills/skills/livekit-skills/SKILL.md) | Voice AI agents: architecture, handoffs, testing, CLI workflow | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/livekit-skills.zip) |

</details>

<details>
<summary><strong>cloudflare-skills</strong> - Official Cloudflare skill for Workers, R2, D1, KV, AI, and 50+ services</summary>

| Claude Code                                               | Codex CLI                                            | Gemini CLI                                                     |
| --------------------------------------------------------- | ---------------------------------------------------- | -------------------------------------------------------------- |
| `claude plugin install cloudflare-skills@claude-settings` | `codex plugin add cloudflare-skills@claude-settings` | `gemini extensions install --path ./plugins/cloudflare-skills` |

**Skills CLI**

```bash
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](https://github.com/cloudflare/skills).

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

| Skill                                                                                | Description                                                     | ZIP                                                                                                                                                                       |
| ------------------------------------------------------------------------------------ | --------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`cloudflare-deploy`](./plugins/cloudflare-skills/skills/cloudflare-deploy/SKILL.md) | Cloudflare platform: compute, storage, AI, networking, security | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/cloudflare-deploy.zip) |

</details>

<details>
<summary><strong>web-performance-skills</strong> - Web performance audits with Core Web Vitals and Chrome DevTools</summary>

| Claude Code                                                    | Codex CLI                                                 | Gemini CLI                                                          |
| -------------------------------------------------------------- | --------------------------------------------------------- | ------------------------------------------------------------------- |
| `claude plugin install web-performance-skills@claude-settings` | `codex plugin add web-performance-skills@claude-settings` | `gemini extensions install --path ./plugins/web-performance-skills` |

**Skills CLI**

```bash
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](https://github.com/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`](./plugins/web-performance-skills/skills/web-performance-optimization/SKILL.md) | Core Web Vitals, Lighthouse, render-blocking, accessibility audits | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/web-performance-optimization.zip) |

</details>

<details>
<summary><strong>openobserve-skills</strong> - Search logs, metrics, and traces and build OpenObserve dashboards via curl</summary>

| Claude Code                                                | Codex CLI                                             | Gemini CLI                                                      |
| ---------------------------------------------------------- | ----------------------------------------------------- | --------------------------------------------------------------- |
| `claude plugin install openobserve-skills@claude-settings` | `codex plugin add openobserve-skills@claude-settings` | `gemini extensions install --path ./plugins/openobserve-skills` |

**Skills CLI**

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

Programmatic access to OpenObserve (Cloud or self-hosted) via the documented REST API. Covers:

- **Auth and search**: HTTP Basic auth, the search/SQL endpoint with microsecond timestamps
- **Streams and dashboards**: stream listing/schema, dashboard CRUD, the v8 panel JSON schema
- **Known pitfalls**: the `customQuery` re-aggregation bug that doubles table rows when `fields.y` carries an `aggregationFunction`

Built for AI agents: uses `curl` only, no SDK or CLI dependency. Pairs naturally with `claude-telemetry-hooks` for Claude Code usage dashboards. Reference docs are mirrored from [openobserve/openobserve-docs](https://github.com/openobserve/openobserve-docs).

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

| Skill                                                                             | Description                                                                         | ZIP                                                                                                                                                                     |
| --------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`openobserve-api`](./plugins/openobserve-skills/skills/openobserve-api/SKILL.md) | Search SQL, streams, dashboards, panel schema, ingestion endpoints, common pitfalls | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/openobserve-api.zip) |

</details>

<details>
<summary><strong>hetzner-skills</strong> - Hetzner Cloud CLI skill for servers, networks, firewalls, DNS, and storage</summary>

| Claude Code                                            | Codex CLI                                         | Gemini CLI                                                  |
| ------------------------------------------------------ | ------------------------------------------------- | ----------------------------------------------------------- |
| `claude plugin install hetzner-skills@claude-settings` | `codex plugin add hetzner-skills@claude-settings` | `gemini extensions install --path ./plugins/hetzner-skills` |

**Skills CLI**

```bash
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](https://github.com/hetznercloud/cli).

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

| Skill                                                                       | Description                                                         | ZIP                                                                                                                                                                    |
| --------------------------------------------------------------------------- | ------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`hetzner-deploy`](./plugins/hetzner-skills/skills/hetzner-deploy/SKILL.md) | Servers, networks, firewalls, load balancers, DNS, volumes, storage | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/hetzner-deploy.zip) |

</details>

<details>
<summary><strong>dokploy-skills</strong> - Dokploy deployment skill for Dokploy Cloud and self-hosted dashboards</summary>

| Claude Code                                            | Codex CLI                                         | Gemini CLI                                                  |
| ------------------------------------------------------ | ------------------------------------------------- | ----------------------------------------------------------- |
| `claude plugin install dokploy-skills@claude-settings` | `codex plugin add dokploy-skills@claude-settings` | `gemini extensions install --path ./plugins/dokploy-skills` |

**Skills CLI**

```bash
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](https://github.com/Dokploy/website), plus a compact CLI command index generated from [Dokploy/cli](https://github.com/Dokploy/cli).

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

| Skill                                                                       | Description                                                                                         | ZIP                                                                                                                                                                    |
| --------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`dokploy-deploy`](./plugins/dokploy-skills/skills/dokploy-deploy/SKILL.md) | Dokploy Cloud, self-hosted dashboard, Docker Compose, databases, domains, remote servers, CLI index | [![ZIP](https://img.shields.io/badge/⬇%20ZIP-2ea44f?style=flat-square)](https://github.com/fcakyon/claude-codex-settings/releases/latest/download/dokploy-deploy.zip) |

</details>

<details>
<summary><strong>anthropic-essentials</strong> - Feature dev, CLAUDE.md management, skill creation</summary>

Best-of bundle from [anthropics/claude-plugins-official](https://github.com/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

</details>

<details>
<summary><strong>anthropic-plugin-dev</strong> - Plugin development toolkit</s

More