DevOps Is Mostly Glue Scripts - And AI Agents Are Great at That
DevOps Is Mostly Glue Scripts - And AI Agents Are Great at That
If you ask what DevOps actually looks like day to day at a small startup, the honest answer is: writing scripts that glue services together. Not building Kubernetes clusters. Not designing multi-region failover. Just writing the automation that makes Service A talk to Service B.
The Reality of Startup DevOps
Most of the work is mundane. Set up a deploy pipeline that runs tests, builds the container, pushes to a registry, and restarts the service. Write a script that pulls logs from three different sources into one dashboard. Create a cron job that checks if the database backup actually completed.
None of this is intellectually challenging. It is repetitive, error-prone, and time-consuming. Which makes it a perfect fit for AI agents.
Where Desktop Agents Come In
A lot of DevOps glue work happens across multiple tools that do not have clean API integrations. You copy a config value from the AWS console, paste it into a GitHub secret, then update a Terraform variable. An agent that can operate your desktop can do this entire flow - navigating between browser tabs, terminal windows, and config files.
The key insight is that most infrastructure work is not about making decisions. It is about executing well-documented procedures across multiple interfaces. An agent that can read screens, click buttons, and type commands handles this naturally.
Scripts vs Agent Actions
Traditional automation scripts break when a UI changes or an API version bumps. Desktop agents that use the accessibility layer are more resilient because they interact with semantic elements - "the Deploy button" rather than "the element at xpath /div[3]/button[2]."
The Practical Impact
At a startup where one person handles DevOps alongside their main role, offloading the routine glue work to an agent frees up hours per week. That time goes back to building the actual product.
Fazm is an open source macOS AI agent. Open source on GitHub.