Agent skill
call-codex
Call codex to perform a task.
Install this agent skill to your Project
npx add-skill https://github.com/dotneet/claude-code-marketplace/tree/main/agent-call/skills/call-codex
SKILL.md
Call codex to perform a task
Call codex to perform a task.
Checking for the Existence of codex
# Check if codex is installed. Exit code 0 means success, 1 means failure.
# If not installed, skip the subsequent steps of the skill.
which codex
if [ $? -ne 0 ]; then
echo "codex is not installed"
fi
Requesting a Task to codex
This task may take a long time. If the timeout value of the Bash tool can be set, please specify the maximum timeout value.
codex exec --sandbox danger-full-access <<EOT
{task_description}
EOT
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
prompt-improver
A skill for improving prompts by applying general LLM/agent best practices. When the user provides a prompt, this skill outputs an improved version, identifies missing information, and provides specific improvement points. Use when the user asks to "improve this prompt", "review this prompt", or "make this prompt better".
suggest-agent-rules
Suggest agent rules analyzing the session history and the current repository.
context7
A skill for retrieving the latest library documentation using Context7. Use when the user asks about how to use a library, requests code examples, or instructs to "use context7". Prevents hallucinations based on outdated training data and provides up-to-date API information.
perplexity-search
A skill for performing web searches, research, and reasoning using the Perplexity API. Handles real-time web information retrieval, deep research analysis, and advanced reasoning tasks. Use when the user asks for web searches, research, or says things like "look up", "search for", "latest information", "research", or "analyze".
code-modularization-evaluator
Evaluate and improve code modularization using the Balanced Coupling Model. Analyzes coupling strength, connascence types, and distance to identify refactoring opportunities and architectural improvements. Use when reviewing code architecture, refactoring modules, or designing new systems.
typescript-react-reviewer
Expert code reviewer for TypeScript + React 19 applications. Use when reviewing React code, identifying anti-patterns, evaluating state management, or assessing code maintainability. Triggers: code review requests, PR reviews, React architecture evaluation, identifying code smells, TypeScript type safety checks, useEffect abuse detection, state management review.
Didn't find tool you were looking for?