BeClaude

codex

New
26Community RegistryGeneralby 0xasun

Invoke Codex CLI for complex coding tasks requiring high reasoning capabilities. Supports intelligent model selection, session continuation, and safe defaults.

First seen 6/12/2026

Summary

5 via Codex CLI into Claude Code, enabling frontier-level reasoning for complex coding tasks.

  • It supports intelligent model selection, session continuation, and safe sandbox defaults, making it ideal for high-difficulty programming challenges.

Overview

Claude Code marketplace containing development tools and AI integrations for advanced workflows.

Overview

This marketplace provides Claude Code plugins for enhanced development capabilities through external AI CLI integrations and automation tools.

Available Plugins

PluginDescriptionType
CodexOpenAI GPT-5.5 integration for frontier reasoning tasksSkill
GeminiGoogle Gemini 3.1 Pro AI integration for research and reasoningSkill
Nano BananaStandalone image generation via MCP (no Gemini CLI needed)MCP + Skill
Telegram NotifierTelegram notifications for Claude Code eventsHooks

Codex Plugin

Frontier AI assistant through OpenAI Codex CLI (GPT-5.5) integration.

Core Features:

  • Frontier Reasoning: GPT-5.5 with xhigh reasoning effort for maximum capability
  • Fast Mode: gpt-5.5-fast available on demand for speed-sensitive tasks
  • Session Continuation: Resume previous conversations with codex exec resume --last
  • Safe Sandbox Defaults: Read-only by default, workspace-write for code editing

Quick Start:

bash
# Install (npm or Homebrew — both are officially recommended)
npm install -g @openai/codex
# or: brew install --cask codex

codex --version  # Requires v0.125.0+
codex login

Usage:

code
> Use Codex to design a binary search tree in Rust
InfoValue
Path`plugins/codex/`
Version2.11.0
ModelsGPT-5.5, GPT-5.5-Fast

Full Documentation: Codex Plugin README


Gemini Plugin

Google Gemini 3.1 Pro AI integration through Gemini CLI for research, reasoning, and web search.

Core Features:

  • Gemini 3.1 Pro Default: Uses gemini-3.1-pro-preview for ALL tasks (highest capability)
  • Version-Based Mapping: User requests like "use 3" automatically map to the latest 3.x model
  • Session Continuation: Resume previous conversations with -r latest
  • Web Search Integration: Built-in web search for research and documentation lookup

Quick Start:

bash
npm install -g @google/gemini-cli@latest  # Requires v0.33.0+
gemini login

Usage:

code
> Gemini, explain the observer pattern with examples
InfoValue
Path`plugins/gemini/`
Version2.1.0
SkillsGemini (reasoning)
ModelsGemini 3.1 Pro, 3 Pro, 2.5 Pro/Flash

Full Documentation: Gemini Plugin README


Nano Banana Plugin

Standalone image generation plugin using the Nano Banana MCP server. Runs directly as an MCP server — no Gemini CLI dependency.

Core Features:

  • Direct MCP Integration: 7 native image tools without CLI overhead
  • Text-to-Image: Generate batch images with style and variation controls
  • Image Editing: Modify and restore photos with natural language
  • Icon Generation: App icons, favicons, UI elements in multiple sizes
  • Diagrams & Patterns: Technical diagrams, seamless textures, visual stories

Quick Start:

bash
export GEMINI_API_KEY=your_key  # Requires Node.js v18+

Usage:

code
> Generate 3 variations of a sunset over mountains
> Create an app icon for a coffee shop
> Draw a flowchart for user authentication
InfoValue
Path`plugins/nanobanana/`
Version1.4.0
Toolsgenerate_image, edit_image, restore_image, generate_icon, generate_pattern, generate_story, generate_diagram
Commands/generate, /edit, /restore, /icon, /pattern, /story, /diagram, /nanobanana

Full Documentation: Nano Banana Plugin README


Telegram Notifier Plugin

Receive Telegram notifications when Claude Code completes responses, subagent tasks finish, or system notifications occur.

Core Features:

  • Stop Hook: Notifies when Claude Code completes a response
  • SubagentStop Hook: Notifies when subagent tasks complete
  • Notification Hook: Forwards Claude Code system notifications
  • Custom Messages: Customize notification messages via environment variables
  • Dry-Run Mode: Test configuration without sending real notifications

Quick Start:

bash
# Set environment variables
export CC_TELEGRAM_BOT_TOKEN="your-bot-token"
export CC_TELEGRAM_CHAT_ID="your-chat-id"

Environment Variables:

VariableRequiredDescription
CC_TELEGRAM_BOT_TOKENYesBot API token from BotFather
CC_TELEGRAM_CHAT_IDYesTarget chat ID for notifications
CC_TELEGRAM_STOP_MSGNoCustom message for Stop events
CC_TELEGRAM_SUBAGENT_MSGNoCustom message for SubagentStop events
CC_TELEGRAM_NOTIFY_MSGNoCustom message for Notification events
CC_TELEGRAM_DRY_RUNNoSet to true to log without sending
InfoValue
Path`plugins/telegram-notifier/`
Version0.3.0
TypeHooks only (no skills or agents)

Full Documentation: Telegram Notifier README


Installation

