DevOps

17 posts in this section

Claude Code Hooks, Subagents, and Piping: Advanced Automation for Teams

Most teams use Claude Code reactively — they type a prompt, Claude responds, they type another. That is fine, but it leaves significant value on the table. Hooks, subagents, and piping let you build Claude into your workflow so that it works with your tools rather than alongside them. Hooks: Making Claude Anticipatory A hook is a shell command, script, or HTTP call that fires automatically when Claude Code reaches a specific lifecycle point.

Continue reading »

Claude Computer Use for DevOps: When to Use It and When to Use an API

Claude’s computer use capability — the ability to see your screen and interact with applications via mouse clicks, keyboard input, and scrolling — is one of the most discussed features in the AI space. It is also one of the most misapplied. The correct mental model is not “Claude can now automate everything on my screen.” It is “Claude now has a flexible fallback layer for tasks that do not have a structured API integration.

Continue reading »

Mastering Claude Code CLI: The Complete Guide for DevOps Engineers

If you have been using Claude in a browser tab to help with code, you are leaving most of its capability on the table. Claude Code CLI brings the full power of Claude directly into your terminal — it reads your actual codebase, runs real commands, edits files, commits code, and integrates with every tool in your DevOps stack. This guide covers everything from installation to advanced patterns that most engineers never discover.

Continue reading »

MCP Servers Worth Installing: A DevOps Team's Curated List

The MCP (Model Context Protocol) ecosystem has exploded. There are now hundreds of servers covering everything from Notion to Neo4j. Most of them you do not need. Installing too many slows responses, adds debugging overhead, and inflates your context window with tool definitions that never get used. This guide applies a simple filter: only install a server if it saves your team more than five minutes per day. For a DevOps or platform engineering team, that bar eliminates most of the ecosystem and keeps a short, high-value list.

Continue reading »

Writing a CLAUDE.md That Actually Works

Every CLAUDE.md file gets loaded into context on every session. Most teams treat it like documentation — a place to describe the project, list the tech stack, explain what the tests do. That is the wrong mental model and it is why most CLAUDE.md files are both too long and too ineffective. CLAUDE.md is behavioral programming. Its job is to change how Claude makes decisions, not to describe facts that Claude can read from the codebase itself.

Continue reading »

You Don't Need a Framework to Build an AI Assistant

There is a tendency in the AI tooling space to reach for frameworks — LangChain, AutoGen, CrewAI, OpenClaw — the moment you want an AI that does more than answer one question at a time. Most of the time, that is the wrong move. The framework adds complexity, dependencies, and debugging surface area for problems that a few shell scripts and cron jobs solve perfectly well. Claude Code’s headless mode (-p flag) plus a markdown file for personality plus cron scheduling is a complete AI assistant stack.

Continue reading »

Build Your Own DDNS Platform

If you run a home server — a Raspberry Pi, a NAS, a Kubernetes cluster in your garage — you have probably hit the same annoying wall: your internet provider gives you a different public IP address every few days, and suddenly nobody can reach your server anymore. This post explains how I solved that problem by building ddns.devops-monk.com, a fully self-hosted Dynamic DNS platform. I will walk through the idea from scratch, explain every moving part in plain English, and include full architecture diagrams for those who want the deep technical picture.

Continue reading »