Agent handoff governor
Skill yangshu2087/Codex/.agents/skills/agent-handoff-governor
Meta workspace for Codex configuration, shared skills, and maintenance scripts.
npx -y skills add yangshu2087/Codex --skill agent-handoff-governorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 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
Use when handing work between Codex, Cursor, or other agents, before pausing or switching tools, to refresh docs/agent-handoff.md with branch, changed files, verification evidence, and an explicit next step.
SKILL.md
1.8 KB, as published. Nobody here has run it
Agent Handoff Governor
Use this skill whenever execution is about to move across tools or agents.
When to use
Trigger this skill when you are:
- pausing work for later,
- handing work from Codex to Cursor (or reverse),
- asking another agent to continue,
- opening a PR after multi-tool edits and you want a clean baton file.
Required workflow
- Confirm the target repository root first (
git rev-parse --show-toplevel). - Refresh handoff with:
/Users/yangshu/Codex/scripts/update-agent-handoff.sh <repo-path>
- If verification was run, record it in the same refresh call:
--verify "<command>"- optional context with
--note "<reason or caveat>"
- Re-open
docs/agent-handoff.mdand ensure these sections are updated:BranchChanged filesVerification
- Preserve human-authored sections (
Current goal,Done,Next step,Blockers) and make sureNext stepis concrete and executable.
Command patterns
/Users/yangshu/Codex/scripts/update-agent-handoff.sh /absolute/repo/path
/Users/yangshu/Codex/scripts/update-agent-handoff.sh /absolute/repo/path --verify "npm test"
/Users/yangshu/Codex/scripts/update-agent-handoff.sh --repo . --verify "pnpm -C web test" --note "UI snapshot update pending review"
Guardrails
- Never claim handoff complete without a refreshed
docs/agent-handoff.md. - Never overwrite human summary sections with generated boilerplate.
- If no verification was run, explicitly keep that fact in
Verificationinstead of inventing results.