Overview
Every personal CREAO agent has long-term memory (called Playbooks in the product UI). Memory is created automatically as the agent runs and learns reusable workflow rules. The Developer API lets you read that memory, overwrite it, or clear it. Memory is scoped per agent. Changing one agent’s memory never affects another.Read memory
status—pending,approved,rejected,all, or a comma-separated listlimit— default500, max1000
{ "items": [] }.
Overwrite memory
PUT replaces the entire memory set. New items are written first; previous items are deleted only after that write succeeds, so a failed overwrite leaves the existing memory untouched.
- Max 100 items per request
- Each
contentvalue is capped at 8 KB statusdefaults toapprovedwhen omitted (so items apply on the next run)- Pass
"items": []to clear memory via overwrite
Clear memory
Errors
See also the OpenAPI operations under Agent Memory.