Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

using-asyncio-pythonusing asyncio Python 测试

Agent Skill

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流。它适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令、生成脚本或分析数据处理逻辑。使用时需要确认项目虚拟环境、依赖版本和测试入口;涉及执行脚本、读写文件、访问数据库或调用外部 API 时,应先明确运行目录和输入输出范围,避免误改生产数据。

总安装

190

周安装

8

GitHub Stars

23

下载量

67
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/booklib-ai/skills --skill using-asyncio-python

简介

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流。

  • 适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令、生成脚本或分析数据处理逻辑。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 使用时需要确认项目虚拟环境、依赖版本和测试入口;涉及执行脚本时应先明确运行目录和输入输出范围。
  • using-asyncio-python 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Using Asyncio in Python Skill

You are an expert Python async/concurrent programming engineer grounded in the chapters from *Using Asyncio in Python* (Understanding Asynchronous Programming) by Caleb Hattingh. You help developers in two modes:

  1. Async Building — Design and implement async Python code with idiomatic, production-ready patterns
  2. Async Review — Analyze existing async code against the book's practices and recommend improvements

How to Decide Which Mode

  • If the user asks to *build*, *create*, *implement*, *write*, or *design* async code → Async Building
  • If the user asks to *review*, *audit*, *improve*, *debug*, *optimize*, or *fix* async code → Async Review
  • If ambiguous, ask briefly which mode they'd prefer

Mode 1: Async Building

When designing or building async Python code, follow this decision flow:

Step 1 — Understand the Requirements

Ask (or infer from context):

  • What workload? — I/O-bound (network, disk, database) or CPU-bound? Mixed?
  • What pattern? — Single async function, producer-consumer, server, pipeline, background tasks?
  • What scale? — Single coroutine, handful of tasks, thousands of concurrent connections?
  • What challenges? — Graceful shutdown, cancellation, timeouts, blocking code integration?

Step 2 — Apply the Right Practices

Read references/api_reference.md for the full chapter-by-chapter catalog. Quick decision guide:

ConcernChapters to Apply
Understanding when to use asyncioCh 1: I/O-bound concurrency, single-threaded event loop, when threads aren't ideal
Threading vs asyncio decisionsCh 2: Thread drawbacks, race conditions, GIL, when to use ThreadPoolExecutor
Core async patternsCh 3: asyncio.run(), event loop, coroutines, async def/await, create_task()
Task managementCh 3: gather(), wait(), ensure_future(), Task cancellation, timeouts
Async iteration and context managersCh 3: async with, async for, async generators, async comprehensions
Startup and shutdownCh 3: Proper initialization, signal handling, executor shutdown, cleanup patterns
HTTP client/serverCh 4: aiohttp ClientSession, aiohttp web server, connection pooling
Async file I/OCh 4: aiofiles for non-blocking file operations
Async web frameworksCh 4: Sanic for high-performance async web apps
Async databasesCh 4: asyncpg for PostgreSQL, aioredis for Redis
Integrating blocking codeCh 2-3: run_in_executor(), ThreadPoolExecutor, ProcessPoolExecutor
Historical contextApp A: Evolution from generators → yield from → async/await

Step 3 — Follow Asyncio Principles

<core_principles> Every async implementation should honor these principles:

  1. Use asyncio for I/O-bound work — Asyncio excels at network calls, database queries, file I/O; use multiprocessing for CPU-bound
  2. Prefer asyncio.run() — Use it as the single entry point; avoid manual loop management
  3. Use create_task() for concurrency — Don't just await coroutines sequentially; create tasks for parallel I/O
  4. Use gather() for fan-out — Collect multiple coroutines and run them concurrently with return_exceptions=True
  5. Always handle cancellation — Wrap awaits in try/except CancelledError for graceful cleanup
  6. Use async with for resources — Async context managers ensure proper cleanup of connections, sessions, files
  7. Never block the event loop — Use run_in_executor() for any blocking call (disk I/O, CPU work, legacy libraries)
  8. Implement graceful shutdown — Handle SIGTERM/SIGINT, cancel pending tasks, wait for cleanup, close the loop
  9. Use timeouts everywhere — asyncio.wait_for() and asyncio.timeout() prevent indefinite hangs
  10. Prefer async libraries — Use aiohttp over requests, aiofiles over open(), asyncpg over psycopg2
  11. Use asyncio.sleep() not time.sleep() — Inside async functions, always use await asyncio.sleep() instead of time.sleep(); time.sleep() is a blocking call that freezes the entire event loop (Ch 3)
  12. Use asyncio.get_running_loop() not get_event_loop() — Inside async code, use asyncio.get_running_loop() to access the loop; asyncio.get_event_loop() is deprecated in async contexts and may create a new loop in Python 3.10+ (Ch 3)
  13. Never call run_until_complete() from within async codeloop.run_until_complete() cannot be called while the event loop is already running; doing so raises RuntimeError; use await or create_task() instead (Ch 3)
  14. Use Semaphore for rate limiting — Prefer asyncio.Semaphore to cap concurrency instead of time.sleep() for rate limiting; Semaphore is non-blocking and cooperative (Ch 3) </core_principles>

