MAP Docs
MIND

Operations

Every operation on MIND.

The full operation table for MIND. Each entry is dispatched through MapEngine::handle_request and matched on operation inside the protocols/mind-lib crate.

Index

OperationSummary
store_memoryInsert a memory cell into one of the four memory types with optional vector + graph indexing.
recall_memoryRecall memories by semantic, structural, or temporal predicate; returns ranked results with provenance.
associate_memoriesCreate or strengthen an association between memory cells; updates the knowledge graph.
query_knowledgeQuery the knowledge graph for subgraph snapshots, optionally bound by source attestation.
fusion_requestCompose a multi-modal fusion across memory types for a higher-level reasoning bind.
mind.beliefs.assertAssert a belief into the belief base; justifications recorded.
mind.beliefs.retractRetract a previously asserted belief; justification chain updated.
mind.beliefs.queryQuery the active belief base by predicate.
mind.beliefs.justifyReturn the justification chain for a held belief.
mind.beliefs.subscribeSubscribe to belief changes for live reasoning binds.
wm.bridgeWorking memory bridge — feature-gated; exposes WM events to bound reasoning services.

Reference

store_memory

Insert a memory cell into one of the four memory types with optional vector + graph indexing.

FieldValue
Capabilitymap.mind.store_memory
IdempotentNo — supply Idempotency-Key for safe retries
{
  "kind": "episodic",
  "payload": {
    "tag": "demo",
    "data": "hello"
  }
}

Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.

recall_memory

Recall memories by semantic, structural, or temporal predicate; returns ranked results with provenance.

FieldValue
Capabilitymap.mind.recall_memory
IdempotentNo — supply Idempotency-Key for safe retries
{
  "kind": "episodic",
  "limit": 10
}

Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.

associate_memories

Create or strengthen an association between memory cells; updates the knowledge graph.

FieldValue
Capabilitymap.mind.associate_memories
IdempotentNo — supply Idempotency-Key for safe retries
{
  "example": true
}

Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.

query_knowledge

Query the knowledge graph for subgraph snapshots, optionally bound by source attestation.

FieldValue
Capabilitymap.mind.query_knowledge
IdempotentNo — supply Idempotency-Key for safe retries
{
  "example": true
}

Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.

fusion_request

Compose a multi-modal fusion across memory types for a higher-level reasoning bind.

FieldValue
Capabilitymap.mind.fusion_request
IdempotentNo — supply Idempotency-Key for safe retries
{
  "example": true
}

Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.

mind.beliefs.assert

Assert a belief into the belief base; justifications recorded.

FieldValue
Capabilitymap.mind.mind.beliefs.assert
IdempotentNo — supply Idempotency-Key for safe retries
{
  "example": true
}

Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.

mind.beliefs.retract

Retract a previously asserted belief; justification chain updated.

FieldValue
Capabilitymap.mind.mind.beliefs.retract
IdempotentNo — supply Idempotency-Key for safe retries
{
  "example": true
}

Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.

mind.beliefs.query

Query the active belief base by predicate.

FieldValue
Capabilitymap.mind.mind.beliefs.query
IdempotentNo — supply Idempotency-Key for safe retries
{
  "example": true
}

Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.

mind.beliefs.justify

Return the justification chain for a held belief.

FieldValue
Capabilitymap.mind.mind.beliefs.justify
IdempotentNo — supply Idempotency-Key for safe retries
{
  "example": true
}

Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.

mind.beliefs.subscribe

Subscribe to belief changes for live reasoning binds.

FieldValue
Capabilitymap.mind.mind.beliefs.subscribe
IdempotentNo — supply Idempotency-Key for safe retries
{
  "example": true
}

Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.

wm.bridge

Working memory bridge — feature-gated; exposes WM events to bound reasoning services.

FieldValue
Capabilitymap.mind.wm.bridge
IdempotentNo — supply Idempotency-Key for safe retries
Feature flagwm-bridge
{
  "example": true
}

Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.

On this page