pluribus-context 0.3.17 → 0.3.18
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 +7 -0
- package/README.md +4 -4
- package/package.json +10 -3
- package/src/utils/version.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
All notable changes to Pluribus are documented here.
|
|
6
6
|
|
|
7
|
+
## 0.3.18 — fidelity audit discovery positioning
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Reposition npm and README copy around AI-agent context fidelity audit and semantic drift detection, so package/directory discovery surfaces see the current wedge before generic context sync.
|
|
12
|
+
- Track npm/GitHub discovery queries for `AI agent context fidelity audit` and `semantic drift agent context`, making the new positioning falsifiable instead of subjective.
|
|
13
|
+
|
|
7
14
|
## 0.3.17 — native discovery fidelity evidence
|
|
8
15
|
|
|
9
16
|
### Changed
|
package/README.md
CHANGED
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
[](https://x.com/RibeiroCaioCLW)
|
|
7
7
|
[](LICENSE)
|
|
8
8
|
|
|
9
|
-
>
|
|
9
|
+
> Detect where AI-agent context loses fidelity across tools — then sync the parts that can be safely shared.
|
|
10
10
|
|
|
11
|
-
Pluribus (`pluribus-context` on npm, `pluribus` on the command line) is an AI context sync CLI for teams and projects that use Claude Code, Cursor, GitHub Copilot, OpenClaw, Windsurf, Continue, or Zed.
|
|
11
|
+
Pluribus (`pluribus-context` on npm, `pluribus` on the command line) is an AI context sync CLI with AI-agent context fidelity audit for teams and projects that use Claude Code, Cursor, GitHub Copilot, OpenClaw, Windsurf, Continue, or Zed.
|
|
12
12
|
|
|
13
|
-
It keeps project instructions, conventions, constraints, and team context in one versioned source of truth
|
|
13
|
+
It shows where instructions keep their semantics, where they are downgraded to a generic fallback, and where manual activation or native discovery matters — then keeps project instructions, conventions, constraints, and team context in one versioned source of truth.
|
|
14
14
|
|
|
15
15
|
It is **not** a persistent memory layer, retrieval system, agent orchestrator, or agent-merging framework. Think `CLAUDE.md`, `.cursorrules`, `copilot-instructions.md`, `AGENTS.md` — one intentional context, multiple generated outputs.
|
|
16
16
|
|
|
17
|
-
**Reviewer shortcut:** evaluating Pluribus for a list, newsletter, package roundup, or tool directory? Use the [Community Review Packet](docs/community-review-packet.md) for copy-paste directory submission fields, safety/removability notes, feedback links, and a disposable 60-second smoke test.
|
|
17
|
+
**Reviewer shortcut:** evaluating Pluribus for a list, newsletter, package roundup, or tool directory? Use the [Community Review Packet](docs/community-review-packet.md) for copy-paste directory submission fields, safety/removability notes, feedback links, and a disposable 60-second smoke test. If you only run one command, try `npx --yes pluribus-context@latest audit --json --fidelity-report` to see native discovery surfaces, generic fallbacks, manual activation requirements, and semantic differences.
|
|
18
18
|
|
|
19
19
|
---
|
|
20
20
|
|
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, Claude Code, Cursor rules, Copilot instructions, OpenClaw, Windsurf, Continue, and Zed.",
|
|
3
|
+
"version": "0.3.18",
|
|
4
|
+
"description": "AI context/rules sync and fidelity audit CLI for CLAUDE.md, Claude Code, Cursor rules, Copilot instructions, OpenClaw, Windsurf, Continue, and Zed semantic drift.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/caioribeiroclw-pixel/pluribus#readme",
|
|
7
7
|
"repository": {
|
|
@@ -70,7 +70,14 @@
|
|
|
70
70
|
"windsurf",
|
|
71
71
|
"windsurf-rules",
|
|
72
72
|
"zed",
|
|
73
|
-
"zed-rules"
|
|
73
|
+
"zed-rules",
|
|
74
|
+
"fidelity-audit",
|
|
75
|
+
"context-fidelity",
|
|
76
|
+
"semantic-drift",
|
|
77
|
+
"semantic-loss",
|
|
78
|
+
"native-discovery",
|
|
79
|
+
"agent-context-audit",
|
|
80
|
+
"agent-memory"
|
|
74
81
|
],
|
|
75
82
|
"author": "Caio Ribeiro",
|
|
76
83
|
"license": "MIT",
|
package/src/utils/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.3.
|
|
1
|
+
export const VERSION = '0.3.18'
|