All tools
ToolRead

Preview Project memory import

preview_project_memory_import

The 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.

Typical workflow

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.

What it returns

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, review-only inspection of a bounded Project memory export before any first-party import. It reports collisions, unavailable evidence dependencies, suppressed memories, and proposed review effects; it never writes memory or bypasses human review.

View JSON Schema
{
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "format": "uuid"
    },
    "bundle": {
      "type": "object",
      "properties": {
        "manifest": {
          "type": "object"
        },
        "files": {
          "type": "object",
          "additionalProperties": {
            "type": "string",
            "maxLength": 524288
          }
        },
        "binaryFiles": {
          "type": "object",
          "description": "Optional export-only base64 source entries. Import review ignores their contents but accepts the complete export shape.",
          "additionalProperties": {
            "type": "string",
            "maxLength": 2097152
          }
        }
      },
      "required": [
        "manifest",
        "files"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "projectId",
    "bundle"
  ],
  "additionalProperties": false
}

Useful next tools