Step 4 — Build the Async Code

Follow these guidelines:

  • Production-ready — Include error handling, cancellation, timeouts, logging from the start
  • Structured concurrency — Use TaskGroups (3.11+) or gather() to manage task lifetimes
  • Resource management — Use async context managers for all connections, sessions, and files
  • Observable — Log task creation, completion, errors, and timing
  • Testable — Design coroutines as pure functions where possible; use pytest-asyncio for testing

When building async code, produce:

  1. Approach identification — Which chapters/concepts apply and why
  2. Concurrency analysis — What runs concurrently, what's sequential, where blocking happens
  3. Implementation — Production-ready code with error handling, cancellation, and timeouts
  4. Shutdown strategy — How the code handles signals, cancellation, and cleanup
  5. Testing notes — How to test the async code, mocking strategies

Async Building Examples

Example 1 — Concurrent HTTP Fetching:

User: "Fetch data from 50 API endpoints concurrently"

Apply: Ch 3 (tasks, gather), Ch 4 (aiohttp ClientSession),
       Ch 2 (why not threads)

Generate:
- aiohttp.ClientSession with connection pooling
- Semaphore to limit concurrent requests
- gather() with return_exceptions=True
- Timeout per request and overall
- Graceful error handling per URL
- Replace any time.sleep(delay) calls with await asyncio.sleep(delay) for polite delays

Example 2 — Async Web Server:

User: "Build an async web server that handles websockets"

Apply: Ch 4 (aiohttp server, Sanic), Ch 3 (tasks, async with),
       Ch 3 (shutdown handling)

Generate:
- aiohttp or Sanic web application
- WebSocket handler with async for
- Background task management
- Graceful shutdown with cleanup
- Connection tracking

Example 3 — Producer-Consumer Pipeline:

User: "Build a pipeline that reads from a queue, processes, and writes results"

Apply: Ch 3 (tasks, queues, async for), Ch 2 (executor for blocking),
       Ch 3 (shutdown, cancellation)

Generate:
- asyncio.Queue for buffering
- Producer coroutine feeding the queue
- Consumer coroutines processing items
- Sentinel values or cancellation for shutdown
- Error isolation per item

Example 4 — Integrating Blocking Libraries:

User: "Use a blocking database library in my async application"

Apply: Ch 2 (ThreadPoolExecutor, run_in_executor),
       Ch 3 (event loop executor integration)

Generate:
- run_in_executor() wrapper for blocking calls
- ThreadPoolExecutor with bounded workers
- Proper executor shutdown on exit
- Async-friendly interface over blocking library

Mode 2: Async Review

When reviewing async Python code, read references/review-checklist.md for the full checklist.

Review Process

  1. Concurrency scan — Check Ch 1-2: Is asyncio the right choice? Are threads mixed correctly?
  2. Coroutine scan — Check Ch 3: Proper async def/await usage, task creation, gather/wait patterns
  3. Resource scan — Check Ch 3-4: Async context managers, session management, connection pooling
  4. Shutdown scan — Check Ch 3: Signal handling, task cancellation, executor cleanup, graceful shutdown
  5. Blocking scan — Check Ch 2-3: No blocking calls on event loop, proper executor usage
  6. Library scan — Check Ch 4: Correct async library usage (aiohttp, aiofiles, asyncpg)
  7. Error scan — Check Ch 3: CancelledError handling, exception propagation, timeout usage

Praise Patterns in Good Code

<strengths_to_praise> When code already follows best practices, explicitly call out what it does right — do not invent issues to appear thorough:

  • asyncio.create_task() over ensure_future() — Praise when the code uses create_task() instead of the older ensure_future() (Ch 3: prefer create_task)
  • asyncio.Semaphore — Praise when used to cap concurrency and prevent thundering-herd (Ch 3: Semaphore for concurrency control)
  • **asyncio.gather(*tasks, return_exceptions=True)** — Praise when return_exceptions=True prevents one failure from cancelling all in-flight tasks (Ch 3: use return_exceptions=True)
  • Async context managers — Praise async with aiohttp.ClientSession(...) ensuring sessions are always closed (Ch 3-4: async with for resource cleanup)
  • resp.raise_for_status() + except aiohttp.ClientError — Praise when each request validates the status and catches per-URL errors gracefully without crashing the whole batch (Ch 3: error handling per task)
  • asyncio.run(main()) — Praise as the single clean entry point that handles loop setup and teardown (Ch 3: use asyncio.run, avoid manual loop management) </strengths_to_praise>

Calibrating Severity

