pluribus-context 0.3.7 → 0.3.9
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 +17 -0
- package/README.md +1 -1
- package/docs/community-review-packet.md +1 -1
- package/examples/context-drift-audit/.cursorrules +1 -1
- package/examples/context-drift-audit/.github/copilot-instructions.md +1 -1
- package/examples/context-drift-audit/CLAUDE.md +1 -1
- package/examples/context-drift-audit/README.md +4 -4
- package/package.json +7 -1
- package/src/utils/version.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,23 @@
|
|
|
4
4
|
|
|
5
5
|
All notable changes to Pluribus are documented here.
|
|
6
6
|
|
|
7
|
+
## 0.3.9 — npm discovery metadata refresh
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- Add exact npm discovery keywords for adjacent searches such as `context-sync`, `claude-md`, `ai-rules`, `rules-sync`, `context-files`, and `ai-agents`.
|
|
12
|
+
- Add a release-verification guard for the community review packet so directory submission fields, safe first command, privacy guardrails, uninstall/network copy, and the <=280-character blurb cannot silently drift before distribution pushes.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Refresh the context-drift audit example with current published-package commands and generated fixtures so reviewers can reproduce the intended one-file drift signal from `pluribus-context@latest`.
|
|
17
|
+
|
|
18
|
+
## 0.3.8 — package-page directory field visibility
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- Make the README/npm package page explicitly mention the community review packet's directory submission fields, so curators can find the structured listing copy without opening the packet first.
|
|
23
|
+
|
|
7
24
|
## 0.3.7 — directory submission packet refresh
|
|
8
25
|
|
|
9
26
|
### Added
|
package/README.md
CHANGED
|
@@ -148,7 +148,7 @@ npx --yes pluribus-context@latest sync --dry-run
|
|
|
148
148
|
|
|
149
149
|
If the preview looks right, run `npx --yes pluribus-context@latest sync` to write the tool-specific files.
|
|
150
150
|
|
|
151
|
-
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 a one-line description, safety notes, and a disposable 60-second smoke test.
|
|
151
|
+
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.
|
|
152
152
|
|
|
153
153
|
### Usage
|
|
154
154
|
|
|
@@ -79,7 +79,7 @@ Expected result:
|
|
|
79
79
|
|
|
80
80
|
## Feedback requested
|
|
81
81
|
|
|
82
|
-
If you try it on a real repo, please
|
|
82
|
+
If you try it on a real repo, please do not paste secrets, private source code, credentials, customer data, or internal instructions that should not be public. Avoid pasting private context or full audit JSON from non-public projects. The most useful report is:
|
|
83
83
|
|
|
84
84
|
1. OS/shell and exact Pluribus version.
|
|
85
85
|
2. Which context files already existed (`CLAUDE.md`, `.cursorrules`, Copilot instructions, `AGENTS.md`, etc.).
|
|
@@ -4,10 +4,10 @@ This fixture shows the safest first Pluribus workflow for an existing repo: audi
|
|
|
4
4
|
|
|
5
5
|
`pluribus.md` is the source of truth. `CLAUDE.md` is intentionally drifted: it says `Node.js 20 LTS` while `pluribus.md` says `Node.js 22 LTS`. Cursor and Copilot outputs are current.
|
|
6
6
|
|
|
7
|
-
Run from this directory:
|
|
7
|
+
Run from this directory with the published package:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npx --yes
|
|
10
|
+
npx --yes pluribus-context@latest audit --strict
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
Expected result:
|
|
@@ -21,11 +21,11 @@ Expected result:
|
|
|
21
21
|
Preview the fix without writing files:
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
npx --yes
|
|
24
|
+
npx --yes pluribus-context@latest sync --dry-run
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
Then apply it when the diff is acceptable:
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
npx --yes
|
|
30
|
+
npx --yes pluribus-context@latest sync
|
|
31
31
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pluribus-context",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.9",
|
|
4
4
|
"description": "Sync intentional AI context and rules across Claude Code, Cursor, Copilot, OpenClaw, Windsurf, Continue, and Zed.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/caioribeiroclw-pixel/pluribus#readme",
|
|
@@ -37,17 +37,22 @@
|
|
|
37
37
|
"agents",
|
|
38
38
|
"agents-md",
|
|
39
39
|
"ai",
|
|
40
|
+
"ai-agents",
|
|
40
41
|
"ai-coding-agents",
|
|
41
42
|
"ai-context",
|
|
43
|
+
"ai-rules",
|
|
42
44
|
"ai-tools",
|
|
43
45
|
"aider",
|
|
44
46
|
"claude",
|
|
45
47
|
"claude-code",
|
|
48
|
+
"claude-md",
|
|
46
49
|
"cli",
|
|
47
50
|
"codex",
|
|
48
51
|
"context",
|
|
49
52
|
"context-drift",
|
|
50
53
|
"context-engineering",
|
|
54
|
+
"context-files",
|
|
55
|
+
"context-sync",
|
|
51
56
|
"continue",
|
|
52
57
|
"copilot",
|
|
53
58
|
"cursor",
|
|
@@ -56,6 +61,7 @@
|
|
|
56
61
|
"drift-detection",
|
|
57
62
|
"openclaw",
|
|
58
63
|
"rules",
|
|
64
|
+
"rules-sync",
|
|
59
65
|
"windsurf",
|
|
60
66
|
"zed"
|
|
61
67
|
],
|
package/src/utils/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.3.
|
|
1
|
+
export const VERSION = '0.3.9'
|