python-async-patterns

43 stars 4 forks
68
D

Master Python asynchronous programming with asyncio, async/await, and concurrent.futures. Use for async code and concurrency patterns.

Marketplace

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-patterns
skilz install TheBushidoCollective/han/python-async-patterns --agent opencode
skilz install TheBushidoCollective/han/python-async-patterns --agent codex
skilz install TheBushidoCollective/han/python-async-patterns --agent gemini

First time? Install Skilz: pip install skilz

Works with 14 AI coding assistants

Cursor, Aider, Copilot, Windsurf, Qwen, Kimi, and more...

View All Agents
Download Agent Skill ZIP

Extract and copy to ~/.claude/skills/ then restart Claude Desktop

1. Clone the repository:
git clone https://github.com/TheBushidoCollective/han
2. Copy the agent skill directory:
cp -r han/jutsu/jutsu-python/skills/python-async-patterns ~/.claude/skills/

Need detailed installation help? Check our platform-specific guides:

Related Agentic Skills

Agentic Skill Details

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

Spec Compliance
13/15
PDA Architecture
13/30
Ease of Use
17/25
Writing Style
7/10
Utility
13/20
Modifiers: +5

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...

Report Security Issue

Found a security vulnerability in this agent skill?