cancel

cancel is a command for coding agents from xiaolai/cc-suite. It costs 7 tokens per session (714 once invoked), scanned A, original, ISC.

A command for stopping a Codex task that is currently running in the background.

In plain words
What is it for?
Use it to cancel one active background job by its ID or prefix, or the only active job.
Why use it?
It avoids killing the wrong process by checking that the recorded process still belongs to the selected task.

Command

Installs and runs on its own, but its text points at files inside its plugin — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed. Installing the plugin gets both.

Part of the cc-suite plugin — 13 skills, 39 commands, 4 agents, 3 hooks shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/xiaolai/cc-suite/cancel
Clone the repo
git clone --depth 1 https://github.com/xiaolai/cc-suite

Or install cc-suite, the plugin that ships this one along with the rest of its 13 skills, 39 commands, 4 agents, 3 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cancel

README.md
[![agentmods](https://agentmods.dev/badge/commands/xiaolai/cc-suite/cancel.svg)](https://agentmods.dev/commands/xiaolai/cc-suite/cancel)
Your own site
<a href="https://agentmods.dev/commands/xiaolai/cc-suite/cancel"><img src="https://agentmods.dev/badge/commands/xiaolai/cc-suite/cancel.svg" alt="Measured on agentmods" height="20"></a>
Per session 7 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 714 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00007 $0.00714
Opus 5 $0.00003 $0.00357
Sonnet 5 $0.00001 $0.00143
Haiku 4.5 $0.00001 $0.00071

Measured 4d ago against content hash 332ed99482cd, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

cancel scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

commands/cancel.md · 73 lines

How it starts

The opening of the file, as written. The whole thing — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.

User Input

$ARGUMENTS

Workflow

Step 1: Resolve, terminate, and persist

One call resolves the reference (empty → the only active job; otherwise exact or prefix match among active jobs), terminates the job's process tree, confirms the exit, and records the cancellation:

node -e "
  const { cancelJob } = await import('${CLAUDE_PLUGIN_ROOT}/scripts/lib/job-control.mjs');
  try {
    const reference = process.argv[1] || undefined;
    const result = cancelJob(process.cwd(), reference);
    console.log(JSON.stringify(result, null, 2));
  } catch (error) {
    console.error(error.message);
    process.exitCode = 1;
  }
" -- "$ARGUMENTS"

Do not shell out to kill directly. cancelJob verifies that the recorded PID still belongs to this job (via its recorded process start time) before signalling — a bare kill -- -{pid} on a recycled PID would terminate an unrelated process. It also escalates SIGTERM → SIGKILL and only reports success once the process is confirmed gone.

If the command errors:

  • "No active Codex jobs to cancel." → relay it and STOP.
  • "Multiple jobs are active..." → list the active jobs (via buildStatusSnapshot as in /cc-suite:status) and STOP:
    Multiple jobs are active. Specify which one to cancel:
    
    | Job | Kind | Status | Elapsed | Summary |
    | --- | --- | --- | --- | --- |
    | {job-id} | {kind} | running | {elapsed} | {summary} |
    
    Usage: /cc-suite:cancel <job-id>
    
  • "No job found for ..." / "...is ambiguous..." → relay it and STOP.

Step 2: Report the actual outcome

The result carries outcome, terminated, and detail. Report what really happened rather than assuming the kill worked:

outcome Meaning Report
terminated Signalled and confirmed exited Cancelled {job-id}.
already-exited Process was already gone (or its PID had been recycled) Cancelled {job-id} — it had already finished.
not-confirmed SIGTERM and SIGKILL sent, process still alive Cancelled {job-id} in the job list, but the process has not exited yet — {detail}.
unverifiable Job predates process-identity tracking; not signalled Marked {job-id} cancelled, but it was not signalled — {detail}.
no-pid No PID recorded (queued, worker never started) Marked {job-id} cancelled — {detail}.
signal-failed Signalling raised an error Marked {job-id} cancelled, but termination failed — {detail}.

Read the full file on GitHub · 73 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 73 lines · 7 tokens per session scan A 332ed99482cd

Subscribe to this mod's changes

cancel is a command published in the GitHub repository xiaolai/cc-suite (45 stars, last pushed yesterday), licensed ISC. It adds 7 tokens to every session and 714 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.