Token导航 LogoToken导航TokenDH.com
开发执行命令github未标认证来源可访问clear审计通过

cancel-async-tasks取消异步任务

Agent Skill

cancel-async-tasks 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

848

周安装

35

GitHub Stars

93

下载量

277
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cancel-async-tasks(取消异步任务)
来源仓库:https://github.com/letta-ai/skills
仓库路径:skills/cancel-async-tasks
安装命令:
npx skills add https://github.com/letta-ai/skills --skill cancel-async-tasks
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill cancel-async-tasks

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理。
  • 安装命令:npx skills add https://github.com/letta-ai/skills --skill cancel-async-tasks
  • 可结合来源仓库和原始 README 继续核验具体用法。
  • 建议确认权限范围和维护状态,避免触发联网或文件读写操作。

SKILL.md

Cancel Async Tasks

Overview

This skill provides guidance for implementing robust asyncio task cancellation in Python, particularly when dealing with signal handling (SIGINT/KeyboardInterrupt), semaphore-based concurrency limiting, and ensuring proper cleanup of all tasks including those waiting in queues.

Key Concepts

Signal Propagation in Asyncio

Understanding how signals interact with asyncio is critical:

  1. KeyboardInterrupt vs CancelledError: When SIGINT is received during asyncio.run(), the behavior differs from catching exceptions inside async code. The event loop typically converts the interrupt to CancelledError that propagates through tasks.
  2. Signal handler context: Signal handlers run in the main thread, but asyncio tasks may be in various states (running, waiting on semaphore, waiting on I/O).
  3. Event loop state: The event loop's handling of SIGINT depends on whether it's running asyncio.run() vs manual loop management.

Task Lifecycle States

When cancellation occurs, tasks can be in different states:

  1. Running tasks: Currently executing code
  2. Awaiting tasks: Blocked on I/O or other coroutines
  3. Semaphore-waiting tasks: Waiting to acquire a semaphore for concurrency limiting
  4. Not-yet-started tasks: Created but not yet scheduled

Each state requires different handling for proper cleanup.

Potential Approaches

Approach 1: Task Group with Exception Handling

Use asyncio.TaskGroup (Python 3.11+) for automatic cancellation propagation:

  • TaskGroup automatically cancels remaining tasks when one fails
  • Provides structured concurrency guarantees
  • Consider whether this matches the cleanup requirements

Approach 2: Manual Task Tracking with Shield

Track all task objects explicitly and handle cancellation:

  • Maintain a list of all created task objects
  • Use asyncio.shield() for cleanup operations that must complete
  • Implement explicit cancellation loop for all tracked tasks

Approach 3: Signal Handler Registration

Register explicit signal handlers for SIGINT/SIGTERM:

  • Use loop.add_signal_handler() to register custom handlers
  • Set a cancellation flag or event that tasks check
  • Coordinate shutdown through the event loop

Approach 4: Context Manager Pattern

Wrap task execution in a context manager that handles cleanup:

  • __aenter__ sets up tasks and tracking
  • __aexit__ ensures all tasks are cancelled and awaited
  • Handles exceptions uniformly

Verification Strategies

Testing with Real Signals

Critical: Test with actual signals, not timeouts:

# Correct approach: Use subprocess with actual SIGINT
import subprocess
import signal
import time

proc = subprocess.Popen(['python', 'script.py'])
time.sleep(1)  # Let tasks start
proc.send_signal(signal.SIGINT)
stdout, stderr = proc.communicate(timeout=5)
# Verify cleanup messages in output

Incorrect approach (gives false confidence):

  • Using asyncio.wait_for() with timeout does not replicate SIGINT behavior
  • Using asyncio.CancelledError directly differs from signal-triggered cancellation

Verification Checklist

  1. Running task cleanup: Verify tasks actively executing receive cancellation
  2. Waiting task cleanup: Verify tasks blocked on I/O are cancelled
  3. Semaphore queue cleanup: Verify tasks waiting on semaphore acquisition are cancelled
  4. Cleanup code execution: Verify finally blocks and cleanup handlers run
  5. No resource leaks: Verify file handles, connections, etc. are closed
  6. Exit code verification: Verify process exits with expected code after interrupt

Test Scenarios to Cover

  • Interrupt when all slots are filled (max_concurrent tasks running)
  • Interrupt when tasks are queued waiting for semaphore
  • Interrupt during cleanup phase itself
  • Rapid repeated interrupts
  • Interrupt before any task starts

Common Pitfalls

Pitfall 1: Catching KeyboardInterrupt Inside Async Functions

Problem: KeyboardInterrupt doesn't propagate normally through asyncio - it's typically converted to CancelledError by the event loop.

Symptom: Exception handlers for KeyboardInterrupt inside async functions never trigger during actual Ctrl+C.

Solution: Handle CancelledError instead, or register explicit signal handlers at the event loop level.

Pitfall 2: asyncio.gather Doesn't Cancel Queued Tasks

Problem: When using asyncio.gather with more tasks than can run concurrently (via semaphore), cancelling gather doesn't automatically cancel tasks waiting to acquire the semaphore.

Symptom: Tasks that haven't started don't have their cleanup code run.

Solution: Explicitly track all task objects and cancel them individually, not just rely on gather's cancellation.

Pitfall 3: Testing with Timeouts Instead of Signals

Problem: Using asyncio.wait_for() timeout to simulate interruption doesn't replicate actual signal handling behavior.

Symptom: Tests pass but actual Ctrl+C behavior differs.

Solution: Use subprocess with signal.SIGINT to test actual signal handling behavior.

Pitfall 4: Cleanup During Cancellation

Problem: Cleanup code itself may be cancelled if not protected.

Symptom: Partial cleanup, resources not released.

Solution: Use asyncio.shield() for critical cleanup operations, or handle CancelledError and re-raise after cleanup.

Pitfall 5: Duplicate Exception Handling Code

Problem: Identical cleanup code in multiple exception handlers (CancelledError, KeyboardInterrupt, etc.).

Symptom: Code duplication, maintenance burden.

Solution: Use a single handler with except (asyncio.CancelledError, KeyboardInterrupt) or abstract cleanup into a helper function.

Pitfall 6: Not Awaiting Cancelled Tasks

Problem: Cancelling a task and not awaiting it leaves the task in a partially-cleaned-up state.

Symptom: Resource leaks, warnings about pending tasks.

Solution: Always await asyncio.gather(*cancelled_tasks, return_exceptions=True) after cancelling.

Decision Framework

When implementing async task cancellation, consider:

  1. Python version: TaskGroup (3.11+) vs manual management
  2. Concurrency model: Fixed pool, semaphore-limited, or unlimited
  3. Cleanup requirements: What must happen before exit?
  4. Signal handling needs: Just SIGINT, or also SIGTERM, SIGHUP?
  5. Testing environment: Can tests send real signals?

Debugging Tips

  • Add logging at task entry, exit, and cancellation points
  • Log the task state when cancellation is received
  • Use asyncio.current_task() to identify which task is executing
  • Check task.cancelled() vs task.done() states
  • Enable asyncio debug mode: asyncio.run(main(), debug=True)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.16%
按下载量换算81

Gemini CLI

26.51%
按下载量换算73

Codex

17.48%
按下载量换算48

Antigravity

14.39%
按下载量换算40

OpenCode

7.49%
按下载量换算21

windsurf

3.29%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/letta-ai/skills --skill cancel-async-tasks;npx skills add letta-ai/skills --skill "cancel-async-tasks" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills