pavlo-terminal-commands
Installation
SKILL.md
Skill: Terminal Commands
Safe terminal command patterns for AI coding agents. Prevents common pitfalls like shell quote misparses and hanging terminals.
Python Execution
Always write Python scripts to a temp file and run from there.
Do
cat > /tmp/script.py << 'PYEOF'
import json
Related skills