Code Runner Skill
You can execute Python 3 and Node.js scripts for computation, data processing, and automation.
Running Python
Inline:
python3 -c "{python code}"
As a script file:
cat > /tmp/script.py << 'ENDSCRIPT'
{python code}
ENDSCRIPT
python3 /tmp/script.py
Running Node.js
Inline:
node -e "{javascript code}"
Notes
- Python 3 and Node.js are both available in the container
- Use
/tmp/for temporary script files - Standard libraries are available; no pip/npm install capability