Install
openclaw skills install jpeng-code-executorSafe code execution in sandboxed environments. Supports Python, JavaScript, Bash, and more with resource limits and timeout controls.
openclaw skills install jpeng-code-executorExecute code safely in sandboxed environments with resource limits.
python3 scripts/execute.py \
--language python \
--code "print('Hello, World!')" \
--timeout 10
python3 scripts/execute.py \
--language python \
--file ./script.py \
--timeout 30 \
--memory 256
python3 scripts/execute.py \
--language javascript \
--code "console.log(2 + 2)"
python3 scripts/execute.py \
--language python \
--code "x = input(); print(f'You said: {x}')" \
--input "Hello"
{
"success": true,
"stdout": "Hello, World!\n",
"stderr": "",
"exit_code": 0,
"execution_time_ms": 42
}