agent_recall
Read an encrypted agent memory value by key, or list all stored keys to rehydrate prior context in an agent loop.
Instructions
[agent] Read a value from encrypted agent memory, or list every stored key when no specific key is supplied. Use at the start of an agent loop to rehydrate prior context, or to look up a single remembered fact; prefer get_project_context for a redacted overview of secrets and get_secret for actual credential values. Read-only. With a key argument: returns JSON { ok, data: { key, value } } or a not-found error. Without key: returns a JSON listing of every stored key (no values), or 'Agent memory is empty'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | Memory key to read. Omit to list every stored key (without values). |