Navigation
Mobile DocsNavigation
Mobile DocsStore and retrieve shared state between agents
Provides a shared memory store for agents to read and write data. Supports atomic operations, versioning, and scoped access.
Layout: half
Options: Get, Set, Delete, Increment
Layout: half
Options: Execution, Workflow, Global
Placeholder: memory.key.name
Layout: full
Placeholder: { "data": "value" }
Layout: full
Condition: operation = ["set","append","cas"]
Placeholder: 1
Layout: half
Condition: operation = "increment"
Placeholder: Version for CAS operation
Layout: half
Condition: operation = "cas"
Placeholder: Time to live (optional)
Layout: half
Condition: operation = ["set","append"]
Placeholder: Default if key not found
Layout: full
Condition: operation = "get"
Required
Optional
Required
Optional
Optional
Optional
Optional
Optional
Primary response type:
{
"success": "boolean",
"key": "string",
"value": "json",
"version": "number",
"previousValue": "json",
"scope": "string",
"expiresAt": "string"
}