Unbounded Resource Access
Medium
- Category
- Excessive Agency
- Content
## Query Performance - Always include time range—unbounded queries scan everything - Filter on tags before fields—tags use index, fields scan data - Limit results with `LIMIT` or `|> limit()`—dashboard doesn't need 1M points - Use `GROUP BY` / `aggregateWindow` to reduce data before returning
- Confidence
- 80% 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.
