PowerShell¶
Assistant Engine supports PowerShell 7+, giving your Assistant the ability to run local commands directly on your system.
This enables both system inspection and automation tasks.
- System Monitoring – Query CPU/GPU usage, memory, processes, and more.
- Automation – Run scripts or commands without leaving the chat.
- Integration – Combine AI reasoning with real system actions.
Considerations¶
- Permissions – Commands run with the same privileges as your Assistant Engine process.
- Security – Be cautious when executing commands suggested by AI. Review before running.
- Cross-Platform – PowerShell 7+ is supported on Windows, macOS, and Linux.
Best practice
Start with read-only commands (like Get-Process
or Get-ComputerInfo
) before moving on to actions that change system state.
This ensures you stay in control while experimenting with automation.