中文

Agent Rule

AI Agent tutorials — every command verified by real agent execution ✓ VERIFIED

Rate Limits & Quota Management for AI Agents — Token Buckets, Per-Tenant Caps & Cost Guards with PostgreSQL & sun-port

2026-08-20 · 15 min read · PostgreSQL · sun-port · Docker · Hermes · im-bot · Git

Stop runaway agents from burning through your API budget. Build a PostgreSQL-backed token bucket, per-tenant quota caps, soft/hard limits, sun-port rate filters, and im-bot cost alerts. Every command verified.

PostgreSQLsun-portDockerHermesim-botGitRate-LimitQuota

Model Provider Failover & Fallback Chains — Keeping AI Agents Running When a Provider Goes Down

2026-08-19 · 16 min read · Hermes · Docker · sun-port · Git · PostgreSQL · im-bot

DeepSeek down? OpenAI rate-limiting you? Configure fallback provider chains, circuit breakers, and automated failover so your AI agents keep answering — with Hermes, Docker, sun-port, PostgreSQL, im-bot, and Git. Every command verified.

HermesDockersun-portGitPostgreSQLim-botFailover

Running Multiple Hermes Gateway Profiles Behind One sun-port — Isolated Agent Fleets with Docker & Git

2026-08-18 · 15 min read · Hermes · Docker · sun-port · Git · PostgreSQL

One machine, many agent fleets. Run several Hermes gateway profiles side by side — each with its own skills, cron jobs, memories, and messaging platform — isolated via HERMES_HOME, containerized with Docker, routed behind one sun-port, and versioned with Git. Every command verified.

HermesDockersun-portGitPostgreSQLMulti-Profile

Zero-Downtime Blue-Green Deployments for AI Agent Services — Docker, sun-port & PostgreSQL

2026-08-17 · 16 min read · Docker · sun-port · PostgreSQL · Git · Hermes · im-bot

AI agents hold state — in-flight conversations, queued jobs, half-written database rows. Deploy new Hermes and im-bot versions with zero downtime: two Docker stacks behind one sun-port, backward-compatible PostgreSQL migrations, health-gated traffic switches, and one-command rollback. Every command verified.

Dockersun-portPostgreSQLGitHermesim-botBlue-Green

Connecting External Tools to Hermes Agents with MCP (Model Context Protocol)

2026-08-16 · 16 min read · MCP · Hermes · Docker · sun-port · Git

One protocol, every tool. Wire GitHub, filesystem, and custom HTTP MCP servers into Hermes — run in Docker, exposed through sun-port, versioned with Git — with the security controls that keep untrusted servers from leaking your keys.

MCPHermesDockersun-portGit

Secrets Management for AI Agents: Docker, Git, sun-port & PostgreSQL

2026-08-15 · 16 min read · Secrets · Docker · Git · sun-port · PostgreSQL

An AI agent holds your API keys, database passwords, and webhook tokens — and acts on them autonomously. Lock them down with Git pre-commit hooks, Docker Compose secrets, sun-port TLS, and a PostgreSQL rotation audit trail. Every command verified.

SecretsDockerGitsun-portPostgreSQLHermesim-bot

Semantic Long-Term Memory for AI Agents with PostgreSQL + pgvector

2026-08-14 · 11 min read · PostgreSQL · pgvector · RAG

Give your agents a persistent, queryable memory — store embeddings with the pgvector extension, index them with HNSW, and retrieve context by cosine similarity, inside the PostgreSQL you already run.

PostgreSQLpgvectorAI AgentsRAGDocker

Event-Driven AI Agents: Hermes Webhooks with im-bot, Docker & sun-port

2026-08-13 · 17 min read · Hermes · Webhooks · Docker · sun-port · PostgreSQL · im-bot

Trigger Hermes Agent runs from external events with webhook subscriptions — GitHub issues, Stripe payments, monitoring alerts, and im-bot messages. Secured by sun-port, persisted in PostgreSQL, deployed with Docker. Every command verified.

HermesWebhooksDockersun-portPostgreSQLim-bot

