pluribus-context 0.3.19 → 0.3.20

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 CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.20 - 2026-05-18
4
+
5
+ - Added a 60-second native-vs-fallback smoke to the community review packet so directory/list reviewers can see Bob native `.bob/rules/*.md` differ from OpenClaw/AGENTS.md generic fallback.
6
+ - Extended `npm run review:smoke` to execute that fidelity demo against the published npm package and assert `nativeDiscoverySurface`, `genericFallback`, and `manualActivationRequired` fields.
7
+
3
8
  ## [Unreleased]
4
9
 
5
10
  All notable changes to Pluribus are documented here.
@@ -91,6 +91,24 @@ Expected result:
91
91
  - `sync --dry-run` previews generated context files without writing them.
92
92
  - `audit --ci` may exit `1` before generated files are synced; that is expected when outputs are missing or drifted.
93
93
 
94
+ ## 60-second native-vs-fallback smoke
95
+
96
+ Use this when reviewing the fidelity-audit positioning. It demonstrates the difference between a native tool discovery surface and a generic fallback in a clean directory:
97
+
98
+ ```bash
99
+ mkdir pluribus-fidelity && cd pluribus-fidelity
100
+ npx --yes pluribus-context@latest init --name "Fidelity review" --description "Native vs fallback smoke" --tools bob,openclaw
101
+ npx --yes pluribus-context@latest sync
102
+ npx --yes pluribus-context@latest audit --json --fidelity-report --output fidelity.json
103
+ node -e "const r=require('./fidelity.json'); console.log(r.fidelityReport.targets.map(t => ({ toolId: t.toolId, file: t.files[0], nativeDiscoverySurface: t.nativeDiscoverySurface, genericFallback: t.genericFallback, manualActivationRequired: t.manualActivationRequired })))"
104
+ ```
105
+
106
+ Expected result:
107
+
108
+ - Bob writes `.bob/rules/pluribus.md` and reports `nativeDiscoverySurface: ".bob/rules/*.md"`, `genericFallback: false`, `manualActivationRequired: false`.
109
+ - OpenClaw writes `AGENTS.md` and reports `nativeDiscoverySurface: "AGENTS.md"`, `genericFallback: true`, `manualActivationRequired: false`.
110
+ - This is the core Pluribus distinction for reviewers: generated file exists is not enough; the report should show whether the target uses native discovery or a generic fallback.
111
+
94
112
  ## Useful links
95
113
 
96
114
  - npm package: <https://www.npmjs.com/package/pluribus-context>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pluribus-context",
3
- "version": "0.3.19",
3
+ "version": "0.3.20",
4
4
  "description": "AI context/rules sync and fidelity audit CLI for CLAUDE.md, Claude Code, Cursor rules, Copilot instructions, OpenClaw, Windsurf, Continue, Zed, Bob, and semantic drift.",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/caioribeiroclw-pixel/pluribus#readme",
@@ -1 +1 @@
1
- export const VERSION = '0.3.19'
1
+ export const VERSION = '0.3.20'