Step 1: Add this marketplace

bash
/marketplace add https://github.com/Lucklyric/cc-dev-tools

Step 2: Install plugins

bash
# Install Codex plugin
/plugin install codex@cc-dev-tools

# Install Gemini plugin
/plugin install gemini@cc-dev-tools

# Install Telegram Notifier plugin
/plugin install telegram-notifier@cc-dev-tools

Step 3: Restart Claude Code

Repository Structure

code
cc-dev-tools/                          # Marketplace root
├── .claude-plugin/
│   └── marketplace.json               # Marketplace metadata
├── README.md                          # This file
├── LICENSE                            # Apache 2.0
└── plugins/
    ├── codex/                         # Codex CLI integration
    │   ├── .claude-plugin/
    │   │   └── plugin.json
    │   ├── README.md
    │   └── skills/codex/
    │       ├── SKILL.md
    │       └── references/
    │
    ├── gemini/                        # Gemini CLI integration
    │   ├── .claude-plugin/
    │   │   └── plugin.json
    │   ├── README.md
    │   └── skills/gemini/              # Reasoning & research skill
    │       ├── SKILL.md
    │       └── references/
    │
    ├── nanobanana/                    # Standalone image generation (MCP)
    │   ├── .claude-plugin/
    │   │   └── plugin.json
    │   ├── .mcp.json                  # MCP server definition
    │   ├── commands/                  # Slash commands (/generate, /edit, etc.)
    │   ├── mcp-server/                # Bundled MCP server (Node.js)
    │   ├── README.md
    │   └── skills/nanobanana/
    │       ├── SKILL.md
    │       └── references/
    │
    └── telegram-notifier/             # Telegram notifications
        ├── .claude-plugin/
        │   └── plugin.json
        ├── hooks/
        │   └── hooks.json             # Stop, SubagentStop, Notification hooks
        └── README.md

How It Works

Three-tier hierarchy: Marketplace → Plugin → Components (Skills/Hooks)

  1. You add the marketplace (cc-dev-tools) from GitHub
  2. You install a plugin (e.g., codex, gemini, or telegram-notifier)
  3. The plugin provides components:

- Skills: Invoked by Claude when triggered (codex, gemini) - Hooks: Event-driven automation (telegram-notifier)

Migration from cc-skill-codex

Repository Renamed: This repository was renamed from cc-skill-codex to cc-dev-tools on 2025-11-18.

For existing clones, update your remote URL:

bash
git remote set-url origin [email protected]:Lucklyric/cc-dev-tools.git

GitHub automatically redirects the old URL, so existing clones will continue to work.

Contributing

Contributions welcome! This marketplace follows Claude Code's official plugin structure.

License

Apache 2.0

Version

Marketplace: 2.22.0

PluginVersion
Codex2.11.0
Gemini2.1.0
Nano Banana1.4.0
Telegram Notifier0.3.0

Links

  • Repository: https://github.com/Lucklyric/cc-dev-tools
  • Issues: https://github.com/Lucklyric/cc-dev-tools/issues
  • Author: 0xasun

Install & Usage

1
Add a marketplace
/plugin marketplace add <org/repo>
2
Install the plugin

Add the configuration to /plugin install codex@<marketplace>

3
Manage with /plugin
/plugin

Use Cases

Design and implement a complex data structure like a binary search tree in Rust with full error handling.
Debug and optimize a multi-threaded algorithm that requires deep reasoning about concurrency and performance.
Generate a production-ready API endpoint with authentication, rate limiting, and database integration.
Refactor a large codebase by analyzing dependencies and suggesting architectural improvements.
Solve a tricky mathematical or algorithmic problem with step-by-step reasoning and code generation.
Create a comprehensive test suite for a legacy module, covering edge cases and integration scenarios.

Usage Examples

1

/codex Design a binary search tree in Rust with insert, delete, and search operations, including unit tests.

2

/codex Debug this concurrent queue implementation and suggest optimizations for lock-free access.

3

/codex Generate a REST API for a todo app with Express, including JWT authentication and MongoDB integration.

View source on GitHub

Security Audits

LicenseUnknownSourceWarnRepositoryPass

Frequently Asked Questions

What is codex?

The Codex skill integrates OpenAI's GPT-5.5 via Codex CLI into Claude Code, enabling frontier-level reasoning for complex coding tasks. It supports intelligent model selection, session continuation, and safe sandbox defaults, making it ideal for high-difficulty programming challenges.

How to install codex?

To install codex: add a marketplace (/plugin marketplace add <org/repo>), then add the config to /plugin install codex@<marketplace>. Finally, /plugin in Claude Code.

What is codex best for?

codex is a plugin categorized under General. Created by 0xasun.

What can I use codex for?

codex is useful for: Design and implement a complex data structure like a binary search tree in Rust with full error handling.; Debug and optimize a multi-threaded algorithm that requires deep reasoning about concurrency and performance.; Generate a production-ready API endpoint with authentication, rate limiting, and database integration.; Refactor a large codebase by analyzing dependencies and suggesting architectural improvements.; Solve a tricky mathematical or algorithmic problem with step-by-step reasoning and code generation.; Create a comprehensive test suite for a legacy module, covering edge cases and integration scenarios..