Pathmark — local-first memory for Codex, Claude Code, Gemini CLI, Cursor and MCP agents, created by B2B AI specialist Sergey Moloman.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
git clone https://github.com/hacksurvivor/pathmark{
"mcpServers": {
"pathmark": {
"command": "node",
"args": ["/path/to/pathmark/dist/index.js"]
}
}
}MCP Servers overview
# 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"
}
}
}
}
```
### CursWhat people ask about pathmark
What is hacksurvivor/pathmark?
+
hacksurvivor/pathmark is mcp servers for the Claude AI ecosystem. Pathmark — local-first memory for Codex, Claude Code, Gemini CLI, Cursor and MCP agents, created by B2B AI specialist Sergey Moloman. It has 3 GitHub stars and its last recorded update is dated 2026-08-25.
How do I install pathmark?
+
You can install pathmark by cloning the repository (https://github.com/hacksurvivor/pathmark) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is hacksurvivor/pathmark safe to use?
+
Our security agent has analyzed hacksurvivor/pathmark and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains hacksurvivor/pathmark?
+
hacksurvivor/pathmark is maintained by hacksurvivor. The last recorded GitHub activity is dated 2026-08-25, with 7 open issues.
Are there alternatives to pathmark?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy pathmark to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](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>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!