codex

Delegate coding tasks to OpenAI Codex CLI within git workflows.

1|Updated May 16, 2026
One-click install
npx skills add https://github.com/devMoez/titan --skill codex-devmoez
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: codex
Source: https://github.com/devMoez/titan/tree/main/skills/autonomous-ai-agents/codex
Command: npx skills add https://github.com/devMoez/titan --skill codex-devmoez

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Codex reduces the time and effort required to implement changes, refactor code, and perform pull-request style reviews by offloading the work to OpenAI's Codex CLI.

Core Features & Use Cases

  • One-shot coding via Codex exec: delegate a clearly scoped task (feature, refactor, batch fix) and let Codex complete it in a single run.
  • Background mode for long tasks: run Codex interactively in the background (with PTY) and monitor progress until completion.
  • PR and issue workflows: support review-like operations and parallelized patch creation using git worktrees for safer, isolated experimentation.

Use case: You need to add a dark mode toggle, refactor an auth module, or review multiple PR diffs—use Codex to generate the changes and drive the workflow in your git repository.

Quick Start

Ask Titan to delegate a coding task to the Codex CLI while running inside your existing git repository using PTY mode.

Frequently Asked Questions about codex

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate code refactoring and PR reviews in a git repository?

Automate code refactoring and PR reviews by delegating coding tasks to the Codex CLI within a git repository. It processes feature changes, refactor requests, and review-like diffs using one-shot execution or background sessions.

Can I run long-running coding tasks in the background without blocking my terminal?

Run long-running coding tasks in the background using PTY mode. This allows the CLI to execute interactively without blocking your terminal, while you monitor progress until the code generation completes.

How do I fix multiple issues in parallel using git worktrees?

Fix multiple issues in parallel by running Codex across isolated git worktrees. This enables safer, parallelized patch creation and experimentation without corrupting your primary development branch.

Do I need the Codex CLI installed to use this coding automation?

You need the Codex CLI installed and available in your environment to use this automation. It must be executed inside a git repository with PTY enabled and support for background monitoring.

What's the best way to prepare a pull request review diff for an auth module?

Prepare a pull request review diff by delegating the scoped review task to Codex. It generates review-like diffs for modules like authentication by analyzing the codebase and producing patch outputs directly in your repository.