pluribus-context 0.3.6 → 0.3.7
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 +6 -0
- package/docs/community-review-packet.md +15 -0
- package/package.json +1 -1
- package/src/utils/version.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
All notable changes to Pluribus are documented here.
|
|
6
6
|
|
|
7
|
+
## 0.3.7 — directory submission packet refresh
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- Add structured directory-submission fields to the community review packet so small distribution/review forms can reuse one safe, consistent Pluribus listing without rewriting install or safety copy.
|
|
12
|
+
|
|
7
13
|
## 0.3.6 — community review packet package-page refresh
|
|
8
14
|
|
|
9
15
|
### Added
|
|
@@ -14,6 +14,21 @@ Pluribus is an open-source CLI for teams and solo developers who use multiple AI
|
|
|
14
14
|
npx --yes pluribus-context@latest audit
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
## Directory submission fields
|
|
18
|
+
|
|
19
|
+
Use these fields for directories, awesome lists, or review forms that ask for a concise tool entry. Prefer this over inventing new copy per channel.
|
|
20
|
+
|
|
21
|
+
| Field | Copy |
|
|
22
|
+
| --- | --- |
|
|
23
|
+
| Name | Pluribus |
|
|
24
|
+
| URL | https://github.com/caioribeiroclw-pixel/pluribus |
|
|
25
|
+
| npm | https://www.npmjs.com/package/pluribus-context |
|
|
26
|
+
| Category | AI coding tools / context management |
|
|
27
|
+
| Tags | `claude-code`, `cursor`, `copilot`, `openclaw`, `windsurf`, `continue`, `zed`, `context-drift` |
|
|
28
|
+
| One sentence | Keep one versioned AI coding context in `pluribus.md`, then audit or sync the generated files used by Claude Code, Cursor, Copilot, OpenClaw, Windsurf, Continue, and Zed. |
|
|
29
|
+
| 280-char blurb | Pluribus is an open-source CLI for intentional AI coding context. It keeps project guidance in one `pluribus.md`, then audits or syncs `CLAUDE.md`, Cursor rules, Copilot instructions, `AGENTS.md`, Windsurf/Continue rules, and Zed rules. |
|
|
30
|
+
| Safe first command | `npx --yes pluribus-context@latest audit` |
|
|
31
|
+
|
|
17
32
|
## Why it may be useful
|
|
18
33
|
|
|
19
34
|
- Reduces copy-paste drift between AI tool instruction files.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pluribus-context",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7",
|
|
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.7'
|