Use when: running an ad hoc Python script, using python -c for inspection or file transforms, editing ZIP/XLSX/XML files with Python, or choosing between python and python3 on macOS/Linux/Windows. Keywords: python script, python3, python -c, zipfile, one-off Python command, interpreter check.
Install
mkdir -p .claude/skills/run-python-script && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/16596" && unzip -o skill.zip -d .claude/skills/run-python-script && rm skill.zipInstalls to .claude/skills/run-python-script
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Use when: running an ad hoc Python script, using python -c for inspection or file transforms, editing ZIP/XLSX/XML files with Python, or choosing between python and python3 on macOS/Linux/Windows. Keywords: python script, python3, python -c, zipfile, one-off Python command, interpreter check.About this skill
Run Python Script
This skill standardizes how to run short Python helpers safely in this workspace.
Scope
Use this skill when the task needs a one-off Python script for inspection, transformation, extraction, archive editing, or verification.
Goal
Run Python helper logic with the right interpreter, without tripping over shell quoting or assuming python exists.
Interpreter Selection
- On this machine,
pythondoes not exist. Always usepython3directly — do not probe withwhich pythonorcommand -v pythonfirst. - Do not activate virtual environments for this repo unless the user explicitly asks.
- Use
python3consistently for the whole task.
Default Approach
- For short read-only inspection,
python3 -c '...'is acceptable if quoting is simple. - For multi-line, regex-heavy, XML/ZIP-heavy, or mutating work, prefer a temporary
.pyscript file over a longpython3 -ccommand. - Keep scripts read-only unless the task explicitly requires writing output.
- For file transforms, write to a temporary output first and replace the original only after the expected change is verified.
- Print a concise summary such as affected paths or replacement counts.
Shell Rules
- Use bash-compatible syntax for commands.
pythondoes not exist here; always usepython3.- Avoid inline heredocs for Python snippets in Git Bash or mixed shell environments.
- Avoid long
python3 -ccommands when nested quotes, XML, JSON, or regular expressions make shell parsing fragile.
File Safety Rules
- For ZIP-based files such as
.xlsx, preserve archive entries and rewrite only the intended member files. - Validate expected match counts before replacing content.
- Fail loudly with a clear error if the target pattern is absent or appears more times than expected.
- Do not stage, commit, or push unless explicitly requested.
Preferred Patterns
Short one-liner:
python3 -c 'print("ok")'
Temporary script:
python3 path/to/temp_script.py
Expected Output
When using this skill:
- Use
python3directly; no interpreter probing. - Keep side effects explicit and narrowly scoped.
- Report what was changed or measured.
Do Not
- Do not call
python— it does not exist on this machine; usepython3. - Do not probe for the interpreter (
which python,command -v python) before running. - Do not use Python heredocs for inline scripts in Git Bash or cross-platform sessions.
- Do not overwrite source files before checking expected match counts.
- Do not leave temporary helper scripts behind unless they are intentionally useful.