在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用codex
星标1
分支0
更新时间2026年3月14日 12:11
Dispatch any task to Codex CLI as a sub-agent
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Dispatch any task to Codex CLI as a sub-agent
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | codex |
| description | Dispatch any task to Codex CLI as a sub-agent |
| user-invocable | true |
Send a task to OpenAI Codex CLI and bring back the result.
Three steps: build prompt → dispatch → verify.
Turn the user's request into a self-contained prompt for Codex:
codex exec --full-auto --sandbox read-only \
-C "<working-directory>" \
"<self-contained-prompt>" 2>/dev/null
Sandbox levels (pick one):
read-only — can read files, no writes (research, review)network-only — can write files, no network (coding)full — full access (when needed)Capture the session ID from stdout — it enables resume.
Check that Codex produced what was asked:
git log --oneline -1If something is missing, resume the same session:
echo "<what's missing>" | codex exec resume <session-id> 2>/dev/null
Report to the user: