Export Project memory
export_project_memoryThe user explicitly asks Prism to retain, correct, or forget durable workspace context.
When to use it
The user explicitly asks Prism to retain, correct, or forget durable workspace context.
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
Owner-only Project-memory handoff. By default it returns a portable, importable bundle containing eligible shared memory bodies, owner research checkpoints, the active shared research brief, dependency metadata, checksums, and up to five explicitly selected bounded source binaries. Client-private and forgotten memory stay excluded. Use format=manifest for a lightweight inventory.
View JSON Schema
{
"type": "object",
"properties": {
"projectId": {
"type": "string",
"format": "uuid"
},
"format": {
"type": "string",
"enum": [
"bundle",
"manifest"
],
"default": "bundle"
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 50,
"default": 50
},
"sourceFileIds": {
"type": "array",
"maxItems": 5,
"items": {
"type": "string",
"format": "uuid"
},
"description": "Optional Project source files to include in a full bundle. Each must be stored, supported, and at most 1 MB; the combined limit is 4 MB."
}
},
"required": [
"projectId"
],
"additionalProperties": false
}