Use this file to discover all available pages before exploring further.
Memory is a per-agent key/value store of text notes that persist across sessions. At the start of each session, the harness reads all active memories for the agent and injects them into the working context so the agent doesn’t need to rediscover information it already knows. You can add memories manually via the API, or the agent can write them itself during a session.
Filter to memories whose tags array includes this value
# Search by textcurl "https://your-lap-deployment/api/v1/managed_agents/agents/{agent_id}/memory?q=indentation" \ -H "Authorization: Bearer $MASTER_KEY"# Filter by tagcurl "https://your-lap-deployment/api/v1/managed_agents/agents/{agent_id}/memory?tag=coding-conventions" \ -H "Authorization: Bearer $MASTER_KEY"
Every GET request bumps times_applied and last_applied_at on the returned rows. This is intentional — the harness uses this endpoint for its search_memory tool, and the platform tracks usage to help you identify which memories the agent relies on most.
Set disabled: true to suppress a memory without deleting it. Disabled memories are hidden from prompt pre-load and search but kept in the database for audit purposes:
Returns 204 No Content. Hard-deletes the row permanently.
Prefer disabling a memory over deleting it. Disabled memories can be re-enabled and provide a history of what the agent has been told. Deleted memories are gone for good.