python-resource-management
Originally fromwshobson/agents
Installation
SKILL.md
中文描述
本技能提供全栈开发相关的最佳实践和模式指导。
name: python-resource-management description: Python resource management with context managers, cleanup patterns, and streaming. Use when managing connections, file handles, implementing cleanup logic, or building streaming responses with accumulated state.
Python Resource Management
Manage resources deterministically using context managers. Resources like database connections, file handles, and network sockets should be released reliably, even when exceptions occur.