maasv Memory

# maasv Memory

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "maasv Memory" with this command: npx skills add ascottbell/maasv-memory

maasv Memory

Structured long-term memory for OpenClaw agents, powered by maasv.

Replaces the default memory backend with a cognition layer that includes 3-signal retrieval (semantic + keyword + knowledge graph), entity extraction, temporal versioning, and experiential learning.

maasv is entirely self-hosted. There is no maasv cloud service. You run the server on your own machine, and all data is stored in a SQLite file on your local disk that you own and control. Nothing is sent to maasv.

Install

This skill requires the @maasv/openclaw-memory plugin and a running maasv server.

1. Start the server

pip install "maasv[server,anthropic,voyage]"
cp server.env.example .env  # fill in API keys (see below)
maasv-server

2. Install the plugin

openclaw plugins install @maasv/openclaw-memory

3. Activate

// ~/.openclaw/openclaw.json
{
  plugins: {
    slots: { memory: "memory-maasv" },
    entries: {
      "memory-maasv": {
        enabled: true,
        config: {
          serverUrl: "http://127.0.0.1:18790",
          autoRecall: true,
          autoCapture: true,
          enableGraph: true
        }
      }
    }
  }
}

Required Credentials

The maasv server needs an LLM provider (for entity extraction) and an embedding provider (for semantic search). Configure these in your .env file:

VariableRequiredPurpose
MAASV_LLM_PROVIDERYesanthropic or openai
MAASV_ANTHROPIC_API_KEYIf using AnthropicLLM calls for entity extraction
MAASV_OPENAI_API_KEYIf using OpenAILLM calls for entity extraction
MAASV_EMBED_PROVIDERYesvoyage, openai, or ollama
MAASV_VOYAGE_API_KEYIf using VoyageEmbedding generation
MAASV_API_KEYOptionalProtects maasv server endpoints with auth

For fully local operation (no cloud calls), use ollama as your embed provider and a local LLM. maasv is optimized for Qwen3-Embedding-8B via Ollama, with built-in Matryoshka dimension truncation. See the maasv README for local setup.

Data & Network Behavior

  • maasv has no cloud service. The server runs on your machine, the database is a SQLite file on your disk. You own all of it.
  • The only external calls are to your own LLM/embedding provider (Anthropic, OpenAI, Voyage) — using your own API keys, from your own machine. If you use ollama, zero data leaves your machine.
  • The plugin talks only to localhost (127.0.0.1:18790). It makes no external network calls.
  • autoCapture sends conversation summaries to your local maasv server for entity extraction. Extracted entities are stored in your local SQLite database.
  • autoRecall reads from your local SQLite database and injects relevant memories into the agent's context.
  • No telemetry, no analytics, no phone-home. maasv does not collect or transmit any data.

What You Get

  • memory_search — 3-signal retrieval across your memory store
  • memory_store — Dedup-aware memory storage
  • memory_forget — Permanent deletion
  • memory_graph — Knowledge graph: entity search, profiles, relationships
  • memory_wisdom — Log reasoning, record outcomes, search past decisions

Links

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

Cortex Engine

Persistent cognitive memory for AI agents — query, record, review, and consolidate knowledge across sessions with spreading activation, FSRS scheduling, and...

Registry SourceRecently Updated
3041Profile unavailable
Research

Openclaw Sulcus Skill

Equip your agent with Sulcus — thermodynamic memory with a knowledge graph. Full SIU pipeline: SIVU (quality gate) → SICU (classifier) → SILU (entity extract...

Registry SourceRecently Updated
4001Profile unavailable
Research

Memory Evolver

记忆系统优化器 - 结合三层记忆与知识图谱的持续自我进化系统。自动诊断、优化、记录记忆系统状态,实现记忆的持续进化。

Registry SourceRecently Updated
2270Profile unavailable
Research

Memory Optimization

Comprehensive memory management optimization for AI agents. Use when: (1) Agent experiences context compression amnesia, (2) Need to rebuild context quickly...

Registry SourceRecently Updated
3500Profile unavailable