Crawler Summary

muninn answer-first brief

Semantic memory system for AI-assisted development - persistent context across sessions Muninn $1 $1 $1 **Your AI coding agent forgets everything between sessions. Muninn fixes that.** Muninn gives AI coding agents persistent memory. Before every edit, the agent knows what's fragile, what decisions were made, and what broke last time. After every session, it writes back what it learned. Session 50 has the same institutional knowledge as session 1. Every session builds on the last. Every project informs Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.

Freshness

Last checked 2/25/2026

Best For

muninn is best for cli workflows where MCP compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, GITHUB MCP, runtime-metrics, public facts pack

Claim this agent
Agent DossierGitHubSafety: 89/100

muninn

Semantic memory system for AI-assisted development - persistent context across sessions Muninn $1 $1 $1 **Your AI coding agent forgets everything between sessions. Muninn fixes that.** Muninn gives AI coding agents persistent memory. Before every edit, the agent knows what's fragile, what decisions were made, and what broke last time. After every session, it writes back what it learned. Session 50 has the same institutional knowledge as session 1. Every session builds on the last. Every project informs

MCPself-declared

Public facts

5

Change events

1

Artifacts

0

Freshness

Feb 25, 2026

Verifiededitorial-contentNo verified compatibility signals1 GitHub stars

Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.

1 GitHub starsTrust evidence available

Trust score

Unknown

Compatibility

MCP

Freshness

Feb 25, 2026

Vendor

Ravnltd

Artifacts

0

Benchmarks

0

Last release

8.0.0

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.

Setup snapshot

git clone https://github.com/ravnltd/muninn.git
  1. 1

    Setup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Ravnltd

profilemedium
Observed Feb 25, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

MCP

contractmedium
Observed Feb 25, 2026Source linkProvenance
Adoption (1)

Adoption signal

1 GitHub stars

profilemedium
Observed Feb 25, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB MCP

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Executable Examples

bash

npx muninn-ai

text

Session starts
  -> Load last session's context, goals, next steps
  -> Surface relevant decisions, patterns, known issues

Agent edits a file
  -> Check fragility score (is this dangerous?)
  -> Surface related decisions (what was decided here before?)
  -> Warn about co-changed files (what else usually needs updating?)

Session ends
  -> Save what was done, what was learned, what's next
  -> Build cross-session insights automatically

bash

npx muninn-ai

bash

# Requires Bun (https://bun.sh)
git clone https://github.com/ravnltd/muninn.git ~/.local/share/muninn
cd ~/.local/share/muninn && ./install.sh

bash

# Claude Code
claude mcp add --scope user muninn -- muninn-mcp

# Other MCP clients: point to the muninn-mcp script in ~/.local/bin/

bash

muninn --help
muninn status

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB MCP

Docs source

GITHUB MCP

Editorial quality

ready

Semantic memory system for AI-assisted development - persistent context across sessions Muninn $1 $1 $1 **Your AI coding agent forgets everything between sessions. Muninn fixes that.** Muninn gives AI coding agents persistent memory. Before every edit, the agent knows what's fragile, what decisions were made, and what broke last time. After every session, it writes back what it learned. Session 50 has the same institutional knowledge as session 1. Every session builds on the last. Every project informs

Full README

Muninn

npm License: AGPL-3.0 GitHub stars

Your AI coding agent forgets everything between sessions. Muninn fixes that.

npx muninn-ai

Muninn gives AI coding agents persistent memory. Before every edit, the agent knows what's fragile, what decisions were made, and what broke last time. After every session, it writes back what it learned. Session 50 has the same institutional knowledge as session 1.

Every session builds on the last. Every project informs every other project. Patterns learned in one codebase show up as warnings in another. Decisions compound. Solo builders can build like teams.

Works with: Claude Code, Cursor, Windsurf, Continue.dev, and any MCP-compatible tool.


The Problem

AI coding agents are stateless. Every session starts from zero. This means:

  • They break things — editing a critical file with no idea it's fragile
  • They contradict themselves — picking a different pattern than 3 sessions ago
  • They repeat mistakes — re-introducing bugs that were already fixed
  • They lose context — forgetting why something was done a certain way

The bigger the project, the worse it gets. By session 20, you're spending more time re-explaining context than writing code.

How Muninn Fixes It

Muninn is a read-write memory loop. The agent queries context before making changes, then writes back what it learned.

