Unbounded Resource Access
Medium
- Category
- Excessive Agency
- Content
- Exponential backoff: 1s, 2s, 4s, 8s... cap at 30s—prevents thundering herd on server recovery - Add jitter: `delay * (0.5 + Math.random())`—prevents synchronized reconnection storms - Track reconnection state—queue messages during reconnect, replay after - Max retry limit then surface error to user—don't retry forever silently ## Heartbeats (Critical)
- Confidence
- 75% confidence
- Finding
- Skill allows unbounded resource consumption (API calls, storage, compute). Without rate limits or quotas, a compromised or misbehaving agent can cause denial-of-service or cost overruns.
