oxHive

Mynd — AI skill for Claude Code

AI community

Persistent memory MCP server for AI coding agents.

How to install Mynd

This entry records only its repository, not the path inside it, so there is no exact command to give. Open oxHive/mynd and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Mynd does

Persistent memory MCP server for AI coding agents. Injects project context at session start, stores architectural decisions, and recalls preferences works with Claude Code, Cursor, Windsurf, OpenCode, Kimi, and Codex.

Alternatives in AI

  • Glade MCP — Connect any MCP-compatible AI client (Claude Code, Cursor, Windsurf) to Unity or Godot 201 ★
  • Awareness Local — Local-first AI agent memory — one command, works offline, no account needed 199 ★
  • AI Toolkit — Professional-grade AI coding toolkit: 94 skills, 44 agents, multi-platform (Claude, Cursor, Windsurf, Copilot 167 ★

README

Mynd

[![Crates.io](https://img.shields.io/crates/v/oxmynd.svg)](https://crates.io/crates/oxmynd) [![Crates.io Downloads](https://img.shields.io/crates/d/oxmynd.svg)](https://crates.io/crates/oxmynd) [![CI](https://github.com/oxhive/mynd/actions/workflows/pull-request.yml/badge.svg?event=pull_request)](https://github.com/oxhive/mynd/actions/workflows/pull-request.yml) [![codecov](https://codecov.io/gh/oxhive/mynd/branch/main/graph/badge.svg)](https://codecov.io/gh/oxhive/mynd) [![License: AGPL v3](https://img.shields.io/badge/License-AGPL_v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0) [![GitHub release](https://img.shields.io/github/v/release/oxhive/mynd)](https://github.com/oxhive/mynd/releases)

🚧 **Under active development.** APIs and config formats may change between releases.

Persistent memory for AI coding agents. Mynd is a local MCP server that gives Claude Code (and other AI agents) access to a [libsql](https://github.com/tursodatabase/libsql)-backed memory store, keeping context, preferences, and project knowledge alive across sessions.

How it works

  1. You register Mynd with your AI client once: mynd mcp install claude.
  2. Your AI client spawns Mynd as a subprocess. No server to start or keep running.
  3. At the start of every session, Claude automatically recalls the memories configured for your project.
  4. You ask Claude to store anything worth keeping. It never auto-stores.

The session start flow in detail

When you open a new Claude Code session in a project that has `.mynd.toml`, the primary mechanism is the SessionStart hook that `mynd init` installs in `.claude/settings.json`:

  1. Claude Code runs mynd session-start before the session begins.
  2. Mynd reads .mynd.toml (and .mynd.local.toml if present), resolves each recalls entry against the SQLite database (by exact title, then FTS), and prints the results inside a block, staying within max_tokens.
  3. Claude Code injects that output into the session c