AI Agents
AI Agents Guide

Circuit Breakers

Automatic protection that suspends AI agents when anomalous behavior is detected.

Estimated time: 10 minutes

Circuit Breaker Triggers

Error rate exceeds threshold
Unusual access patterns detected
Rate limit violations
Resource scope violations
Suspicious query patterns
Anomalous time-of-day access
1

Enable Circuit Breakers

tacctl agents circuit-breaker enable data-analyzer \
  --error-threshold=10 \
  --window=5m \
  --action=suspend
2

Configure Anomaly Detection

tacctl agents anomaly-detection configure data-analyzer \
  --baseline-period=7d \
  --sensitivity=medium \
  --alert-channel=slack-security
3

Set Recovery Policy

tacctl agents circuit-breaker recovery data-analyzer \
  --auto-recover=true \
  --cooldown=15m \
  --require-approval=false

Next Steps

Learn about MCP Protocol integration for LLM agents.

MCP Protocol