Session starts
  -> Load last session's context, goals, next steps
  -> Surface relevant decisions, patterns, known issues

Agent edits a file
  -> Check fragility score (is this dangerous?)
  -> Surface related decisions (what was decided here before?)
  -> Warn about co-changed files (what else usually needs updating?)

Session ends
  -> Save what was done, what was learned, what's next
  -> Build cross-session insights automatically

After a few sessions, Muninn knows your codebase like a senior engineer who's been on the project for years.

Context Budget

Most memory tools dump everything into the context window. Muninn doesn't. It enforces a hard 2000-token budget per tool call. Seven intelligence signals run in parallel (~5-15ms), determine what's actually relevant to what you're doing right now, and pack only that into context. It tracks which context the agent actually used vs ignored, and adjusts the budget allocation over time. Irrelevant stuff gets suppressed. Useful stuff gets more room.

Quick Start

Option 1: npx (Recommended)

npx muninn-ai

Option 2: Manual Install

# Requires Bun (https://bun.sh)
git clone https://github.com/ravnltd/muninn.git ~/.local/share/muninn
cd ~/.local/share/muninn && ./install.sh

The installer creates wrapper scripts in ~/.local/bin/, sets up hooks, and registers the MCP server.

Register with Your Editor

# Claude Code
claude mcp add --scope user muninn -- muninn-mcp

# Other MCP clients: point to the muninn-mcp script in ~/.local/bin/

Verify

muninn --help
muninn status

That's it. Start a coding session and Muninn auto-initializes for your project.

What It Tracks

| Memory Type | Example | Why It Matters | |-------------|---------|----------------| | Files | auth.ts — fragility 8/10 | Agent asks before touching dangerous files | | Decisions | "Use JWT not sessions" — because stateless deploys | Agent won't contradict past choices | | Issues | Bug #12 — race condition in cache | Agent knows what's broken | | Learnings | "Always validate at boundaries" | Patterns accumulate across sessions | | Sessions | Last session: "Refactored auth, next: add tests" | Continuity between sessions | | Blast Radius | types.ts impacts 47 files | Agent understands ripple effects |

MCP Tools

14 tools available to your AI agent via Model Context Protocol:

Core Tools

| Tool | What It Does | |------|--------------| | muninn_query | Search memory (full-text, semantic, or LLM-ranked) | | muninn_check | Pre-edit safety check (fragility, issues, co-changers) | | muninn_predict | Bundle all relevant context for a task | | muninn_suggest | Find related files using semantic search | | muninn_file_add | Record file knowledge after editing | | muninn_decision_add | Record an architectural decision | | muninn_learn_add | Save a pattern or gotcha | | muninn_issue | Track bugs and problems | | muninn_session | Start/end session tracking |

Intelligence Tools

| Tool | What It Does | |------|--------------| | muninn_enrich | Auto-inject context for Read/Edit/Write/Bash/Glob/Grep calls | | muninn_approve | Approve blocked operations on high-fragility files | | muninn_context | Unified context retrieval with intent routing (edit/read/debug/explore/plan) | | muninn_intent | Multi-agent coordination (declare/query/release file locks) |

Passthrough

| Tool | What It Does | |------|--------------| | muninn | Passthrough to full CLI (50+ commands) |

Adaptive Intelligence

Muninn gets smarter in two dimensions:

Per-codebase: Tracks which files change together, fragility patterns, architectural drift, and recurring issues. After a few sessions, it predicts what you'll need to touch and warns about risks.

Per-developer: Builds a profile of your coding preferences — error handling style, naming conventions, patterns you favor. This follows you across projects.

Feedback Loops

Seven feedback loops run in parallel on every tool call:

  1. Strategy success rates — what approaches worked before
  2. Workflow prediction — anticipates next tool call
  3. Staleness detection — reduces budget for outdated knowledge
  4. Impact tracking — measures what context actually helped vs was ignored
  5. Budget optimization — A/B tests different context allocations
  6. Agent profiling — detects scope creep and repeated failure patterns
  7. Trajectory analysis — adjusts context based on whether you're exploring, failing, stuck, or confident

All feeding into the 2000-token budget. Context that helps gets boosted. Context that's irrelevant gets suppressed.

Fragility Scoring

Not a guess — a weighted composite of 7 signals:

