Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "memesh",
"source": "./",
"description": "MeMesh \u2014 agentic memory for coding agents. Captured from the agent's real work via hooks, recalled when it acts. One SQLite file, zero cloud required.",
"version": "4.8.4",
"version": "4.8.5",
"author": {
"name": "PCIRCLE AI"
},
Expand Down
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": {
"name": "PCIRCLE AI"
},
"version": "4.8.4",
"version": "4.8.5",
"mcpServers": "./.claude-plugin/mcp.json",
"homepage": "https://github.com/PCIRCLE-AI/memesh",
"repository": "https://github.com/PCIRCLE-AI/memesh",
Expand Down
2 changes: 1 addition & 1 deletion .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "memesh",
"description": "MeMesh — agentic memory for coding agents.",
"version": "4.8.4",
"version": "4.8.5",
"mcpServers": "./.codex-plugin/mcp.json"
}
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to MeMesh are documented here.

## [Unreleased]

## [4.8.4] — 2026-09-04
## [4.8.5] — 2026-09-05

### Added

Expand Down Expand Up @@ -529,6 +529,21 @@ All notable changes to MeMesh are documented here.
independent `readUpdateCheckCache()` path formula is untouched by this —
it only reads, and the filename scheme did not change.

- **The Claude channel's own instructions told the model it did not need to
acknowledge a message it received.** `npm run qa:live-journey -- --host
claude` requires the session's own model to call `intake` on an incoming
envelope as model-visible proof it was seen; two runs failed identically,
because `CHANNEL_INSTRUCTIONS` literally said "no ... acknowledgement of
model receipt" is needed, and the model followed that correctly. The
instructions now say to call `message` with `action: "intake"` on a full
envelope. This does not fix `--host claude` itself — two further runs
(one with `--setting-sources ""` removed as a diagnostic) still failed the
same way, which appears to be how the currently installed Claude Code
CLI's "Channels (experimental)" feature surfaces notifications to the
model rather than anything in this repository. `--host claude` remains a
known-non-functional `qa:live-journey` path; `--host codex` is what
produced this release's live-journey receipt.

## [4.8.3] — 2026-08-31

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion CODEMAP.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CODEMAP

**Version**: 4.8.4
**Version**: 4.8.5

A navigation map for the codebase: *"I want to change X — which file?"* For the
design rationale behind these modules see [`docs/ARCHITECTURE.md`](docs/ARCHITECTURE.md);
Expand Down
4 changes: 2 additions & 2 deletions dist/skills-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
{
"path": ".claude-plugin/plugin.json",
"sha256": "2b425a0b6ca6c6a2a549d273616ee0aa418a485960aa5f05ba44a38a6d49e9b5",
"sha256": "e44629d387537f864f2bb637b752078d4701dacbc1ef893b41f60e812c98b2b4",
"bytes": 572
},
{
Expand All @@ -18,7 +18,7 @@
},
{
"path": ".codex-plugin/plugin.json",
"sha256": "1ce4c7b5a8f04cfe1dde55adb6b1af580141de3a73eca0ee5a7bbb066d39b725",
"sha256": "b6c3d5f56425f81c131c52f708f6ef128244d6ccd37ac7361c8c5db3f1bc897d",
"bytes": 154
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/ARCHITECTURE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MeMesh Plugin Architecture

**Version**: 4.8.4
**Version**: 4.8.5

> Looking for "which file do I change for X?" — see [CODEMAP.md](../CODEMAP.md).

Expand Down
2 changes: 1 addition & 1 deletion docs/api/API_REFERENCE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# MeMesh Plugin -- API Reference

**Protocol**: Model Context Protocol (MCP) over stdio
**Version**: 4.8.4
**Version**: 4.8.5
**Compatibility**: Works with Claude Code plugins, Claude Managed Agents (via MCP connector), and any MCP-compatible client.

**Native Integrations**: Beyond MCP, MeMesh integrates as a native memory provider for Hermes Agent (Python `MemoryProvider` plugin) and OpenClaw (TypeScript memory-capability plugin) — same tier as their built-in backends, not HTTP bridges. See [docs/platforms/](../platforms/) for platform-specific guides.
Expand Down
2 changes: 1 addition & 1 deletion herdr-plugin.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# is the honest floor rather than a copied one.
id = "memesh"
name = "MeMesh"
version = "4.8.4"
version = "4.8.5"
min_herdr_version = "0.7.0"
description = "Local SQLite memory shared across coding agents — decisions, lessons, and why the code looks the way it does."
platforms = ["linux", "macos", "windows"]
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pcircle/memesh",
"version": "4.8.4",
"version": "4.8.5",
"description": "MeMesh — agentic memory for coding agents. Captured from the agent's real work via hooks, recalled when it acts. One SQLite file, zero cloud required.",
"main": "dist/index.js",
"type": "module",
Expand Down
Loading