| name | shell-execute |
| description | Execute shell commands for system operations |
| homepage | https://docs.aof.sh/skills/shell-execute |
| metadata | {"emoji":"⚡","version":"1.0.0","requires":{"bins":["bash","sh"],"env":[],"config":[]},"tags":["shell","scripting","operations"]} |
Shell Execute Skill
Execute shell commands for system operations, diagnostics, and automation.
When to Use This Skill
- Running system commands
- Automating operational tasks
- Checking system state
- Processing text and data
- Coordinating multiple tools
Steps
- Check environment —
env | grep KEY
- List files —
ls -la /path/
- Process text —
cat file.txt | grep pattern
- Run scripts —
bash script.sh
- Chain commands —
cmd1 | cmd2 | cmd3