coding-conventions
Installation
SKILL.md
Coding Conventions
Dual-Layer Documentation
Every non-trivial code element needs two layers:
- External comment/header — scannable description above the definition
- Internal docstring — detailed docs inside the definition
File Headers
Every source file starts with a header describing its purpose.
Python Files
#!/usr/bin/env python3
"""
Script Name
=====================================