From copilot-plugin-codex
Use when the user asks to cancel, kill, or stop a tracked background Copilot job. Do not trigger for foreground runs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/copilot-plugin-codex:cancelThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Sends `SIGTERM` to the tracked PID, then marks the job `cancelled` in its metadata file. If the process is already gone, the metadata is still updated.
$copilot:cancel <job-id> — terminate a background jobSends SIGTERM to the tracked PID, then marks the job cancelled in its metadata file. If the process is already gone, the metadata is still updated.
HOST=<host> bash "<plugin-root>/scripts/copilot-exec.sh" cancel <job-id>
Set <host> to codex or claude. Replace <plugin-root> with the installed plugin root; in a local checkout, that is the repo root.
Any partial output Copilot emitted before the SIGTERM is preserved in the transcript file. Point the user at $copilot:result <job-id> if they want to see what was produced before the cancel.
Cancellation doesn't refund the premium request — once Copilot started processing the prompt, the request counts. Don't promise the user otherwise.
cancelled. Tell the user the job had already finished and offer $copilot:result.Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub crewworkai/copilot-plugin-codex --plugin copilot-plugin-codex