What is company brain?
Company brain is your organization's shared memory layer. Facts, documents, and context persist across conversations — so agents pick up where the last chat left off, not from a blank slate.
Think of it as: A knowledge base your agents can read and write during normal conversation, without manual copy-paste between threads.
What gets stored
- Facts — distilled information agents explicitly remember (policies, preferences, project decisions).
- Documents — uploaded or indexed company docs searchable via
search_company_docs. - Semantic recall — related memories surfaced during conversations based on relevance.
Best practices
- 1Ask agents to remember durable facts — staging URLs, naming conventions, policy decisions.
- 2Upload handbooks, runbooks, and API specs so
search_company_docscan surface them. - 3Use consistent terminology across your team for better semantic recall.
- 4Treat company brain as shared workspace data — avoid storing secrets directly; use
use_secretinstead.
Memory tools
| Tool | Purpose |
|---|---|
memory_remember | Store a new fact in company brain |
memory_search | Semantic search over stored memories |
search_company_docs | Search indexed company documents |
use_secret | Retrieve named secrets without exposing them in chat |