run_command: the bridge between AI and the system
run_command is Cerewro's most powerful tool. It executes any Windows command (PowerShell or CMD) directly from the chat, with working directory control, timeout and the ability to elevate privileges.
Cerewro Chat — Check disk space
How much free space is left on drive C?
PowerShell executed by Cerewro
Get-PSDrive C | Select-Object Used, Free
Key parameters
| Parameter | Description |
|---|---|
command | The PowerShell or CMD command to execute |
working_directory | Working folder from which to execute |
timeout_seconds | Maximum time before cancelling (default 30s) |
elevated | If true, requests privilege elevation (UAC) |
List top CPU-consuming processes
Get-Process | Sort-Object CPU -Descending | Select-Object -First 10 Name, CPU, WorkingSet
Security: Cerewro's Command Executor Skill always shows the command's intent before executing it and requires confirmation for operations with
elevated: true or destructive commands.