codex

Delegate coding tasks to OpenAI Codex CLI within a git repository.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Codex helps you complete coding work—like feature building, refactoring, and PR review—without manually writing every change yourself.

Core Features & Use Cases

  • One-shot coding execution: Run Codex with a specific prompt to implement changes in a target git repository.
  • Long-running background refactors: Execute larger tasks asynchronously and monitor progress through session polling/logging.
  • PR review workflows: Review specific pull requests by cloning to a temporary directory and running Codex review against the chosen base.
  • Parallel issue fixing: Use git worktrees to let multiple Codex instances tackle separate issues concurrently.

Quick Start

Use the codex skill to delegate a feature implementation by running Codex inside your current git repository with a one-shot prompt.

Frequently Asked Questions about codex

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

FAQPage Schema
How do I automate code reviews for pull requests in a git repository?

Automating code reviews involves cloning the pull request to a temporary directory and running Codex CLI against the chosen base branch. This delegates the review process to analyze repository changes without manual inspection.

Can I run multiple coding tasks concurrently using git worktrees?

Running multiple coding tasks concurrently is supported by using git worktrees. This allows separate Codex CLI instances to operate on different issues in parallel within the same repository without file conflicts.

How do I execute long-running refactoring tasks in the background?

Long-running refactoring tasks execute asynchronously by starting a background session with process polling. You monitor progress and retrieve execution logs to track the Codex CLI operation without blocking the terminal.

What do I need to delegate coding tasks to the terminal?

Delegating coding tasks requires the Codex CLI installed, an active git repository context, and an interactive terminal execution via PTY. These prerequisites allow the system to implement changes directly in the codebase.

Does delegating feature development work with batch issue fixing?

Delegating feature development applies to batch issue fixing by running Codex with specific prompts. It implements changes across multiple repository-scoped modifications, reducing manual development effort for bulk code updates.