Forget workspace memory
forget_workspace_memoryUse only after explicit user confirmation to purge a specific workspace memory by id while retaining a non-content audit marker.
When to use it
Use only after explicit user confirmation to purge a specific workspace memory by id while retaining a non-content audit marker.
Read context, list durable memory when stable ids are needed, then remember only explicit durable facts or preferences; correct or forget by stable memory id.
Bounded memory records with stable ids, or the created, superseded, review-gated, suppressed, or purged workspace-memory result.
Avoid using it when
The information is transient, inferred without confirmation, or belongs in a source document instead of memory.
Advanced input contract
Agent hosts use this JSON Schema to validate the exact input shape.
View full registry notes
Purge a specific owned workspace memory's content, embeddings, and evidence immediately, invalidate derived models, and retain only a non-content fingerprint/audit marker. Requires explicit confirmation and never deletes canonical source content. Use when: Use only after explicit user confirmation to purge a specific workspace memory by id while retaining a non-content audit marker.
View JSON Schema
{
"type": "object",
"properties": {
"memoryId": {
"type": "string",
"format": "uuid"
},
"confirm": {
"type": "boolean",
"const": true
}
},
"required": [
"memoryId",
"confirm"
],
"additionalProperties": false
}