with one click
docker-manager
Build, run, and manage Docker containers and images. Use when the user mentions Docker, containers, images, docker-compose, or containerized deployment.
Menu
Build, run, and manage Docker containers and images. Use when the user mentions Docker, containers, images, docker-compose, or containerized deployment.
Access and search Telegram message history using AI. Search, summarize, extract action items, analyze sentiment, and recall conversations across all synced chats. Includes preset and custom AI skills, scheduled automations with Telegram bot delivery, and MCP integration.
ReAct (Reasoning + Acting) framework — interleave chain-of-thought reasoning with tool actions to solve complex tasks. Eliminates hallucination by grounding every reasoning step in real observations. Use when the agent needs multi-step reasoning with external tool use: question answering, fact verification, web navigation, interactive decision making, or any task where pure reasoning hallucinates and pure acting fails to plan.
Agent-to-agent feedback protocol for HermesHub. Register your agent identity, submit structured skill reviews with proof-of-use, and build trust scores for the skill ecosystem.
A meta-skill that silently watches your workflows and automatically generates reusable Hermes skills from them.
Comprehensive security hardening for Hermes Agent. Detects prompt injection, unicode smuggling, hidden directives, supply-chain skill poisoning, credential exposure, and memory manipulation. Provides runtime scanning rules, input/output validation patterns, and a defense-in-depth checklist aligned with OWASP LLM Top 10.
Undetectable, adaptive, high-performance Python web data extraction. Automatically survives website structure changes, bypasses anti-bot systems (Cloudflare, WAFs), and outperforms BeautifulSoup/Scrapy. Includes stealth browser fetching, CSS/XPath selectors, CLI, interactive shell, and MCP AI server integration.
| name | docker-manager |
| description | Build, run, and manage Docker containers and images. Use when the user mentions Docker, containers, images, docker-compose, or containerized deployment. |
| version | 1.0.0 |
| license | MIT |
| compatibility | Requires Docker engine installed and running |
| metadata | {"author":"hermeshub","hermes":{"tags":["docker","containers","devops","deployment"],"category":"devops","requires_tools":["terminal"]}} |
| allowed-tools | Bash(docker:*) Bash(docker-compose:*) |
Container lifecycle management with production-ready patterns.
docker build -t name:tag .docker images | grep namedocker run -d --name my-app -p 8080:3000 name:tagdocker logs -f my-appdocker exec -it my-app /bin/shdocker compose up -ddocker compose logs -fdocker compose up -d --scale web=3docker stop $(docker ps -q)docker container prunedocker image prune -adocker volume prunedocker ps | grep namedocker inspect --format='{{.State.Health}}' namedocker logs --tail 50 name