| Signal | Weight | What It Measures | |--------|--------|-----------------| | Dependents | 25% | How many files import this one | | Test coverage | 20% | Whether tests exist for this file | | Change velocity | 15% | How often it changes per week | | Error history | 15% | How many errors in the last 90 days | | Export surface | 10% | How many things it exports | | Complexity | 10% | Symbol count and structural complexity | | Manual override | 5% | Human-specified bias |

Multi-Machine Setup

Muninn supports a hub-and-spoke architecture using sqld for shared memory across machines:

# On your central server
docker run -d --name sqld -p 8080:8080 \
  -v sqld-data:/var/lib/sqld \
  ghcr.io/tursodatabase/libsql-server:latest

# On each machine
export MUNINN_MODE=http
export MUNINN_PRIMARY_URL=http://YOUR_SERVER:8080
claude mcp add --scope user muninn -- env MUNINN_MODE=http MUNINN_PRIMARY_URL=http://YOUR_SERVER:8080 muninn-mcp

Two modes:

| Mode | Local State | Use Case | |------|-------------|----------| | local | Full DB | Single machine | | http | None (stateless) | Multi-machine (recommended) |

HTTP mode is stateless — all queries go directly to sqld. No local replica to corrupt. Just reconnect if anything goes wrong.

Optional: Enhanced Search

Muninn works fully offline. Optional APIs improve search quality:

| Feature | API Key | Fallback | |---------|---------|----------| | Vector search | VOYAGE_API_KEY | Local Transformers.js | | Smart re-ranking | ANTHROPIC_API_KEY | Standard FTS |

CLI Reference

muninn status                      # Project state
muninn query "auth"                # Search memory
muninn query "auth" --smart        # LLM-ranked search
muninn check src/auth.ts           # Pre-edit safety check
muninn impact src/types.ts         # Blast radius analysis
muninn fragile                     # List high-risk files
muninn drift                       # Knowledge staleness
muninn ship                        # Pre-deploy checklist
muninn deps src/index.ts           # Dependency graph
muninn deps --cycles               # Find circular deps

Philosophy

  1. Query, don't preload — Load context when needed, not upfront
  2. Safety first — Know what's fragile before touching it
  3. Continuity — Pick up where you left off, always
  4. Accumulate wisdom — Every session makes the next one better
  5. Zero friction — Auto-init, auto-session, auto-track

Contributing

Issues and bug reports welcome. Feature requests: open an issue first.

License

AGPL-3.0-only — free to use, modify, and share. If you run a modified version as a network service, you must release your source. Built by builders, for builders.


Built in collaboration with Claude Code.

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB MCP

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

MCP: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITLAB_AI_CATALOGgitlab-mcp

Rank

83

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_PUBLIC_PROJECTSgitlab-mcp

Rank

80

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_AI_CATALOGrmcp-openapi

Rank

74

Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_AI_CATALOGrmcp-actix-web

Rank

72

An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)

Traction

No public download signal

Freshness

Updated 2d ago

MCP
Machine Appendix

Contract JSON

{
  "contractStatus": "missing",
  "authModes": [],
  "requires": [],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": null,
  "outputSchemaRef": null,
  "dataRegion": null,
  "contractUpdatedAt": null,
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "MCP"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "GITHUB_MCP",
      "generatedAt": "2026-04-17T03:24:58.261Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "MCP",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    },
    {
      "key": "cli",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    }
  ],
  "flattenedTokens": "protocol:MCP|unknown|profile capability:cli|supported|profile"
}

Facts JSON

[
  {
    "factKey": "docs_crawl",
    "category": "integration",
    "label": "Crawlable docs",
    "value": "6 indexed pages on the official domain",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  },
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Ravnltd",
    "href": "https://github.com/ravnltd/muninn",
    "sourceUrl": "https://github.com/ravnltd/muninn",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-02-25T02:57:56.972Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "MCP",
    "href": "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-02-25T02:57:56.972Z",
    "isPublic": true
  },
  {
    "factKey": "traction",
    "category": "adoption",
    "label": "Adoption signal",
    "value": "1 GitHub stars",
    "href": "https://github.com/ravnltd/muninn",
    "sourceUrl": "https://github.com/ravnltd/muninn",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-02-25T02:57:56.972Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "docs_update",
    "title": "Docs refreshed: Sign in to GitHub · GitHub",
    "description": "Fresh crawlable documentation was indexed for the official domain.",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  }
]

Sponsored

Ads related to muninn and adjacent AI workflows.