python-notebooks-async — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited python-notebooks-async (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Notebook kernels own the event loop; async code must cooperate with that ownership rather than fight it. This skill covers orchestration patterns, top-level await, and compatibility constraints for .ipynb and #%% workflows.
Treat these recommendations as preferred defaults. When project constraints require deviation, call out tradeoffs and compensating controls.
asyncio.run() raises RuntimeError inside a notebook cell.gather, TaskGroup) in IPython kernels.python-concurrency-performance.python-runtime-operations.await instead of asyncio.run() in notebook cells.asyncio.gather() or asyncio.TaskGroup..py modules, imported into notebooks.nest_asyncio only as a constrained compatibility fallback, not a default.await or collect results explicitly.The kernel already runs a loop; asyncio.run() tries to start a second one and raises RuntimeError. Use await directly instead.
It patches the loop to allow reentrant calls but masks design problems and can hide subtle concurrency bugs. Reserve it for legacy compatibility.
Inline definitions are lost on kernel restart and cannot be tested outside the notebook. Extract to .py files.
Calling an async function without await silently produces a never-executed coroutine object, with no error until results are missing downstream.
Synchronous calls like requests.get() block the event loop, starving concurrent tasks. Use aiohttp, httpx, or asyncio.to_thread().
python-design-modularity.references/notebooks-async.md~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.