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
| Operation | Summary |
|---|---|
store_memory | Insert a memory cell into one of the four memory types with optional vector + graph indexing. |
recall_memory | Recall memories by semantic, structural, or temporal predicate; returns ranked results with provenance. |
associate_memories | Create or strengthen an association between memory cells; updates the knowledge graph. |
query_knowledge | Query the knowledge graph for subgraph snapshots, optionally bound by source attestation. |
fusion_request | Compose a multi-modal fusion across memory types for a higher-level reasoning bind. |
mind.beliefs.assert | Assert a belief into the belief base; justifications recorded. |
mind.beliefs.retract | Retract a previously asserted belief; justification chain updated. |
mind.beliefs.query | Query the active belief base by predicate. |
mind.beliefs.justify | Return the justification chain for a held belief. |
mind.beliefs.subscribe | Subscribe to belief changes for live reasoning binds. |
wm.bridge | Working 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.
| Field | Value |
|---|---|
| Capability | map.mind.store_memory |
| Idempotent | No — 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.
| Field | Value |
|---|---|
| Capability | map.mind.recall_memory |
| Idempotent | No — 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.
| Field | Value |
|---|---|
| Capability | map.mind.associate_memories |
| Idempotent | No — 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.
| Field | Value |
|---|---|
| Capability | map.mind.query_knowledge |
| Idempotent | No — 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.
| Field | Value |
|---|---|
| Capability | map.mind.fusion_request |
| Idempotent | No — 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.
| Field | Value |
|---|---|
| Capability | map.mind.mind.beliefs.assert |
| Idempotent | No — 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.
| Field | Value |
|---|---|
| Capability | map.mind.mind.beliefs.retract |
| Idempotent | No — 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.
| Field | Value |
|---|---|
| Capability | map.mind.mind.beliefs.query |
| Idempotent | No — 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.
| Field | Value |
|---|---|
| Capability | map.mind.mind.beliefs.justify |
| Idempotent | No — 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.
| Field | Value |
|---|---|
| Capability | map.mind.mind.beliefs.subscribe |
| Idempotent | No — 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.
| Field | Value |
|---|---|
| Capability | map.mind.wm.bridge |
| Idempotent | No — supply Idempotency-Key for safe retries |
| Feature flag | wm-bridge |
{
"example": true
}Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.