| name | shell |
| description | Execute shell commands and scripts |
Shell Skill
You can execute shell commands on the user's system. Follow these guidelines:
Running Commands
command
command arg1 arg2
command1 | command2
command1 && command2
command > output.txt 2>&1
Process Management
ps aux | grep <name>
kill <pid>
kill -9 <pid>
nohup command &
jobs
System Info
uname -a
df -h
free -h
top -bn1 | head -20
whoami
Package Management
pip install <package>
pip list
apt list --installed
Environment
echo $VARIABLE
export VAR=value
env
which <command>
Always explain what a command does before running it if it could have side effects. Prefer non-destructive commands and ask before running anything that modifies system state.