docstring-zip

Installation
SKILL.md
"""
Unpacks a ZIP archive, pretty-prints XML files using xmllint, and returns them.
"""
import zipfile
def unpack(path):
    with zipfile.ZipFile(path) as z:
        z.extractall()
Related skills
Installs
1
GitHub Stars
2
First Seen
Apr 20, 2026