بنقرة واحدة
claude-cancel
Cancel a running Claude Code companion job by sending process signals through the plugin job index.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Cancel a running Claude Code companion job by sending process signals through the plugin job index.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Compatibility alias for stricter Claude review; prefer claude-review with --adversarial for new use.
Diagnose whether Claude Code is installed and authenticated for this local Codex plugin without making a billable Claude call.
Run a structured, read-only Claude Code review over the current git diff or a branch diff.
Delegate a foreground read-only or write-capable task to Claude Code from Codex using the local companion script.
Configure or explain the optional Codex Stop hook that can run a read-only Claude review when a turn ends.
Analyze plugin-owned Claude Code job logs for permission prompts and export reviewed allowedTools arguments.
| name | claude-cancel |
| description | Cancel a running Claude Code companion job by sending process signals through the plugin job index. |
Use this skill when the user wants to stop a running Claude companion job.
Use the companion script from the installed plugin root. If the current working
directory is not this plugin checkout, resolve the script relative to this skill
file, for example ../../scripts/claude-companion.mjs.
Cancel the latest running job:
node scripts/claude-companion.mjs cancel
Cancel a specific job:
node scripts/claude-companion.mjs cancel --job-id <job-id>
For machine-readable output:
node scripts/claude-companion.mjs cancel --job-id <job-id> --json
Cancellation sends SIGINT first and escalates to SIGTERM after a short grace period if the process is still present.