julien-workflow-advice-codex

Get OpenAI Codex CLI's opinion on code, bugs, or implementation. Use when you want a second AI perspective during coding sessions.

16 stars

Best use case

julien-workflow-advice-codex is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Get OpenAI Codex CLI's opinion on code, bugs, or implementation. Use when you want a second AI perspective during coding sessions.

Teams using julien-workflow-advice-codex should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/julien-workflow-advice-codex/SKILL.md --create-dirs "https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/main/skills/data-ai/julien-workflow-advice-codex/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/julien-workflow-advice-codex/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How julien-workflow-advice-codex Compares

Feature / Agentjulien-workflow-advice-codexStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Get OpenAI Codex CLI's opinion on code, bugs, or implementation. Use when you want a second AI perspective during coding sessions.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Ask Codex

Get feedback from OpenAI's Codex CLI on code, bugs, or implementation approaches.

## Prerequisites

## Observability

**First**: At the start of execution, display:
```
🔧 Skill "julien-workflow-advice-codex" activated
```

- Codex CLI installed: `npm install -g @openai/codex`
- Authenticated: `codex login` or sign in with ChatGPT account
- Verify: `codex --version`

## When to Use

- Want a second opinion on code quality
- Need bug analysis
- Code review before commit
- Performance optimization suggestions

## How to Invoke

The user will ask something like:
- "ask codex what it thinks about this code"
- "get codex's opinion on this implementation"
- "fais reviewer ce fichier par codex"

## Execution

### For file review (non-interactive)
```bash
codex exec "Review <file_path> and provide 3 specific improvements for production"
```

### For bug analysis
```bash
codex exec "Analyze <file_path> for potential bugs and edge cases"
```

### For dedicated code review
```bash
codex review
```
Note: `codex review` opens an interactive review session - use `codex exec` for non-interactive feedback.

## Output Format

Present Codex's response clearly to the user. If Codex suggests improvements, summarize them as actionable items.

## Examples

### File review
**User**: "demande à codex de reviewer le benchmark"

```bash
codex exec "Review scripts/benchmark-semantic-router.py for improvements and potential issues"
```

### Bug analysis
**User**: "ask codex to find bugs in this file"

```bash
codex exec "Analyze scripts/semantic-skill-router.py for potential bugs, edge cases, and error handling gaps"
```

## Troubleshooting

| Error | Cause | Fix |
|-------|-------|-----|
| `codex: command not found` | CLI not installed | `npm install -g @openai/codex` |
| `Not authenticated` | Not logged in | Run `codex login` |
| `Model not available` | Account tier issue | Check ChatGPT subscription |
| Response timeout | Large codebase | Use specific file path, not whole repo |

## Notes

- Default model: GPT-5.1 Codex Max
- Supports reasoning levels
- `codex exec` for non-interactive (scripted) use
- `codex review` for interactive review session
- Timeout: allow up to 60s for response

## Skill Chaining

### Input Expected
- File path to review, OR
- Bug analysis request from user

### Output Produced
- **Format**: Markdown feedback from Codex
- **Side effects**: None (read-only)

### Compatible Skills
- Can be used alongside `julien-workflow-advice-gemini` for multiple AI opinions
- Use after writing code, before commit

### Tools Used
- `Bash` (usage: run codex CLI command, timeout 60s)

Related Skills

fal-workflow

16
from diegosouzapw/awesome-omni-skill

Generate workflow JSON files for chaining AI models

create-workflow

16
from diegosouzapw/awesome-omni-skill

Create Jazz workflow automation files (WORKFLOW.md). Use this for scheduling Jazz agents to run recurring tasks. For OS-level scripts/commands, use create-system-routine.

consult-codex

16
from diegosouzapw/awesome-omni-skill

Compare OpenAI Codex GPT-5.2 and code-searcher responses for comprehensive dual-AI code analysis. Use when you need multiple AI perspectives on code questions.

codex-team

16
from diegosouzapw/awesome-omni-skill

Use when you have 2+ tasks that Codex agents should execute. Runtime-native: Codex sub-agents when available, Codex CLI fallback otherwise. Handles file conflicts via merge/wave strategies. Triggers: "codex team", "spawn codex", "codex agents", "use codex for", "codex fix".

codex

16
from diegosouzapw/awesome-omni-skill

Run OpenAI's Codex CLI agent in non-interactive mode using `codex exec`. Use when delegating coding tasks to Codex, running Codex in scripts/automation, or when needing a second agent to work on a task in parallel.

codex-sessions-skill-scan

16
from diegosouzapw/awesome-omni-skill

Daily skill health scan: analyze ~/.codex/sessions plus per-repo session logs under ~/dev (default last 1 day) and summarize skill invocations + likely failures for personal skills in ~/dev/agent-skills (missing paths, tool failures, complex-task word triggers). Optional: include best-effort local OTel signals.

codex-reviewer

16
from diegosouzapw/awesome-omni-skill

Use OpenAI's Codex CLI as an independent code reviewer to provide second opinions on code implementations, architectural decisions, code specifications, and pull requests. Trigger when users request code review, second opinion, independent review, architecture validation, or mention Codex review. Provides unbiased analysis using GPT-5-Codex model through the codex exec command for non-interactive reviews.

codex-review

16
from diegosouzapw/awesome-omni-skill

Two-pass adversarial review of design documents and implementation plans using OpenAI Codex CLI. Invokes Codex to review plans section-by-section (pass 1), then holistically (pass 2), feeding critique back for revision. Use when you have a design doc, architecture plan, or implementation plan that should be stress-tested before execution.

codex-cli-bridge

16
from diegosouzapw/awesome-omni-skill

Bridge between Claude Code and OpenAI Codex CLI - generates AGENTS.md from CLAUDE.md, provides Codex CLI execution helpers, and enables seamless interoperability between both tools

codex-advisor

16
from diegosouzapw/awesome-omni-skill

Get a second opinion from OpenAI Codex CLI for plan reviews, code reviews, architecture decisions, and hard problems. Use when you need external validation, want to compare approaches, or are stuck on a difficult problem.

airflow-workflows

16
from diegosouzapw/awesome-omni-skill

Apache Airflow DAG design, operators, and scheduling best practices.

ai-annotation-workflow

16
from diegosouzapw/awesome-omni-skill

Эксперт по data annotation. Используй для ML labeling, annotation workflows и quality control.