Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
One change · api

memory changed

managed-agents/memory

Nearest release: v2.1.280, published 20 hours after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

Recorded here
Lines+13added
Lines−6removed
From line 28 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits10to this page, all time

The whole hunk

from line 28, old and new numbered
/
lines
from line 28
2828 
2929Give the store a `name` and a `description`. The description is passed to the agent, telling it what the store contains.
3030 
31<CodeGroup>
31<CodeGroup defaultLanguage="CLI">
3232 ```bash cURL
3333 curl -s https://api.anthropic.com/v1/memory_stores \
3434 -H "x-api-key: $ANTHROPIC_API_KEY" \
from line 38
3838 -d '{"name": "User Preferences", "description": "Per-user preferences and project context."}'
3939 ```
4040 
41 ```bash CLI
42 ant beta:memory-stores create \
43 --name "User Preferences" \
44 --description "Per-user preferences and project context."
45 ```
41 <MultiFileExample language="cli" label="CLI">
42 ```bash CLI
43 ant apply memory_store.yaml
44 ```
45 
46 <File filename="memory_store.yaml">
47 ```yaml
48 name: User Preferences
49 description: Per-user preferences and project context.
50 ```
51 </File>
52 </MultiFileExample>
4653 
4754 ```python Python
4855 store = client.beta.memory_stores.create(