🎯

codex

🎯Skill

from acking-you/myclaude-skills

VibeIndex|
What it does

Generates and executes advanced code analysis, generation, and web research tasks using deep reasoning AI models and flexible CLI commands.

πŸ“¦

Part of

acking-you/myclaude-skills(12 items)

codex

Installation

Shell ScriptRun shell script
./install.sh install-all # Install all skills to ~/.claude/skills/
Shell ScriptRun shell script
./install.sh prompt-update # Update ~/.claude/CLAUDE.md
πŸ“– Extracted from docs: acking-you/myclaude-skills
3Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Execute Codex CLI for code generation, analysis, web search and web fetch. Two capabilities - (1) Code Generation with deep reasoning, (2) Web Search & Fetch for online research.

Overview

# Codex CLI Integration

Two specialized capabilities for different use cases.

Capability 1: Code Generation

Deep code analysis and generation with maximum reasoning power.

When to Use

  • Complex code analysis requiring deep understanding
  • Large-scale refactoring across multiple files
  • Automated code generation with safety controls
  • Tasks requiring specialized reasoning models

Default Configuration

  • Model: gpt-5.2-codex
  • Reasoning: xhigh (maximum thinking depth)

Command Pattern

```bash

codex e -m gpt-5.2-codex -c model_reasoning_effort=xhigh \

--dangerously-bypass-approvals-and-sandbox \

--skip-git-repo-check \

-C \

""

```

Parameters

  • (required): Task description, supports @file references
  • -m : Override model (e.g., gpt-5.1-codex, gpt-5)
  • -c model_reasoning_effort=: Override reasoning (low/medium/high/xhigh)
  • -C : Working directory (default: current)

Examples

Basic code analysis:

```bash

codex e -m gpt-5.2-codex -c model_reasoning_effort=xhigh \

--dangerously-bypass-approvals-and-sandbox \

--skip-git-repo-check \

"explain @src/main.ts"

```

Refactoring with custom model:

```bash

codex e -m gpt-5.1-codex -c model_reasoning_effort=high \

--dangerously-bypass-approvals-and-sandbox \

--skip-git-repo-check \

"refactor @src/utils for performance"

```

Multi-file analysis:

```bash

codex e -m gpt-5.2-codex -c model_reasoning_effort=xhigh \

--dangerously-bypass-approvals-and-sandbox \

--skip-git-repo-check \

-C /path/to/project \

"analyze @. and find security issues"

```

---

Capability 2: Web Search & Fetch

Online research with web search and page content fetching.

When to Use

  • Online research and documentation lookup
  • Fetch and summarize specific web pages (GitHub repos, docs, articles)
  • Current information retrieval
  • API documentation search
  • Technology comparison and recommendations

Default Configuration

  • Model: gpt-5.1-codex
  • Reasoning: high
  • Web search: enabled

Command Pattern

```bash

codex e -m gpt-5.1-codex -c model_reasoning_effort=high \

--enable web_search_request \

--dangerously-bypass-approvals-and-sandbox \

--skip-git-repo-check \

""

```

Parameters

  • (required): Search query or research task
  • -m : Override model
  • -c model_reasoning_effort=: Override reasoning (low/medium/high/xhigh)
  • --enable web_search_request: Enable web search (required for this capability)

Alternative: Config File

Add to ~/.codex/config.toml:

```toml

[features]

web_search_request = true

```

Examples

Fetch GitHub repo:

```bash

codex e -m gpt-5.1-codex -c model_reasoning_effort=high \

--enable web_search_request \

--dangerously-bypass-approvals-and-sandbox \

--skip-git-repo-check \

"Fetch and summarize https://github.com/user/repo"

```

Documentation search:

```bash

codex e -m gpt-5.1-codex -c model_reasoning_effort=high \

--enable web_search_request \

--dangerously-bypass-approvals-and-sandbox \

--skip-git-repo-check \

"find the latest React 19 hooks documentation"

```

Technology research:

```bash

codex e -m gpt-5.1-codex -c model_reasoning_effort=high \

--enable web_search_request \

--dangerously-bypass-approvals-and-sandbox \

--skip-git-repo-check \

"compare Vite vs Webpack for React projects in 2024"

```

---

Session Resume

Both capabilities support session resumption for multi-turn conversations.

Resume Command

```bash

codex e resume ""

```

Example

```bash

# First session (code generation)

codex e -m gpt-5.2-codex -c model_reasoning_effort=xhigh \

--dangerously-bypass-approvals-and-sandbox \

--skip-git-repo-check \

"add comments to @utils.js"

# Output includes: thread_id in JSON output

# Continue the conversation

codex e resume "now add type hints"

```

---

Notes

  • Requires Codex CLI installed and authenticated
  • @file syntax references files relative to working directory
  • @. references entire working directory
  • JSON output available with --json flag for programmatic use
  • All commands use --dangerously-bypass-approvals-and-sandbox for automation
  • Use --skip-git-repo-check to work in any directory

More from this repository10

🎯
git-squash-commits🎯Skill

git-squash-commits skill from acking-you/myclaude-skills

🎯
github-wrapped🎯Skill

github-wrapped skill from acking-you/myclaude-skills

🎯
excalidraw🎯Skill

Generates professional hand-drawn style diagrams in Excalidraw JSON format, supporting architecture, flowcharts, and system design visualizations.

🎯
gen-commit-msg🎯Skill

gen-commit-msg skill from acking-you/myclaude-skills

🎯
research🎯Skill

Conducts comprehensive web research by systematically gathering, validating, and synthesizing information from multiple authoritative sources with complete citations.

🎯
tech-impl-doc🎯Skill

tech-impl-doc skill from acking-you/myclaude-skills

🎯
article-cover🎯Skill

I apologize, but I cannot generate a description without seeing the actual content or details of the "article-cover" skill from the repository. Could you provide more context about what this specif...

🎯
gemini-image🎯Skill

I apologize, but I cannot generate a description without seeing the specific details or context of the "gemini-image" skill. Could you provide more information about what this skill does, its funct...

🎯
frontend-design🎯Skill

Designs distinctive, production-grade frontend interfaces with creative aesthetics, avoiding generic AI design and focusing on purposeful, memorable visual experiences.

🎯
tech-blog🎯Skill

I apologize, but I cannot generate a description without seeing the actual repository or skill details. Could you provide more context about the "tech-blog" skill from the "acking-you/myclaude-skil...