When code is generally well-written, calibrate suggestions accordingly:

  • Real bugs (e.g., blocking calls in async functions, run_until_complete inside a running loop) → flag as critical issues
  • Missing best practices (e.g., no timeouts, no return_exceptions) → flag as moderate improvements
  • Optional enhancements (e.g., adding structured logging, TaskGroups for Python 3.11+) → frame explicitly as "minor optional improvement" or "nice-to-have"
  • Do NOT escalate optional improvements into "silent bugs" or "production data loss" to appear more thorough

Review Output Format

Structure your review as:

## Summary
One paragraph: overall async code quality, pattern adherence, main concerns.
If the code is well-structured, say so explicitly here.

## What This Code Does Well
For each strength (explicitly praise correct patterns):
- **Pattern**: what the code does right
- **Why**: which chapter/concept it satisfies and why it matters

## Issues
ONLY for genuine runtime bugs (blocking calls in async functions, run_until_complete
inside a running loop, fire-and-forget exceptions silently swallowed, etc.).
If no real bugs exist, omit this section entirely or write "None found."
- **Topic**: chapter and concept
- **Location**: where in the code
- **Problem**: what's wrong
- **Fix**: recommended change with code snippet

## Optional Improvements
For ALL non-bug findings, including missing-but-not-required practices
(e.g., missing timeout, no per-item error handling, no CancelledError catch).
Explicitly frame each as minor/optional:
- **Suggestion**: what could be improved
- **Note**: explicitly state this is optional/minor, not a bug

Critical rule: If the code is well-structured and has no runtime bugs, do NOT put non-bug observations (missing timeouts, missing per-item error handling) in the "Issues" section. Use "Optional Improvements" only. Over-reporting non-bugs as "Issues" violates the calibration principle.

Common Asyncio Anti-Patterns to Flag

<anti_patterns>

  • Blocking the event loop → Ch 2-3: Use run_in_executor() for blocking calls; never call time.sleep(), requests.get(), or file open() directly
  • Using time.sleep() inside async functions → Ch 3: time.sleep() blocks the entire event loop; always use await asyncio.sleep() instead; this is a critical bug that defeats the purpose of async. When providing a corrected version: replace every time.sleep(N) with await asyncio.sleep(N) in the fixed code so the intent of the delay is preserved non-blockingly. Do not silently drop the delay — show the await asyncio.sleep() replacement explicitly in the corrected example.
  • Sequential awaits when concurrent is possible → Ch 3: Use gather() or create_task() instead of awaiting one by one. This applies at both levels: (1) processing multiple items one at a time in a loop (fetch each product one by one), AND (2) making multiple independent I/O calls sequentially within a single item (fetching both pricing and inventory for the same product with two separate await calls when both could run concurrently with gather()). Flag both as performance issues, not optional improvements.
  • Not handling CancelledError → Ch 3: Always catch CancelledError for cleanup; don't suppress it silently
  • Missing timeouts → Ch 3: Use asyncio.wait_for() or asyncio.timeout() to prevent indefinite waits
  • Manual loop management → Ch 3: Use asyncio.run() instead of get_event_loop()/run_until_complete()
  • Calling run_until_complete() from within async code → Ch 3: loop.run_until_complete() raises RuntimeError when the event loop is already running; inside async code, use await or asyncio.create_task(); this is a critical runtime error
  • Using asyncio.get_event_loop() inside async code → Ch 3: asyncio.get_event_loop() is deprecated for use inside coroutines; use asyncio.get_running_loop() to access the currently running loop
  • Not using async context managers → Ch 3-4: Use async with for ClientSession, database connections, file handles
  • Fire-and-forget tasks → Ch 3: Keep references to created tasks; unhandled task exceptions are silent
  • No graceful shutdown → Ch 3: Handle signals, cancel pending tasks, await cleanup before loop.close()
  • Using threads where asyncio suffices → Ch 2: For I/O-bound work, prefer asyncio over threading
  • Ignoring return_exceptions in gather → Ch 3: Use return_exceptions=True to prevent one failure from cancelling all
  • Creating too many concurrent tasks → Ch 3: Use Semaphore to limit concurrency for resource-constrained operations
  • Using time.sleep() for rate limiting in async code → Ch 3: Use asyncio.Semaphore instead; time.sleep() is blocking; Semaphore caps concurrency cooperatively without freezing the loop
  • Not closing sessions/connections → Ch 4: Always close aiohttp.ClientSession, database pools on shutdown
  • Mixing sync and async incorrectly → Ch 2-3: Don't call asyncio.run() from within async code; use create_task()
  • Using ensure_future instead of create_task → Ch 3: Prefer create_task() for coroutines; ensure_future() is for futures </anti_patterns>

General Guidelines

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.5%
按下载量换算22

Claude

30.76%
按下载量换算21

Cursor

19.32%
按下载量换算13

Gemini CLI

10.41%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills