# Docstring Zip

> Python script with docstring mentioning zip + pretty-prints — must NOT fire R05 PASSWORD_ZIP

- Skill: `lichamnesia/docstring-zip` (Agent Skill)
- Install (CLI): `npx skillmds@latest add lichamnesia/docstring-zip`
- Raw SKILL.md: https://api.skillmd.com/api/skills/lichamnesia/docstring-zip/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: lichamnesia (https://skillmd.com/u/lichamnesia)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/lichamnesia/docstring-zip

---


```python
"""
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()
```

