Skip to content

Instantly share code, notes, and snippets.

View ottogutierrez's full-sized avatar

Otto Gutierrez ottogutierrez

View GitHub Profile
@antirez
antirez / codex_skill.md
Last active March 12, 2026 15:59
CLAUDE_CODEX_SKILL.md
name description disable-model-invocation
codex
Use OpenAI Codex CLI for complex debugging, code analysis, or when stuck on difficult problems. Invokes Codex with a file-based question/answer pattern.
true

Using Codex for Complex Debugging

When you encounter a difficult problem that would benefit from a second perspective or deep analysis, use Codex via the file-based pattern.

const express = require('express');
const morgan = require('morgan');
const cors = require('cors');
const app = express();
app.use(morgan('dev'));
app.use(cors());
app.get('/', (req, res) => {