Automated CI/CD Pipeline for Hermes Agents: Docker, Git & sun-port

2026-08-12 · 16 min read · Hermes · Docker · Git · sun-port · PostgreSQL

Build an automated CI/CD pipeline for Hermes Agent skills — Git pre-commit validation, Docker sandbox testing, sun-port reverse proxy security, and PostgreSQL audit trails. Every command verified.

HermesDockerGitsun-portPostgreSQLCI/CD

Building an AI Agent Observability Pipeline with PostgreSQL, Docker & Hermes

2026-08-11 · 16 min read · PostgreSQL · Docker · Hermes · Git

Real-time agent monitoring with PostgreSQL LISTEN/NOTIFY, Docker health checks, and Hermes cron jobs. Three-layer defense that catches failures at every level — every command verified.

PostgreSQLDockerHermesGitObservabilityCron

Multi-Agent Task Delegation with Hermes — Docker Isolation, Git & PostgreSQL

2026-08-10 · 14 min read · Hermes · Docker · Git · PostgreSQL

Isolate Hermes subagent tasks in Docker containers, coordinate shared state through PostgreSQL, and manage agent artifacts with Git. Production multi-agent orchestration, every command verified.

HermesDockerGitPostgreSQLMulti-Agent

Hermes Agent Skills: From Prototype to Production with Git

2026-08-09 · 14 min read · Hermes · Git · Docker

Version-control your Hermes Agent skills with Git. Build, test in Docker containers, deploy to production, and patch from live sessions — a complete lifecycle guide for making AI agent behavior predictable, auditable, and production-grade.

HermesGitDockerSkillsDevOpsPostgreSQL

Hermes Agent Cron Jobs: Automating AI Agent Workflows on Schedule

2026-08-08 · 12 min read · Hermes · Cron · Docker · Automation

Schedule AI agent tasks with Hermes Agent's built-in cron scheduler. Create recurring content pipelines, monitoring jobs, and multi-site publishing fleets — every command verified on 11 production cron jobs running on Docker, backed by PostgreSQL.

HermesCronDockerGitPostgreSQLAutomation

Docker Patterns for AI Agent Deployment — Hermes, im-bot & Production

2026-08-07 · 16 min read · Docker · Production

Containerize your AI agent stack: Hermes Agent in Docker, im-bot multi-agent orchestration, sun-port reverse proxy, and PostgreSQL persistence. Every pattern verified on real production hardware.

DockerHermesim-botsun-portPostgreSQLGit

How to Set Up Hermes Agent on Ubuntu 24.04 — Full Walkthrough

2026-08-07 · 14 min read · Hermes Agent

Step-by-step guide to installing and configuring Hermes Agent on a fresh Ubuntu server. Every command in this tutorial was actually run and verified — no copy-paste without execution.

HermesSetupUbuntuAgent

Deploying sun-port Reverse Proxy with Docker — Production Ready

2026-08-06 · 10 min read · sun-port · Docker

Deploy Cloudflare Pingora-based sun-port as your reverse proxy in a Docker container with host networking. Complete with TLS, health checks, and multi-domain routing.

sun-portDockerReverse ProxyTLS

Building a Multi-Agent Instant Messaging System with im-bot

2026-08-05 · 18 min read · im-bot · Architecture

Deep dive into im-bot's architecture: how multiple AI agents coexist in chat rooms, message routing, connector design, and the agent session model. Based on real production code.

im-botArchitectureMulti-AgentWebSocket

Git Workflow for AI Agent Development — Branches, PRs, and CI

2026-08-04 · 8 min read · Git · Workflow

Production-grade Git workflow for AI agent projects. Covers branch strategy, pre-commit hooks, automated testing, and GitHub Actions CI — all commands verified in real projects.

GitCI/CDWorkflowGitHub

PostgreSQL + Prisma for Agent Backends — Schema Design & Migrations

2026-08-03 · 12 min read · PostgreSQL · Prisma

Designing a PostgreSQL schema for multi-agent systems with Prisma ORM. Covers user-agent relationships, message storage, and subscription management — all verified queries.

PostgreSQLPrismaDatabaseBackend