The Problem If you're like me, you live in your terminal. You've got Docker containers running for databases, Redis instances for caching, microservices doing their thing β and you're constantly context-switching to check on them. # The old way: docker ps docker logs my-app -n 50 docker stats docker inspect some_container # ... back and forth, breaking your flow Enter fullscreen mode Exit fullscreen mode Now imagine you're working with an AI coding agent β an LLM that can read files, write code, and run commands for you. Every time you need to check a container, you either: Break your flow by typing out commands manually Trust the AI to blindly run docker rm -f without confirmation (yikes!) Squint at raw JSON output from docker inspect I wanted something better. So I built it. π³ Enter: Container Dashboard Container Dashboard is a pi coding agent extension that brings full container lifecycle management into your AI agent.β¦