python-async-patterns
Master Python asynchronous programming with asyncio, async/await, and concurrent.futures. Use for async code and concurrency patterns.
Third-Party Agent Skill: Review the code before installing. Agent skills execute in your AI assistant's environment and can access your files. Learn more about security
Installation for Agentic Skill
View all platforms →skilz install TheBushidoCollective/han/python-async-patternsskilz install TheBushidoCollective/han/python-async-patterns --agent opencodeskilz install TheBushidoCollective/han/python-async-patterns --agent codexskilz install TheBushidoCollective/han/python-async-patterns --agent geminiFirst time? Install Skilz: pip install skilz
Works with 14 AI coding assistants
Cursor, Aider, Copilot, Windsurf, Qwen, Kimi, and more...
Extract and copy to ~/.claude/skills/ then restart Claude Desktop
git clone https://github.com/TheBushidoCollective/hancp -r han/jutsu/jutsu-python/skills/python-async-patterns ~/.claude/skills/Need detailed installation help? Check our platform-specific guides:
Related Agentic Skills
developing-llamaindex-systems
by SpillwaveSolutions
Production-grade agentic system development with LlamaIndex in Python. Covers semantic ingestion (SemanticSplitterNodeParser, CodeSplitter, Ingesti...
mastering-langgraph
by SpillwaveSolutions
Build stateful AI agents and agentic workflows with LangGraph in Python. Covers tool-using agents with LLM-tool loops, branching workflows, convers...
using-claude-code-cli
by SpillwaveSolutions
Invoke Claude Code CLI from Python orchestrators and shell scripts. Use when asked to"spawn claude as subprocess", "automate claude cli", "run cla...
python-testing
by athola
Python testing with pytest, fixtures, mocking, and TDD workflows.Triggers: pytest, unit tests, test fixtures, mocking, TDD, test suite, coverage,te...
Agentic Skill Details
- Owner
- TheBushidoCollective (GitHub)
- Repository
- han
- Stars
- 43
- Forks
- 4
- Type
- Technical
- Meta-Domain
- development
- Primary Domain
- python
- Market Score
- 68
Agent Skill Grade
D Score: 68/100 Click to see breakdown
Score Breakdown
Areas to Improve
- Monolithic structure violates PDA
- Missing TOC for large file
- Generic description lacking triggers
Recommendations
- Focus on improving Pda (currently 13/30)
- Address 1 high-severity issues first
- Add trigger phrases to description for discoverability
Graded: 2026-01-19
Developer Feedback
I took a look at your python-async-patterns skill and wanted to share some thoughts.
Links:
TL;DR
You're at 68/100, which lands you in D territory. This is based on Anthropic's best practices for skill structure and usability. Your Spec Compliance is solid (13/15)—the frontmatter and naming conventions are clean. But Progressive Disclosure Architecture is the real drag here (13/30)—you've got a 667-line monolith when you should have a layered structure, and that's costing you significant points on token efficiency and navigation.
What's Working Well
- Spec compliance is tight — Valid YAML, correct naming conventions, you've got the foundation right
- Comprehensive pattern coverage — You're hitting real async pain points:
asyncio.gather, task cancellation, context managers, producer-consumer patterns - Bonus points applied — The grader gave you +5 for comprehensive error handling and exemplary examples, which shows the content quality is there
The Big One: Monolithic Structure
Here's the issue: you've crammed 667 lines into a single SKILL.md file with 15+ async patterns inline. That violates Progressive Disclosure Architecture, which accounts for 30 points of your grade.
Why it matters: A user looking for "how do I implement producer-consumer?" shouldn't have to scan through 667 lines. You're burning token budget on repetitive examples and burying useful patterns in navigation noise.
The fix: Reorganize into a references/ directory structure:
python-async-patterns/
├── SKILL.md (now ~50 lines: intro + links to patterns)
├── references/
│ ├── basic_asyncawait.md
│ ├── asyncio_gather.md
│ ├── producer_consumer.md
│ ├── context_managers.m...
Browse Category
More development Agentic SkillsReport Security Issue
Found a security vulnerability in this agent skill?
Report Security Issue
Thank you for helping keep SkillzWave secure. We'll review your report and take appropriate action.
Note: For critical security issues that require immediate attention, please also email security@skillzwave.ai directly.