Skip to main content
ClaudeWave

Pathmark — local-first memory for Codex, Claude Code, Gemini CLI, Cursor and MCP agents, created by B2B AI specialist Sergey Moloman.

MCP ServersRegistry oficial3 estrellas0 forksTypeScriptMITActualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 8/26/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/hacksurvivor/pathmark
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "pathmark": {
      "command": "node",
      "args": ["/path/to/pathmark/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/hacksurvivor/pathmark and follow its README for install instructions.
Casos de uso

Resumen de MCP Servers

# Pathmark

Carry intent across agents without turning stale code facts into hidden memory.

<p align="center">
  <a href="https://www.npmjs.com/package/pathmark"><img src="https://img.shields.io/npm/v/pathmark?label=version" alt="current Pathmark npm version"></a>
  <a href="https://www.npmjs.com/package/pathmark"><img src="https://img.shields.io/npm/dt/pathmark?label=npm%20downloads" alt="npm downloads"></a>
  <a href="https://www.npmjs.com/package/pathmark"><img src="https://img.shields.io/npm/dw/pathmark?label=weekly%20downloads" alt="weekly npm downloads"></a>
  <a href="https://scorecard.dev/viewer/?uri=github.com/hacksurvivor/pathmark"><img src="https://api.scorecard.dev/projects/github.com/hacksurvivor/pathmark/badge" alt="OpenSSF Scorecard"></a>
</p>

## What's New — v0.1.12

Pathmark v0.1.12 turns captured history into proactively useful, auditable intent:

- approved conclusions are recalled before raw session evidence;
- `consolidate_memory` and `pathmark consolidate` turn bounded raw evidence batches into evidence-backed, approval-gated conclusion proposals;
- Codex receives a proactive consolidation nudge when scoped evidence is piling up unsynthesized;
- `chat` / `ask_memory` are conclusion-first, and `pathmark chat "question"` makes the same workflow available from the CLI;
- `pathmark audit` measures recall, stale hits, duplicates, and raw-evidence-to-conclusion coverage without pretending unlabeled retrieval has a precision score;
- signed release metadata and a controlled GitHub OIDC workflow publish validated metadata to the official MCP Registry.

See the [v0.1.12 release notes](docs/releases/v0.1.12.md) or the complete [changelog](CHANGELOG.md). The npm badge above always shows the currently published version.

<p align="center">
  <img src="https://raw.githubusercontent.com/hacksurvivor/pathmark/main/assets/pathmark-hero.png" alt="Pathmark local intent and provenance shared by Codex, Claude Code, opencode, and Gemini CLI" width="100%">
</p>

Pathmark gives Codex, Claude Code, opencode, Gemini CLI, Cursor, and any MCP-capable harness one local intent and provenance layer. Save decisions, constraints, preferences, and approved conclusions once. Use them from the next agent without pasting a recap.

**Code remembers implementation. Pathmark remembers intent.** Repository code, architecture, tests, CI, and intentional agent instructions remain authoritative for how the software works. Raw sessions are searchable evidence, not automatically trusted truth.

Your context stays on disk at `~/.pathmark/memory/memory.jsonl`. You do not need an account, hosted database, API key, or vendor backend to start.

## OpenAI Build Week 2026

Pathmark is a **Developer Tools** submission for OpenAI Build Week 2026. The project existed before the challenge, so the submission is deliberately scoped to the meaningful extension built after the submission period opened on July 13, 2026.

During the eligible period, Codex with GPT-5.6 helped audit and extend Pathmark from a working local memory layer into safer long-running developer infrastructure:

- fixed a reproduced multi-process SQLite index race;
- added revision history, superseding, expiration, retention, diagnostics, backup, compaction, and preview-first hard purge;
- added namespace-scoped reads and writes plus default secret redaction;
- added scoped import/export, optional AES-256-GCM portable exports, local hybrid reranking, and portable harness ingestion;
- hardened CI and npm delivery with required CodeQL and dependency review, immutable Action pins, protected tags, OpenSSF analysis, and SLSA provenance.

The primary Codex session for this work is `019f5fc3-d7e6-7b41-8a30-d161c90b98fb`. The qualifying release range is `v0.1.6` through `v0.1.7`; the pre-challenge baseline is commit `4c0e87dfdbd2ba4c643abd8b887cc228bdb08b73`.

See the [Build Week implementation record](docs/build-week-2026.md) for the before/after boundary, commit evidence, Codex collaboration details, and a fast judge test.

## Why Pathmark

You do not work in one tool. You ask Codex to patch, Claude Code to review, opencode to clean up, and Gemini CLI to challenge the plan. Each tool starts cold unless you carry the context across.

Pathmark gives those tools one place to read and write intent and evidence:

- One local JSONL store across harnesses.
- Standard MCP tools include `remember`, `search_memory`, `recall_memory`, `session_trace`, `consolidate_memory`, `audit_memory`, and conclusion-first `chat` / `ask_memory`.
- Client-side synthesis by default, so your coding agent reads the context and answers.
- Optional Codex CLI, local command, and OpenAI-compatible synthesis modes.
- Plain files you can inspect, back up, delete, or migrate.

Pathmark stays provider-neutral. Codex gets one optional synthesis preset. The core server works with any MCP client that can use local tools.

Pathmark requires Node.js 22.5 or newer.

## Cross-Harness Memory

You switch tools during a coding session:

- Codex fixes the failing test.
- Claude Code reviews the patch.
- opencode cleans the diff.
- Gemini CLI challenges the approach.

Pathmark keeps the notes in one store.

Point each harness at the same store:

```text
Codex       \
Claude Code \
opencode     >  Pathmark MCP  >  ~/.pathmark/memory/memory.jsonl
Gemini CLI  /
Cursor     /
```

Install Pathmark in each harness and point them at the same `PATHMARK_STORE_DIR`. One tool saves raw context with `remember` or proposes a durable conclusion with `create_conclusion`; an approved conclusion and raw evidence can then be recovered with `recall_memory`, `search_memory`, `get_context`, or `ask_memory`.

Pathmark sits below the agents as an intent, evidence, and provenance bus for your coding workflow.

## Tools

Pathmark exposes these MCP tools:

| Tool | Purpose |
| --- | --- |
| `remember` | Save raw searchable evidence. Raw evidence is not treated as durable approved intent. |
| `create_conclusion` | Propose a higher-signal durable conclusion or preference. Approval is required by default before recall. |
| `search_memory` | Search memories and conclusions. |
| `recall_memory` | Transparent recall: returns context plus the exact memory IDs, timestamps, sources, matches, tags, and previews used. Accepts optional `tags`, exact `ids`, and compact `includeRecords: false` output. |
| `session_trace` | Return a bounded chronological audit trail for one session: prompts, exact injected memory IDs, redacted tool inputs/results, and answers. |
| `get_context` | Return compact context for a task or question. |
| `list_conclusions` | List approved saved conclusions. |
| `list_pending_conclusions` | Review bounded, paginated pending conclusion proposals. |
| `approve_conclusion` | Atomically approve a proposal, optionally correcting text/tags and recording the reviewer. |
| `reject_conclusion` | Retain a rejected proposal in the audit trail while permanently excluding it from recall. |
| `get_memory_snapshot` | Generate a bounded USER/PROJECT/AGENT snapshot from approved canonical conclusions. |
| `consolidate_memory` | Review a bounded unsynthesized evidence batch and optionally stage evidence-backed proposals. Nothing is auto-approved. |
| `delete_memory` | Soft-delete a memory or conclusion by id. |
| `update_memory` | Correct a record while preserving prior versions. |
| `supersede_memory` | Replace an outdated record with a linked current record. |
| `purge_memory` | Preview or apply permanent deletion by id, namespace, tags, source, or date. |
| `audit_memory` | Measure capture-to-recall behavior, unused records, recall age, duplicates, stale raw hits, and whether precision labels exist. |
| `doctor_memory` | Report duplicates, deleted/expired records, conclusions, and index health. |
| `compact_memory` | Preview or apply deduplication, retention, and physical cleanup with an automatic backup. |
| `backup_memory` | Create a point-in-time canonical JSONL backup. |
| `export_memory` | Export a scoped mergeable JSONL bundle, optionally encrypted. |
| `ask_memory` | Return relevant context, or synthesize with `PATHMARK_CHAT_COMMAND` if configured. |
| `chat` | Chat-compatible alias for `ask_memory`; returns the retrieved context so the client can show what was used. |
| `get_config` | Show local store configuration. |

## Quick Start

```bash
npm install -g pathmark
```

Then add the MCP server to your client.

Prefer npm for normal installs. To test the current GitHub `main` branch directly:

```bash
npm install -g --install-links=true github:hacksurvivor/pathmark
```

Generate a setup snippet for your harness:

```bash
pathmark setup list
pathmark setup claude-code
pathmark setup opencode --json
pathmark setup gemini-cli
pathmark setup kimi
```

See [docs/compatibility.md](docs/compatibility.md) for Codex, Claude Code, opencode, Gemini CLI, OpenClaw, Hermes Agent, Grok CLI, Kimi, GLM, and generic MCP setups.

### Codex

```bash
codex mcp add pathmark -- pathmark
```

Codex users can also enable auto-capture:

```bash
pathmark codex install --replace-legacy-hooks
```

When you want the visible "what memory did you use?" entry in Codex, Claude Code, Cursor, opencode, Gemini CLI, Grok-compatible MCP hosts, or any other MCP harness, call the `recall_memory` tool before answering. Codex session start injects an approved conclusion snapshot. Before non-trivial prompts, Codex recalls approved conclusions first and uses fresh scoped raw evidence only as a bounded fallback. `recall_memory` remains the portable visible trace across harnesses.

### Claude Code

```bash
claude mcp add pathmark -- pathmark
```

### opencode / Gemini CLI

Use the generated snippets:

```bash
pathmark setup opencode
pathmark setup gemini-cli
```

### Claude Desktop

Add this to your Claude Desktop MCP config:

```json
{
  "mcpServers": {
    "pathmark": {
      "command": "pathmark",
      "env": {
        "PATHMARK_STORE_DIR": "~/.pathmark/memory"
      }
    }
  }
}
```

### Curs
agent-memoryai-agentsclaudeclaude-codecodexcursorgemini-clilocal-firstmcpmcp-servermemoryopencodetypescript

Lo que la gente pregunta sobre pathmark

¿Qué es hacksurvivor/pathmark?

+

hacksurvivor/pathmark es mcp servers para el ecosistema de Claude AI. Pathmark — local-first memory for Codex, Claude Code, Gemini CLI, Cursor and MCP agents, created by B2B AI specialist Sergey Moloman. Tiene 3 estrellas en GitHub y su última actualización registrada es del 2026-08-25.

¿Cómo se instala pathmark?

+

Puedes instalar pathmark clonando el repositorio (https://github.com/hacksurvivor/pathmark) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar hacksurvivor/pathmark?

+

Nuestro agente de seguridad ha analizado hacksurvivor/pathmark y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene hacksurvivor/pathmark?

+

hacksurvivor/pathmark es mantenido por hacksurvivor. La última actividad registrada en GitHub es del 2026-08-25, con 7 issues abiertos.

¿Hay alternativas a pathmark?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega pathmark en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: hacksurvivor/pathmark
[![Featured on ClaudeWave](https://claudewave.com/api/badge/hacksurvivor-pathmark)](https://claudewave.com/repo/hacksurvivor-pathmark)
<a href="https://claudewave.com/repo/hacksurvivor-pathmark"><img src="https://claudewave.com/api/badge/hacksurvivor-pathmark" alt="Featured on ClaudeWave: hacksurvivor/pathmark" width="320" height="64" /></a>

Más MCP Servers

Alternativas a pathmark