Opsydian is an AI-powered agent designed to automate system administrative tasks across a variety of UNIX-based systems. It leverages natural language processing to translate user instructions into actionable jobs that can be executed upon confirmation. Opsydian bridges the gap between AI-driven instruction parsing and secure, auditable task execution in production environments.
- System Administrators
- DevOps Engineers
- Site Reliability Engineers (SREs)
- Infrastructure Engineers managing hybrid or legacy systems (e.g., AIX, Solaris
- Converts natural language prompts into actionable tasks
- Multi-role support with approval flows
- Cross-platform execution (Linux, Solaris*, AIX*, Mainframe.)
- Modular architecture with shell-scripted task handlers
- SSH-based secure communication and remote execution
Note: OS Indicated with * are still in the process of being developed, it will be available in future releases
Opsydian is composed of a collection of tightly scoped components that operate together to deliver reliable automation. These components are modular and purpose-built to handle specific stages of job management. Each module is designed with simplicity, extensibility, and security in mind. Further implementation details are intentionally abstracted to protect the internal mechanics of the application.
- User provides a task in natural language.
- Opsydian interprets the task and creates a structured job.
- After user approval, the job is executed on relevant systems.
- Task status is logged and classified for audit and tracking purposes.
/opt/opsydian/
├── data/
│ └── hosts/ # YAML files per host
│ └── host_keys/ # SSH keys for authentication
├── jobs/
│ ├── task/ # Generated jobs awaiting confirmation
│ ├── .run/ # Jobs ready for execution
│ ├── done/ # Successfully completed
│ ├── error/ # Failed executions
│ └── retry/ # Marked for retry
├── src/
│ ├── cli/ # Main interface (opsydianctl.py)
│ ├── llm/ # LLM system prompt
│ ├── executor/ # Execution engine
│ ├── watchers/ # Job watchers
│ └── scheduler/ # Optional scheduling
/var/log/opsydian/
├── llm/opsydianllm.log
├── jobs/executor.log
├── jobs/watcher.log
opsydian: Full privileges, able to trigger execution of task/kjobs other users: Is only able to create a task/jobs
- Job Creator: Allowed to interact with the CLI and generate task YAMLs
- Executor: Typically a background process or daemon with rights to execute scripts on remote systems
Opsydian has been tested and verified on the following operating systems and versions: Ensure the following are met prior to installation of the application
- Ubuntu 24.04 LTS
- CentOS Stream 9
- Ubuntu 24.04 LTS
- CentOS Stream 9
- Ollama: Gemma 3 model
Note: Opsydian relies on passwordless SSH or pre-provisioned credentials to execute tasks on client systems. Ensure host configurations are appropriately secured and consistent.
git clone https://github.com/RC-92/Opsydian.git /opt/opsydian
./install.sh
opsydian list models
opsydian status
opsydian start
opsydian-list-hosts
``opsydian-add-host $HOSTNAME $IP_ADDRESS_OF_NEW_HOSTS```
opsydian-monitor
opsydian run task all
opsydian run task $TASKID
opsydian list tasks
If you wish to get in touch with me, please feel free to contact me at:
Email: rc140592@pm.me
All pull request are welcome. I am also open to all and any suggestions










