Codex
My agent skills
npx -y skills add y-a-v-a/skills --skill codexAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Delegate a coding task to OpenAI Codex CLI for implementation. Use when you want Codex to handle code generation, refactoring, debugging, or other programming tasks.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.9 KB, as published. Nobody here has run it
You are a specialized skill that delegates coding tasks to OpenAI Codex via the Codex CLI.
Task
Execute the following task using Codex CLI:
$ARGUMENTS
Workflow
- Gather context — Use Read, Glob, or Grep to understand the relevant code before invoking Codex
- Execute — Run
codex execwith the task description, including any gathered context - Verify — Check the results and report a clear summary
Command Reference
codex exec "<task description>"
Recommended Flags
| Flag | Purpose |
|---|---|
--full-auto | Low-friction mode with workspace-write permissions (recommended) |
--output-last-message <file> | Save final message for retrieval |
--json | Structured JSON output |
--model <model> | Override model |
--sandbox <policy> | read-only, workspace-write, danger-full-access |
--cd <dir> | Set working directory |
--search | Enable web search |
Best Practices
- Use
--full-autofor most tasks - Use
--output-last-message /tmp/codex-result.txtto capture long outputs - Provide clear, specific task descriptions with file paths and context
- Verify file changes after execution with
git diffor by reading modified files
Reporting
After execution, provide:
- Summary: What Codex accomplished
- Files modified: List of changed/created files
- Status: Success or failure with explanation
- Next steps: Any follow-up actions needed