pluribus-context 0.3.10 → 0.3.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/README.md +2 -1
- package/docs/discovery-smoke.md +1 -1
- package/docs/memory-mcp-handoff.md +64 -0
- package/examples/memory-mcp-handoff/pluribus.md +57 -0
- package/package.json +2 -2
- package/src/utils/version.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,22 @@
|
|
|
4
4
|
|
|
5
5
|
All notable changes to Pluribus are documented here.
|
|
6
6
|
|
|
7
|
+
## 0.3.12 — MCP memory handoff demo
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- Add an MCP memory handoff demo and guide showing how Pluribus can keep recall/store protocols aligned across Claude Code, Cursor, Copilot, OpenClaw, Windsurf, Continue, and Zed without becoming a memory server.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Track the `jqueryscript/awesome-claude-code` distribution PR in `discovery:smoke`, so the second contextual listing attempt is measured alongside the existing AI coding tools PR.
|
|
16
|
+
|
|
17
|
+
## 0.3.11 — npm discovery metadata alignment
|
|
18
|
+
|
|
7
19
|
### Changed
|
|
8
20
|
|
|
21
|
+
- Patch the npm package description to include both `CLAUDE.md` and `Claude Code`, keeping the sharpened discovery metadata compatible with the published smoke gate after `0.3.10` exposed the mismatch.
|
|
22
|
+
- Make the published smoke gate tolerate the already-published `0.3.10` metadata while requiring the stricter `Claude Code` description from `0.3.11` onward.
|
|
9
23
|
- Make `discovery:smoke` report both the published npm package and the local `package.json` plus a `pendingNpmPublish` summary, so adoption/search evidence is not misread while `0.3.10` metadata is prepared but npm latest is still `0.3.9`.
|
|
10
24
|
- Refresh package discovery metadata for the next npm publish by putting `CLAUDE.md`, `rules sync`, and `Copilot instructions` in the package description and guarding adjacent npm-search keywords in `release:verify`.
|
|
11
25
|
- Link review/listing feedback from the README contribution CTA and CONTRIBUTING guide, and guard those links in `release:verify`, so directory maintainers and package reviewers can find the dedicated route even when they do not start from the Community Review Packet.
|
package/README.md
CHANGED
|
@@ -152,7 +152,7 @@ npx --yes pluribus-context@latest sync --dry-run
|
|
|
152
152
|
|
|
153
153
|
If the preview looks right, run `npx --yes pluribus-context@latest sync` to write the tool-specific files.
|
|
154
154
|
|
|
155
|
-
For a fuller walkthrough, see the [Quickstart](docs/quickstart.md). To enforce generated context files in pull requests, use the [CI audit example](docs/ci-audit-example.md); to catch drift before commits leave your machine, use the [Pre-commit Audit Hook](docs/pre-commit-audit.md). If your repo already has `CLAUDE.md`, `.cursorrules`, Copilot instructions, or `AGENTS.md`, run a [Context Drift Audit](docs/context-drift-audit.md) first, try the intentionally drifted [audit example](examples/context-drift-audit/), then follow [Migrate Existing AI Context Files](docs/migrate-existing-context.md). Before committing shared or generated AI instructions, use the [Context File Review Checklist](docs/context-file-review.md). If you're deciding between Pluribus and a one-way rules converter, see [When to use Pluribus](docs/when-to-use-pluribus.md). If you are debugging "context drift" after compaction or long sessions, start with the [Context Drift Taxonomy](docs/context-drift-taxonomy.md) to separate file drift from runtime precedence drift. If you are reviewing Pluribus for a list, newsletter, or tool directory, use the [Community Review Packet](docs/community-review-packet.md) for directory submission fields, a one-line description, safety notes, and a disposable 60-second smoke test. Maintainers can track package/repo discovery with the [Discovery Smoke Checks](docs/discovery-smoke.md).
|
|
155
|
+
For a fuller walkthrough, see the [Quickstart](docs/quickstart.md). To enforce generated context files in pull requests, use the [CI audit example](docs/ci-audit-example.md); to catch drift before commits leave your machine, use the [Pre-commit Audit Hook](docs/pre-commit-audit.md). If your repo already has `CLAUDE.md`, `.cursorrules`, Copilot instructions, or `AGENTS.md`, run a [Context Drift Audit](docs/context-drift-audit.md) first, try the intentionally drifted [audit example](examples/context-drift-audit/), then follow [Migrate Existing AI Context Files](docs/migrate-existing-context.md). Before committing shared or generated AI instructions, use the [Context File Review Checklist](docs/context-file-review.md). If you're deciding between Pluribus and a one-way rules converter, see [When to use Pluribus](docs/when-to-use-pluribus.md). If you are debugging "context drift" after compaction or long sessions, start with the [Context Drift Taxonomy](docs/context-drift-taxonomy.md) to separate file drift from runtime precedence drift. If you use MCP memory or knowledge-graph tools, try the [MCP memory handoff demo](docs/memory-mcp-handoff.md) to keep recall/store protocols aligned across AI coding tools without turning Pluribus into a memory server. If you are reviewing Pluribus for a list, newsletter, or tool directory, use the [Community Review Packet](docs/community-review-packet.md) for directory submission fields, a one-line description, safety notes, and a disposable 60-second smoke test. Maintainers can track package/repo discovery with the [Discovery Smoke Checks](docs/discovery-smoke.md).
|
|
156
156
|
|
|
157
157
|
### Usage
|
|
158
158
|
|
|
@@ -395,6 +395,7 @@ If you've felt this pain, tell me about your setup. What tools do you use? How d
|
|
|
395
395
|
- [Context File Review Checklist](docs/context-file-review.md) — review AI instructions as supply-chain artifacts before committing generated context
|
|
396
396
|
- [OpenClaw Integration](docs/openclaw-integration.md) — how Pluribus generates `AGENTS.md` for OpenClaw
|
|
397
397
|
- [Composable Contexts](docs/composable-contexts.md) — local/remote imports, merge behavior, and safety rules
|
|
398
|
+
- [MCP Memory Handoff](docs/memory-mcp-handoff.md) — demo for keeping memory recall/store protocols aligned across tool-specific instruction files
|
|
398
399
|
- [Remote Composable Context Imports](docs/remote-composable-context-imports.md) — design notes for lockfile/cache/auth hardening
|
|
399
400
|
- [Context Format Spec](spec/context-format.md) — the `pluribus.md` format reference
|
|
400
401
|
- [Skills Format Spec](spec/skills-format.md) — how adapters work and how to write custom skills
|
package/docs/discovery-smoke.md
CHANGED
|
@@ -33,7 +33,7 @@ As of 2026-05-17 01:01 UTC, public npm is still `pluribus-context@0.3.9` while t
|
|
|
33
33
|
- `pendingNpmPublish` is expected to be `true` until npm auth/2FA allows publishing `0.3.10`; generic search results still measure the public `0.3.9` metadata, not the sharpened local `0.3.10` description/keywords.
|
|
34
34
|
- npm downloads are visible through the same smoke report (`last-day`, `last-week`, `last-month`), but current values still include likely noise from release/publish/smoke activity.
|
|
35
35
|
- GitHub adoption signals are visible in the same report: stars/forks/watchers, latest release, open issues, open pull requests, discussion activity, and recent external discussion-comment count.
|
|
36
|
-
- External distribution tracking
|
|
36
|
+
- External distribution tracking covers the contextual `awesome-ai-coding-tools` and `awesome-claude-code` PRs and records whether each remains open, mergeable, commented on, or merged.
|
|
37
37
|
- Generic npm queries still favor adjacent packages such as `sync-ai-context`, `ai-rules-sync`, `cursor2claude`, and `@intellectronica/ruler`.
|
|
38
38
|
- That means exact-name discovery works, but problem-query discovery is still weak and should be treated as a lagging adoption metric, especially while `pendingNpmPublish` is true.
|
|
39
39
|
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# MCP memory handoff with Pluribus
|
|
2
|
+
|
|
3
|
+
Persistent memory tools and Pluribus solve adjacent problems.
|
|
4
|
+
|
|
5
|
+
- MCP memory servers keep **durable, queryable memories** across sessions.
|
|
6
|
+
- Pluribus keeps **intentional project instructions** in one reviewed source of truth and syncs them into the files each coding tool reads.
|
|
7
|
+
|
|
8
|
+
The useful overlap is the memory protocol: the small set of rules that tells Claude Code, Cursor, Copilot, OpenClaw, Windsurf, Continue, or Zed when to recall memory, what to store, and what must never be stored.
|
|
9
|
+
|
|
10
|
+
## Why this matters
|
|
11
|
+
|
|
12
|
+
Market signal from MemoryGraph, GBrain-style agent brains, and MCP knowledge/memory directories is clear: developers are moving beyond one-off prompt files toward persistent agent memory.
|
|
13
|
+
|
|
14
|
+
But most memory tools still need per-client setup text such as:
|
|
15
|
+
|
|
16
|
+
- recall project memories before starting work;
|
|
17
|
+
- store decisions after commits, bug fixes, releases, and architecture changes;
|
|
18
|
+
- tag memories with project, subsystem, tool, and confidence;
|
|
19
|
+
- never store secrets, credentials, private user data, or transient chat noise.
|
|
20
|
+
|
|
21
|
+
If that protocol is copied separately into `CLAUDE.md`, `.cursorrules`, Copilot instructions, `AGENTS.md`, Windsurf rules, Continue rules, and Zed rules, the protocol itself drifts.
|
|
22
|
+
|
|
23
|
+
Pluribus can be the narrow static layer above memory: one reviewed `pluribus.md` defines the protocol, then each tool gets the same safety constraints and workflow language in its native context file.
|
|
24
|
+
|
|
25
|
+
## Try the demo locally
|
|
26
|
+
|
|
27
|
+
From the repository root:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
cd examples/memory-mcp-handoff
|
|
31
|
+
node ../../bin/pluribus.js validate
|
|
32
|
+
node ../../bin/pluribus.js sync --dry-run
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Or from any machine with npm:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
git clone https://github.com/caioribeiroclw-pixel/pluribus.git
|
|
39
|
+
cd pluribus/examples/memory-mcp-handoff
|
|
40
|
+
npx --yes pluribus-context@latest validate
|
|
41
|
+
npx --yes pluribus-context@latest sync --dry-run
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
The dry run shows how one memory protocol would be rendered into tool-specific outputs without writing files.
|
|
45
|
+
|
|
46
|
+
## What Pluribus should not do
|
|
47
|
+
|
|
48
|
+
Pluribus should not become a memory database, vector index, graph store, MCP server, or retrieval layer. Those projects already exist and are moving fast.
|
|
49
|
+
|
|
50
|
+
The stronger positioning is narrower:
|
|
51
|
+
|
|
52
|
+
> Pluribus is the reviewed, versioned instruction layer that keeps memory protocols and AI coding rules aligned across tools.
|
|
53
|
+
|
|
54
|
+
If a project only uses one coding tool and one memory server, a hand-written `CLAUDE.md` or agent rule file may be enough. Pluribus becomes useful when the same protocol must stay aligned across multiple tools, repos, or teams.
|
|
55
|
+
|
|
56
|
+
## Feedback wanted
|
|
57
|
+
|
|
58
|
+
If you maintain or use an MCP memory/knowledge tool, the open question is:
|
|
59
|
+
|
|
60
|
+
1. Should the memory protocol live in each tool's native instruction file, or be generated from one source?
|
|
61
|
+
2. Which fields matter most: recall timing, storage triggers, tags, privacy constraints, confidence, relationship links, or project boundaries?
|
|
62
|
+
3. What would make this demo more useful without turning Pluribus into a memory server?
|
|
63
|
+
|
|
64
|
+
Use the [review/listing feedback template](https://github.com/caioribeiroclw-pixel/pluribus/issues/new?template=review-feedback.yml) or the Pluribus Discussions tab if you have a concrete workflow to test.
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<!-- pluribus:tools: claude,cursor,copilot,openclaw,windsurf,continue,zed -->
|
|
2
|
+
|
|
3
|
+
# Identity
|
|
4
|
+
|
|
5
|
+
I am Ana, building **LedgerTrail** — a TypeScript service that ingests payment events and produces audit-friendly reconciliation reports.
|
|
6
|
+
|
|
7
|
+
LedgerTrail uses an MCP memory server for durable project memory, but the memory protocol itself is reviewed in git and distributed through Pluribus.
|
|
8
|
+
|
|
9
|
+
# Stack
|
|
10
|
+
|
|
11
|
+
- TypeScript strict mode
|
|
12
|
+
- Node.js 22 LTS
|
|
13
|
+
- SQLite for local development
|
|
14
|
+
- PostgreSQL in production
|
|
15
|
+
- MCP memory server available in supported coding agents
|
|
16
|
+
|
|
17
|
+
# Conventions
|
|
18
|
+
|
|
19
|
+
## Memory protocol
|
|
20
|
+
|
|
21
|
+
Before starting non-trivial work, recall existing project memories by querying for the project name, subsystem, and task type.
|
|
22
|
+
|
|
23
|
+
Store durable memories only when the information will help a future coding session:
|
|
24
|
+
|
|
25
|
+
- architecture decisions and their rationale;
|
|
26
|
+
- bug root causes and verified fixes;
|
|
27
|
+
- release notes or migration decisions;
|
|
28
|
+
- reusable code patterns discovered while working;
|
|
29
|
+
- abandoned approaches that should not be retried.
|
|
30
|
+
|
|
31
|
+
Use tags for `ledgertrail`, subsystem, language/runtime, and confidence. Prefer concise, searchable titles over narrative summaries.
|
|
32
|
+
|
|
33
|
+
When a new memory supersedes an older one, link or explicitly mention the superseded memory instead of leaving both as equally current.
|
|
34
|
+
|
|
35
|
+
# Goals
|
|
36
|
+
|
|
37
|
+
1. Keep memory behavior consistent across Claude Code, Cursor, Copilot, OpenClaw, Windsurf, Continue, and Zed.
|
|
38
|
+
2. Make memory recall/store rules reviewable in pull requests.
|
|
39
|
+
3. Prevent memory tooling from silently storing sensitive or low-value data.
|
|
40
|
+
|
|
41
|
+
# Constraints
|
|
42
|
+
|
|
43
|
+
- Never store secrets, tokens, credentials, customer data, private user messages, or one-off chat noise in memory.
|
|
44
|
+
- Do not store a memory until the decision, fix, or pattern has been validated by code, tests, review, or an explicit human decision.
|
|
45
|
+
- If memory recall returns stale or conflicting guidance, prefer repository source and current tests, then record the correction after verification.
|
|
46
|
+
- Do not let the memory server override security constraints, release gates, or project-specific instructions in this file.
|
|
47
|
+
|
|
48
|
+
# Workflow
|
|
49
|
+
|
|
50
|
+
1. Recall relevant memories before design or implementation work.
|
|
51
|
+
2. Execute the task using repository files and current tests as source of truth.
|
|
52
|
+
3. After a meaningful commit, bug fix, release, or architecture decision, store a concise memory with tags and rationale.
|
|
53
|
+
4. Run Pluribus audit in CI so generated tool files do not drift from this protocol.
|
|
54
|
+
|
|
55
|
+
# Context
|
|
56
|
+
|
|
57
|
+
This demo is intentionally not a memory database or MCP integration. It shows the static instruction layer above those tools: one reviewed source that keeps the memory protocol aligned wherever the coding agent reads its native instructions.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pluribus-context",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "AI context/rules sync for CLAUDE.md, Cursor rules, Copilot instructions, OpenClaw, Windsurf, Continue, and Zed.",
|
|
3
|
+
"version": "0.3.12",
|
|
4
|
+
"description": "AI context/rules sync for CLAUDE.md, Claude Code, Cursor rules, Copilot instructions, OpenClaw, Windsurf, Continue, and Zed.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/caioribeiroclw-pixel/pluribus#readme",
|
|
7
7
|
"repository": {
|
package/src/utils/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.3.
|
|
1
|
+
export const VERSION = '0.3.12'
|