pluribus-context 0.3.4 → 0.3.5
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 +15 -2
- 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,13 @@
|
|
|
4
4
|
|
|
5
5
|
All notable changes to Pluribus are documented here.
|
|
6
6
|
|
|
7
|
+
## 0.3.5 — trust copy package-page refresh
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- 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.
|
|
12
|
+
- Add release-gate checks for uninstall/network transparency copy before future docs or package-page updates.
|
|
13
|
+
|
|
7
14
|
## 0.3.4 — npm package page README refresh prep
|
|
8
15
|
|
|
9
16
|
### 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?
|
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.5",
|
|
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.5'
|