pluribus-context 0.3.4 → 0.3.6
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 +13 -0
- package/README.md +16 -3
- package/docs/community-review-packet.md +72 -0
- package/docs/quickstart.md +14 -0
- package/package.json +1 -1
- package/src/utils/version.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,19 @@
|
|
|
4
4
|
|
|
5
5
|
All notable changes to Pluribus are documented here.
|
|
6
6
|
|
|
7
|
+
## 0.3.6 — community review packet package-page refresh
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- Add a community review packet with listing copy, safety/removability notes, and a disposable 60-second smoke test for reviewers, curators, and small distribution opportunities.
|
|
12
|
+
|
|
13
|
+
## 0.3.5 — trust copy package-page refresh
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Clarify installation, uninstallation, and network behavior in the README and quickstart so first-run reviewers can verify the CLI without guessing what persists or when remote imports make network requests.
|
|
18
|
+
- Add release-gate checks for uninstall/network transparency copy before future docs or package-page updates.
|
|
19
|
+
|
|
7
20
|
## 0.3.4 — npm package page README refresh prep
|
|
8
21
|
|
|
9
22
|
### Changed
|
package/README.md
CHANGED
|
@@ -105,19 +105,32 @@ Pluribus is intentionally narrow about filesystem changes:
|
|
|
105
105
|
|
|
106
106
|
When in doubt, run `npx --yes pluribus-context@latest audit` or `npx --yes pluribus-context@latest sync --dry-run` first.
|
|
107
107
|
|
|
108
|
-
### Install
|
|
108
|
+
### Install, uninstall, and network behavior
|
|
109
109
|
|
|
110
110
|
```bash
|
|
111
111
|
# Install globally if you prefer a persistent `pluribus` command
|
|
112
112
|
npm install -g pluribus-context@latest
|
|
113
113
|
pluribus --help
|
|
114
114
|
|
|
115
|
-
#
|
|
115
|
+
# Remove the global CLI later
|
|
116
|
+
npm uninstall -g pluribus-context
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
For local development:
|
|
120
|
+
|
|
121
|
+
```bash
|
|
116
122
|
git clone https://github.com/caioribeiroclw-pixel/pluribus.git
|
|
117
123
|
cd pluribus
|
|
118
124
|
npm link
|
|
125
|
+
|
|
126
|
+
# Remove the local global link later
|
|
127
|
+
npm unlink -g pluribus-context
|
|
119
128
|
```
|
|
120
129
|
|
|
130
|
+
One-off `npx --yes pluribus-context@latest ...` commands install into npm's normal temporary cache and do not create a persistent global `pluribus` command.
|
|
131
|
+
|
|
132
|
+
Pluribus does **not** make network requests during normal `audit`, `validate`, `sync`, or `sync --dry-run` runs. Network access is opt-in for remote imports only when you explicitly pass `--update-imports`; those fetches are limited to `github:`/HTTPS imports, then pinned in `pluribus.lock.json` and cached locally for deterministic offline syncs. Private GitHub imports may use `GH_TOKEN`/`GITHUB_TOKEN` or `gh auth token` during that explicit refresh, but tokens are never written to the lockfile or cache.
|
|
133
|
+
|
|
121
134
|
### 60-second smoke test
|
|
122
135
|
|
|
123
136
|
Want to see exactly what gets generated before adding it to a real project?
|
|
@@ -135,7 +148,7 @@ npx --yes pluribus-context@latest sync --dry-run
|
|
|
135
148
|
|
|
136
149
|
If the preview looks right, run `npx --yes pluribus-context@latest sync` to write the tool-specific files.
|
|
137
150
|
|
|
138
|
-
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.
|
|
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.
|
|
139
152
|
|
|
140
153
|
### Usage
|
|
141
154
|
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# Community review packet
|
|
2
|
+
|
|
3
|
+
Use this when reviewing Pluribus for a list, newsletter, package roundup, or tool directory. It is written to be copy-pasteable without requiring private project context.
|
|
4
|
+
|
|
5
|
+
## One-line description
|
|
6
|
+
|
|
7
|
+
Pluribus keeps intentional AI coding context in one `pluribus.md` source of truth, then syncs or audits the tool-specific files used by Claude Code, Cursor, Copilot, OpenClaw, Windsurf, Continue, and Zed.
|
|
8
|
+
|
|
9
|
+
## Short listing copy
|
|
10
|
+
|
|
11
|
+
Pluribus is an open-source CLI for teams and solo developers who use multiple AI coding tools. It treats project instructions, conventions, constraints, and shared team context as versioned Markdown, then generates each tool's expected context file (`CLAUDE.md`, `.cursorrules`, Copilot instructions, `AGENTS.md`, Windsurf/Continue rules, and Zed rules). The safest first command is a read-only audit:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx --yes pluribus-context@latest audit
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Why it may be useful
|
|
18
|
+
|
|
19
|
+
- Reduces copy-paste drift between AI tool instruction files.
|
|
20
|
+
- Lets users preview generated files with `sync --dry-run` before writing anything.
|
|
21
|
+
- Supports composable local context and explicit remote imports for shared team/org guidance.
|
|
22
|
+
- Provides CI/pre-commit audit paths so generated context drift is visible in code review.
|
|
23
|
+
|
|
24
|
+
## Safety and removability
|
|
25
|
+
|
|
26
|
+
- `audit`, `validate`, and `sync --dry-run` are read-only.
|
|
27
|
+
- `init` writes only `pluribus.md` and refuses to overwrite an existing file.
|
|
28
|
+
- `sync` writes only generated AI context files for the selected tools.
|
|
29
|
+
- Normal `audit`, `validate`, `sync`, and `sync --dry-run` runs do not make network requests.
|
|
30
|
+
- Remote imports fetch only when the user explicitly passes `--update-imports`; fetched content is pinned in `pluribus.lock.json` and cached under `.pluribus/cache/remote/`.
|
|
31
|
+
- A global install can be removed with `npm uninstall -g pluribus-context`; one-off `npx --yes pluribus-context@latest ...` does not create a persistent global `pluribus` command.
|
|
32
|
+
|
|
33
|
+
## 60-second review smoke
|
|
34
|
+
|
|
35
|
+
Run this in a disposable directory:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
mkdir pluribus-review && cd pluribus-review
|
|
39
|
+
npx --yes pluribus-context@latest --version
|
|
40
|
+
npx --yes pluribus-context@latest init --dry-run --name "Review" --description "Disposable review project" --tools claude,cursor,copilot
|
|
41
|
+
npx --yes pluribus-context@latest init --name "Review" --description "Disposable review project" --tools claude,cursor,copilot
|
|
42
|
+
npx --yes pluribus-context@latest validate
|
|
43
|
+
npx --yes pluribus-context@latest sync --dry-run
|
|
44
|
+
npx --yes pluribus-context@latest audit --ci --json --output pluribus-audit.json || test $? -eq 1
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Expected result:
|
|
48
|
+
|
|
49
|
+
- `--version` prints the current npm release.
|
|
50
|
+
- `init --dry-run` previews `pluribus.md` without writing.
|
|
51
|
+
- `init` writes `pluribus.md`.
|
|
52
|
+
- `validate` succeeds.
|
|
53
|
+
- `sync --dry-run` previews generated context files without writing them.
|
|
54
|
+
- `audit --ci` may exit `1` before generated files are synced; that is expected when outputs are missing or drifted.
|
|
55
|
+
|
|
56
|
+
## Useful links
|
|
57
|
+
|
|
58
|
+
- npm package: <https://www.npmjs.com/package/pluribus-context>
|
|
59
|
+
- GitHub repo: <https://github.com/caioribeiroclw-pixel/pluribus>
|
|
60
|
+
- Quickstart: <https://github.com/caioribeiroclw-pixel/pluribus/blob/main/docs/quickstart.md>
|
|
61
|
+
- Context drift audit guide: <https://github.com/caioribeiroclw-pixel/pluribus/blob/main/docs/context-drift-audit.md>
|
|
62
|
+
- When to use Pluribus: <https://github.com/caioribeiroclw-pixel/pluribus/blob/main/docs/when-to-use-pluribus.md>
|
|
63
|
+
- First-run audit feedback: <https://github.com/caioribeiroclw-pixel/pluribus/issues/new?template=audit-feedback.yml>
|
|
64
|
+
|
|
65
|
+
## Feedback requested
|
|
66
|
+
|
|
67
|
+
If you try it on a real repo, please avoid pasting private context or full audit JSON from non-public projects. The most useful report is:
|
|
68
|
+
|
|
69
|
+
1. OS/shell and exact Pluribus version.
|
|
70
|
+
2. Which context files already existed (`CLAUDE.md`, `.cursorrules`, Copilot instructions, `AGENTS.md`, etc.).
|
|
71
|
+
3. Whether `audit` identified the expected missing/drifted files.
|
|
72
|
+
4. Whether the next safe step was obvious (`init`, edit `pluribus.md`, `sync --dry-run`, or `sync`).
|
package/docs/quickstart.md
CHANGED
|
@@ -18,6 +18,20 @@ The safest path is audit → validate → `sync --dry-run` → `sync`. The first
|
|
|
18
18
|
|
|
19
19
|
Remote imports do not refresh silently; Pluribus writes `pluribus.lock.json` and `.pluribus/cache/remote/` only when you explicitly pass `--update-imports`.
|
|
20
20
|
|
|
21
|
+
## Install, uninstall, and network behavior
|
|
22
|
+
|
|
23
|
+
For one-off use, keep using `npx --yes pluribus-context@latest ...`; npm stores that in its normal temporary cache and does not create a persistent global `pluribus` command.
|
|
24
|
+
|
|
25
|
+
If you want a persistent CLI:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm install -g pluribus-context@latest
|
|
29
|
+
pluribus --help
|
|
30
|
+
npm uninstall -g pluribus-context
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Normal `audit`, `validate`, `sync`, and `sync --dry-run` runs do not make network requests. Network access only happens when remote imports are present and you explicitly pass `--update-imports`; Pluribus then fetches `github:`/HTTPS imports, pins them in `pluribus.lock.json`, and uses the local cache for later offline syncs. Private GitHub imports can use `GH_TOKEN`/`GITHUB_TOKEN` or `gh auth token` during that explicit refresh, but tokens are never stored in the lockfile or cache.
|
|
34
|
+
|
|
21
35
|
## 1. Create a disposable demo project
|
|
22
36
|
|
|
23
37
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pluribus-context",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.6",
|
|
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",
|
package/src/utils/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.3.
|
|
1
|
+
export const VERSION = '0.3.6'
|