aiochannel-python
Installation
SKILL.md
aiochannel — Correct Usage Patterns
from aiochannel import Channel, ChannelClosed, ChannelEmpty
Channel[T] is a typed, closeable async queue inspired by Go channels. Unlike asyncio.Queue,
a channel signals completion by being closed AND drained — this is the key design difference
that shapes every pattern below.