prompt-evaluation-runn…
Use when evaluating prompts, LLM outputs, red-team suites, or model behavior with local eval configs and safe provider/cost controls.
Use when a Claude Code agent needs to delegate a question, subtask, or review to a local Codex instance.
$ npx -y skills add yeaight7/agent-powerups --skill ask-codex --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ask-codexContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when a Claude Code agent needs to delegate a question, subtask, or review to a local Codex instance.
name: ask-codex description: Use when a Claude Code agent needs to delegate a question, subtask, or review to a local Codex instance.
Use the local Codex CLI as an external worker or advisor from inside a Claude Code session. Hand off a focused task, collect the output, and save a reviewable Markdown artifact before acting on the result.
codex --version
If `codex` is missing, stop and ask the user to install it. Installation reference:
npm install -g @openai/codex
codex --version
If this fails, stop. Do not proceed without `codex` in PATH.
Keep it narrow. Codex works best with:
Example prompt:
Review this TypeScript function for correctness. Return a bullet list of issues found. <paste function here>
codex "Review this TypeScript function for correctness. Return a bullet list of issues found.\n\n$(cat src/cli/commands/validate.ts)"
Redirect output to an artifact file:
codex "Your prompt here" > .apx/artifacts/codex-review-$(date -u +%Y%m%dT%H%M%SZ).md
On Windows (PowerShell):
codex "Your prompt here" | Out-File .apx/artifacts/codex-review-$(Get-Date -Format 'yyyyMMddTHHmmssZ').md
Open the artifact before acting on any recommendation. Codex output is a suggestion, not a directive. Apply judgment before implementing.
In the response to the user, include:
Artifact path convention:
.apx/artifacts/codex-<slug>-<timestamp>.md
Artifact should contain:
`apx check ask-codex` verifies whether `codex` is present in PATH.
Prefer the flat APX command after reading this skill:
apx ask-codex "Review this function for edge cases" apx ask-codex "Return OK only" --json
Nested APX form remains supported:
apx ask codex "Review this function for edge cases"
APX passes the prompt as a positional argument (`codex "prompt"`, not `codex -p "prompt"`). This matches the Codex CLI's invocation convention. Verify the output mode with `codex --help` if the captured stdout is empty — some Codex versions open a TUI by default and may require a flag such as `--full-auto` or `-q` for non-interactive output. If that applies, invoke `codex` directly per the workflow above and redirect output manually.
apx check ask-codex apx ask-codex "Return OK only" --json
Confirm JSON includes `provider`, `artifactPath`, `promptLength`, and raw output in `stdout`. Open the artifact before applying advice.
Curated power-ups for coding agents: skills, slash commands, MCP configs, hooks, AGENTS.md templates, and workflows for serious software engineering. Claude Code, Codex, Antigravity CLI, Cursor and more
Repo: yeaight7/agent-powerups
Use when evaluating prompts, LLM outputs, red-team suites, or model behavior with local eval configs and safe provider/cost controls.
Use when creating or reviewing red-team eval plugins, attack templates, grader rubrics, safety fixtures, or model-risk test metadata.
Use when designing, running, debugging, or hardening deterministic eval suites for agent skills, prompts, tool workflows, or MCP-backed cases.
Use when designing tool definitions for a new agent or subagent, an agent shows high retry rates, ambiguous tool invocations, or silent failures, or an…
Use when routing a prompt to a local provider CLI for a second opinion, review, or plan -- you are about to call a provider directly, need the response saved…
Use when starting work in an unfamiliar area of a codebase, spawning a subagent that needs targeted file context, a first search pass missed the relevant file,…