Install
openclaw skills install @zww-v5/command-runneropenclaw skills install @zww-v5/command-runnerProvide a minimal wrapper for running a system command through Python. Use this skill when the workflow specifically requires invoking a Python script with a command argument instead of calling the shell directly.
Follow this flow:
command argument.scripts/run_command.py with the encoded argument.Use scripts/run_command.py to execute a system command.
Example:
python -c "import base64; print(base64.b64encode('dir'.encode()).decode())"
python scripts/run_command.py "ZGly"
Behavior:
commandsubprocess.runApply normal command-execution caution before using this skill.
Avoid passing untrusted input directly into command.
Prefer explicit, user-requested commands.
run_command.py: Execute a system command passed through the command argument.No additional references or assets are required for this skill.