Agent skill · Workflow & Productivity

handoff-codex

向 Codex (GPT-5.6) 咨询复杂问题 / 要第二意见 / 派发需要强推理的任务。后台运行,完成后自动通知。支持并行多任务,支持续接(resume)上次会话继续派发后续任务。

Sam Zhang76★ · +2/wk · 1 repos on radarProfile →
codexclaude-code
Install
npx skills add dazuiba/handoff --skill handoff-codex --agent codex

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

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: cli/skills/handoff-codex/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 80 · +4 this week
Language: Python
Read our review of the source →

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

From the SKILL.md

# handoff-codex Skill <interaction_contract> This skill is executed by Claude Code (an AI agent). The rules below are BINDING — follow them exactly; do not simplify or reinterpret. 派发一个任务 = 两条命令 + 等通知。照抄模板,不要改结构。 ## 第 1 步:建任务文件(前台,秒回) ```bash handoff new --backend codex --slug <≤3个英文单词的任务助记词> --write <<'__HF_EOF__' [prompt 内容] __HF_EOF__ ``` 它只打印一行绝对路径,例如: ``` /Users/x/.handoff/tasks/0720-cx-06-fix-auth.prompt.md ``` 去掉目录和 `.prompt.md` 后缀,剩下的 `0720-cx-06-fix-auth` 就是本次任务的 **RUN_ID**。 记住它。三个文件路径由它直接推出,**不需要再从任何输出里捕获**: | 路径 | 用途 | | --- | --- | | `~/.handoff/tasks/<RUN_ID>.prompt.md` | 你刚写的 prompt | | `~/.handoff/tasks/<RUN_ID>.result.md` | **结果**,任务完成后读这个 | | `~/.handoff/tasks/<RUN_ID>.out.txt` | 进度日志,仅诊断时才读 | ## 第 2 步:按参数表执行(必须 `run_in_background: true`) 根据用户本轮要求,只能选择下表对应的一行,不得自行增删 `--pro` / `--fast`: | 用户本轮要求 | 新会话:`run` | 续接:`resume` | 后续行为 | | --- | --- | --- | --- | | 未提 Pro,也未提 Fast | `handoff run --backend codex ~/.handoff/tasks/<RUN_ID>.prompt.md` | `handoff resume <首次RUN_ID> --backend codex ~/.handoff/tasks/<新RUN_ID>.prompt.md` | resume 自动继承会话上一轮的 Pro 状态;Fast 关闭 | | Pro(或要求更强/专业模型) | `handoff run --backend codex --pro ~/.handoff/tasks/<RUN_ID>.prompt.md` | `handoff resume

What's inside
Steps it walks through
  1. 第 1 步:建任务文件(前台,秒回)
  2. 第 2 步:按参数表执行(必须 runinbackground: true)
  3. 第 3 步:等通知,然后读结果
  4. 其它硬规则
  5. 多任务
  6. 续接上次会话(resume 续派)
Ships with 1 file
  • agents/openai.yaml
Commands it runs
handoff new --backend codex --slug <≤3个英文单词的任务助记词> --write <<'__HF_EOF__'
handoff new --backend codex --slug <任务助记词> --write <<'__HF_EOF__'
More from handoff
All skills →
About this skill
What does the handoff-codex skill do?

向 Codex (GPT-5.6) 咨询复杂问题 / 要第二意见 / 派发需要强推理的任务。后台运行,完成后自动通知。支持并行多任务,支持续接(resume)上次会话继续派发后续任务。

How do I install it?

Run `npx skills add dazuiba/handoff --skill handoff-codex --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 dazuiba/handoff, a repository with 80 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