Recommendation on cadence
Typically, create doc_types whose new instances are added at a human pace (once a day, once a week) rather than a real-time pace.Good: Kubernetes deployments
Deployments change at a non-real-time pace — a great doc_type to track.
Avoid: a pod per entity
Pods are ephemeral. An entity per pod churns the brain with no lasting value.
customer doc_type: an entity per customer is a poor fit
for a B2C company, but reasonable for B2B enterprise sales where the customer count
is in the thousands.
Why not create too many entities
Exception: valuable temporal data
Some temporal data is worth keeping centrally — for example, alerts and deployments in a brain used for AI troubleshooting. In those cases, model the data so it decays exponentially with time. That way, flushing old data doesn’t hurt the brain’s quality — the recent, relevant slice always dominates.How entities get created
- Manual entry / upload from the UI.
- Talking to an agent connected to the brain via CLI / MCP.
- A webhook or API trigger from a script on your end.
- A recurring cron defined in the brain configuration.