Execute Python scripts reliably using file-first approach instead of heredoc
60
70%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./benchmarks/gdpval/skills/reliable-script-execution/SKILL.mdWhen executing Python code via shell commands, avoid inline heredoc execution which can fail unpredictably with 'unknown error'. Use this two-step file-first approach for more reliable script execution.
Direct heredoc Python execution like:
python3 << 'EOF'
# complex code here
EOFCan fail with 'unknown error', especially when:
Use write_file to save your Python code to a .py file:
write_file(path="./temp_script.py", content="""
import json
data = {"key": "value"}
print(json.dumps(data))
""")Use run_shell with explicit working directory:
run_shell(command="python3 ./temp_script.py", timeout=60)Remove temporary files after execution:
run_shell(command="rm ./temp_script.py")Task: Generate a JSON report with calculations
# Step 1: Write the script
write_file(
path="./generate_report.py",
content="""
import json
from datetime import datetime
revenue = 500000.00
expenses = 379577.06
net_income = revenue - expenses
report = {
"generated": datetime.now().isoformat(),
"revenue": revenue,
"expenses": expenses,
"net_income": net_income
}
print(json.dumps(report, indent=2))
"""
)
# Step 2: Execute
run_shell(command="python3 ./generate_report.py", timeout=60)
# Step 3: Clean up
run_shell(command="rm ./generate_report.py")Use descriptive filenames: Name scripts according to their purpose (e.g., calculate_pnl.py, transform_data.py)
Set appropriate timeouts: For data processing scripts, use longer timeouts (60-300 seconds)
Specify working directory: If the script depends on relative paths, include cd /path && python3 script.py
Handle errors gracefully: Check shell output for errors and retry if needed
Clean up temporary files: Don't leave .py files cluttering the workspace unless they need to persist
Do NOT rely on heredoc for production-critical scripts:
# Unreliable - may fail with 'unknown error'
python3 << 'EOF'
# Your code here
EOFUse file-first approach instead for consistent, debuggable execution.
c5a9c4b
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.