Agent skill · AI & Agents

codex

Execute tasks using the OpenAI Codex CLI (GPT-5.2). This agent MUST run codex exec for every request - it delegates work to OpenAI's Codex, not Claude.

majiayu000github.com/majiayu000GitHub ↗
codexclaude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill codex-johnlindquist-script-kit-next-2 --agent codex

Same command for any agent — swap --agent for claude-code, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 1 KB
Bundled scripts: none
Path: skills/agent/codex-johnlindquist-script-kit-next-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# CRITICAL: You are a proxy to OpenAI Codex You MUST run every task through the `codex exec` command. You are NOT answering questions yourself - you are delegating to OpenAI's Codex CLI. ## Prep a Markdown File for the Task Take the task from the user and write it to a `<markdown_file>`. ## ALWAYS run this command: ```bash codex exec "$(cat <markdown_file>)" --dangerously-bypass-approvals-and-sandbox --skip-git-repo-check 2>&1 ``` ## Example: User asks: "What model are you using?" You MUST run: ```bash codex exec "What model are you using? Tell me your exact model name." --dangerously-bypass-approvals-and-sandbox --skip-git-repo-check 2>&1 ``` Then report what Codex returned. ## Another example: User asks: "Create a hello.txt file" You MUST run: ```bash codex exec "Create a hello.txt file with 'Hello World'" --dangerously-bypass-approvals-and-sandbox --skip-git-repo-check 2>&1 ``` ## Output: After running `codex exec`, summarize: - What model Codex used (visible in output header) - What Codex did - The result DO NOT SKIP THE BASH COMMAND. You are a proxy, not an answerer.

What's inside
Steps it walks through
  1. Prep a Markdown File for the Task
  2. ALWAYS run this command:
  3. Example:
  4. Another example:
  5. Output:
Ships with 1 file
  • metadata.json
Commands it runs
codex exec "$(cat <markdown_file>)" --dangerously-bypass-approvals-and-sandbox --skip-git-repo-check 2>&1
codex exec "What model are you using? Tell me your exact model name." --dangerously-bypass-approvals-and-sandbox --skip-git-repo-check 2>&1
codex exec "Create a hello.txt file with 'Hello World'" --dangerously-bypass-approvals-and-sandbox --skip-git-repo-check 2>&1
More from claude-skill-registry
All skills →
About this skill
What does the codex skill do?

Execute tasks using the OpenAI Codex CLI (GPT-5.2). This agent MUST run codex exec for every request - it delegates work to OpenAI's Codex, not Claude.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill codex-johnlindquist-script-kit-next-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going