Agentic AI-native multi-tier routing routing, live packet tracing, and failover bypass engine for Pi-hole, Corerouting, routingdist, Unbound, Stubby, routingCrypt-Proxy, and VPN routing.

Install

openclaw skills install @dedsecorg/agentic-route

agentic-route Skill

agentic-route provides a zero-dependency POSIX Bash and Rust engine for inspecting, diagnosing, routing, and failing over multi-tier routing infrastructure.

CLI Commands

CommandSyntaxDescription
statusagentic-route statusShow status of all routing services, addresses, listening ports, and active chain.
queryagentic-route query <domain>Resolve domain through entrypoint routing.
traceagentic-route trace <domain>Execute simultaneous tcpdump packet capture on loopback and network interfaces.
routesagentic-route routesShow active rules in routingdist config.
route addagentic-route route add <name> <addr:port>Add new upstream server to routingdist.
route removeagentic-route route remove <name>Remove upstream server from routingdist.
bypassagentic-route bypass <failing> [backup]Bypass a failing resolver and prioritize backup.
enforceagentic-route enforce <on|off|status|clean> [target_ip]Intercept encrypted routing (DoT port 853 -> pihole, DROP DoQ UDP/443).
pihole-logagentic-route pihole-logQuery recent routing log and top clients from Pi-hole SQLite database.
healthagentic-route healthRun health check sweep across listeners.
tagagentic-route tagShow service classification tags.
apiagentic-route apiStart REST API server on port 8099.
mcpagentic-route mcpStart stdio MCP JSON-RPC Server for AI agents.

Standard Workflows

1. Diagnose routing Connectivity Outage

bash
agentic-route status
agentic-route health
agentic-route trace google.com

2. Bypass Failing Upstream

bash
agentic-route bypass stubby unbound

3. MCP JSON-RPC Configuration for Agents

json
{
  "mcpServers": {
    "agentic-route": {
      "command": "agentic-route",
      "args": ["mcp"]
    }
  }
}