pluribus-context 0.3.18 → 0.3.19

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
@@ -4,6 +4,13 @@
4
4
 
5
5
  All notable changes to Pluribus are documented here.
6
6
 
7
+ ## 0.3.19 — Bob native discovery target
8
+
9
+ ### Added
10
+
11
+ - Add a built-in `bob` adapter that writes `.bob/rules/pluribus.md`, so Pluribus can test native discovery surfaces instead of forcing Bob-style rules through generic `AGENTS.md` fallback.
12
+ - Extend public docs, quickstart, contributor guidance, and portability fidelity examples with Bob rules as a target for native-discovery vs generic-fallback review.
13
+
7
14
  ## 0.3.18 — fidelity audit discovery positioning
8
15
 
9
16
  ### Changed
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  > Detect where AI-agent context loses fidelity across tools — then sync the parts that can be safely shared.
10
10
 
11
- Pluribus (`pluribus-context` on npm, `pluribus` on the command line) is an AI context sync CLI with AI-agent context fidelity audit for teams and projects that use Claude Code, Cursor, GitHub Copilot, OpenClaw, Windsurf, Continue, or Zed.
11
+ Pluribus (`pluribus-context` on npm, `pluribus` on the command line) is an AI context sync CLI with AI-agent context fidelity audit for teams and projects that use Claude Code, Cursor, GitHub Copilot, OpenClaw, Windsurf, Continue, Zed, or Bob.
12
12
 
13
13
  It shows where instructions keep their semantics, where they are downgraded to a generic fallback, and where manual activation or native discovery matters — then keeps project instructions, conventions, constraints, and team context in one versioned source of truth.
14
14
 
@@ -20,7 +20,7 @@ It is **not** a persistent memory layer, retrieval system, agent orchestrator, o
20
20
 
21
21
  ## The Problem
22
22
 
23
- You use Claude, Copilot, Cursor, Windsurf, Continue, Zed, ChatGPT, and whatever ships next Tuesday.
23
+ You use Claude, Copilot, Cursor, Windsurf, Continue, Zed, Bob, ChatGPT, and whatever ships next Tuesday.
24
24
 
25
25
  Each one has its own way of understanding your project:
26
26
  - `CLAUDE.md` for Claude Code
@@ -30,6 +30,7 @@ Each one has its own way of understanding your project:
30
30
  - `.windsurf/rules/pluribus.md` for Windsurf Cascade
31
31
  - `.continue/rules/pluribus.md` for Continue
32
32
  - `.rules` for Zed
33
+ - `.bob/rules/pluribus.md` for Bob
33
34
 
34
35
  You end up maintaining **5+ files** that say roughly the same thing — your project's architecture, conventions, tech stack, who you are, what matters. Copy-paste across files. They drift. They rot. You forget to update one. Your AI gives you wrong answers because it's reading stale context.
35
36
 
@@ -64,6 +65,7 @@ And it generates the right files for each tool:
64
65
  - `.windsurf/rules/pluribus.md` ← for Windsurf Cascade
65
66
  - `.continue/rules/pluribus.md` ← for Continue
66
67
  - `.rules` ← for Zed
68
+ - `.bob/rules/pluribus.md` ← for Bob
67
69
 
68
70
  **One source of truth. Zero drift.**
69
71
 
@@ -103,7 +105,7 @@ Pluribus is intentionally narrow about filesystem changes:
103
105
 
104
106
  - `audit`, `validate`, and `sync --dry-run` are read-only.
105
107
  - `init` writes `pluribus.md` only. If that file already exists, it refuses to overwrite it.
106
- - `sync` writes only the configured/generated AI context files such as `CLAUDE.md`, `.cursorrules`, `.github/copilot-instructions.md`, `AGENTS.md`, Windsurf/Continue rules, and `.rules`.
108
+ - `sync` writes only the configured/generated AI context files such as `CLAUDE.md`, `.cursorrules`, `.github/copilot-instructions.md`, `AGENTS.md`, Windsurf/Continue rules, Zed `.rules`, and Bob `.bob/rules/pluribus.md`.
107
109
  - Generated files include a `Generated by Pluribus ... do not edit manually` header so drift is easy to spot in review.
108
110
  - Remote imports only touch `pluribus.lock.json` and `.pluribus/cache/remote/` when you explicitly pass `--update-imports`.
109
111
 
@@ -272,7 +274,7 @@ npx --yes pluribus-context@latest audit --strict --json --output pluribus-audit.
272
274
 
273
275
  The JSON shape is documented in [`schemas/audit-result.schema.json`](schemas/audit-result.schema.json) so CI wrappers and dashboards can validate integrations without scraping human output. For copy-paste enforcement, see the [CI audit example](docs/ci-audit-example.md) and the [Pre-commit Audit Hook](docs/pre-commit-audit.md).
274
276
 
275
- If your project does not have `pluribus.md` yet, `pluribus audit` scans for known AI context files (`CLAUDE.md`, `.cursorrules`, Copilot instructions, `AGENTS.md`, Windsurf, Continue, Zed) so you know what to migrate.
277
+ If your project does not have `pluribus.md` yet, `pluribus audit` scans for known AI context files (`CLAUDE.md`, `.cursorrules`, Copilot instructions, `AGENTS.md`, Windsurf, Continue, Zed, Bob) so you know what to migrate.
276
278
 
277
279
  **6. Sync to all your tools**
278
280
 
@@ -336,6 +338,7 @@ pluribus watch --once --tools claude,cursor
336
338
  | `openclaw` | `AGENTS.md` | OpenClaw agent runner |
337
339
  | `copilot` | `.github/copilot-instructions.md` | GitHub Copilot |
338
340
  | `zed` | `.rules` | Zed Editor |
341
+ | `bob` | `.bob/rules/pluribus.md` | Bob rules |
339
342
  | `windsurf` | `.windsurf/rules/pluribus.md` | Windsurf Cascade workspace rules |
340
343
  | `continue` | `.continue/rules/pluribus.md` | Continue workspace rules |
341
344
 
@@ -362,6 +365,7 @@ See `spec/skills-format.md` for the skill file format.
362
365
  - [x] Copilot integration (built-in skill)
363
366
  - [x] Claude Code integration (built-in skill)
364
367
  - [x] Zed Editor integration (built-in skill)
368
+ - [x] Bob rules integration (built-in skill)
365
369
  - [ ] Custom skill overrides (local `pluribus/skills/`)
366
370
  - [x] Windsurf integration (built-in workspace rule)
367
371
  - [x] Continue integration (built-in workspace rule)
@@ -4,11 +4,11 @@ Use this when reviewing Pluribus for a list, newsletter, package roundup, or too
4
4
 
5
5
  ## One-line description
6
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.
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, Zed, and Bob.
8
8
 
9
9
  ## Short listing copy
10
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:
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, Zed rules, and Bob rules). The safest first command is a read-only audit:
12
12
 
13
13
  ```bash
14
14
  npx --yes pluribus-context@latest audit
@@ -26,9 +26,9 @@ Use these fields for directories, awesome lists, or review forms that ask for a
26
26
  | License | MIT |
27
27
  | Install / run | `npx --yes pluribus-context@latest audit` or `npm install -g pluribus-context@latest` |
28
28
  | Category | AI coding tools / context management |
29
- | Tags | `claude-code`, `cursor`, `copilot`, `openclaw`, `windsurf`, `continue`, `zed`, `context-drift` |
30
- | 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. |
31
- | 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. |
29
+ | Tags | `claude-code`, `cursor`, `copilot`, `openclaw`, `windsurf`, `continue`, `zed`, `bob`, `context-drift` |
30
+ | 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, Zed, and Bob. |
31
+ | 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, Zed rules, and Bob rules. |
32
32
  | Safe first command | `npx --yes pluribus-context@latest audit` |
33
33
 
34
34
  ### Awesome-list Markdown entry
@@ -36,7 +36,7 @@ Use these fields for directories, awesome lists, or review forms that ask for a
36
36
  Use this exact line when a curated list accepts one Markdown bullet per tool:
37
37
 
38
38
  ```markdown
39
- - [Pluribus](https://github.com/caioribeiroclw-pixel/pluribus) - Open-source CLI that keeps one versioned AI coding context in sync across Claude Code, Cursor, Copilot, OpenClaw, Windsurf, Continue, and Zed.
39
+ - [Pluribus](https://github.com/caioribeiroclw-pixel/pluribus) - Open-source CLI that keeps one versioned AI coding context in sync across Claude Code, Cursor, Copilot, OpenClaw, Windsurf, Continue, Zed, and Bob.
40
40
  ```
41
41
 
42
42
  ## Why it may be useful
@@ -54,7 +54,7 @@ Use this section when a directory, list maintainer, or reviewer asks how Pluribu
54
54
  | --- | --- |
55
55
  | What category is it? | AI coding context management / rules sync CLI. |
56
56
  | What is the source of truth? | `pluribus.md`, reviewed in git. |
57
- | What does it generate? | Tool-native context files for Claude Code, Cursor, Copilot, OpenClaw, Windsurf, Continue, and Zed. |
57
+ | What does it generate? | Tool-native context files for Claude Code, Cursor, Copilot, OpenClaw, Windsurf, Continue, Zed, and Bob. |
58
58
  | What is the safe first step? | Run `npx --yes pluribus-context@latest audit` to inspect existing context files without writing. |
59
59
  | When is another tool enough? | If you only need one tool's native rules format or a one-time converter, a smaller rules manager/converter may be enough. |
60
60
  | What is Pluribus not? | Not chat memory, retrieval, vector search, agent orchestration, or agent merging. |
@@ -1,6 +1,6 @@
1
1
  # Portability Fidelity Report
2
2
 
3
- Use this when a rule pack, skill bundle, `AGENTS.md`, `CLAUDE.md`, `.cursorrules`, or Copilot instruction file claims to be portable across AI coding tools.
3
+ Use this when a rule pack, skill bundle, `AGENTS.md`, `CLAUDE.md`, `.cursorrules`, Bob `.bob/rules/*.md`, or Copilot instruction file claims to be portable across AI coding tools.
4
4
 
5
5
  The goal is not to prove that every tool behaves identically. The goal is to make portability claims falsifiable: which tools were tested, which capabilities are required, where semantics are lossy, and what evidence a reviewer can inspect.
6
6
 
@@ -46,6 +46,8 @@ portability:
46
46
  evidence: generated .cursorrules smoke-reviewed on 2026-05-18
47
47
  - target: github-copilot
48
48
  evidence: generated .github/copilot-instructions.md smoke-reviewed on 2026-05-18
49
+ - target: bob
50
+ evidence: generated .bob/rules/pluribus.md smoke-reviewed on 2026-05-18
49
51
  requiredCapabilities:
50
52
  - read repository instructions before planning
51
53
  - preserve generated-file warning
@@ -84,7 +86,7 @@ That does **not** prove runtime behavior. You still need tool-specific smoke tes
84
86
 
85
87
  For each selected target, the JSON report includes:
86
88
 
87
- - `nativeDiscoverySurface` — the file or directory pattern the target normally discovers, such as `CLAUDE.md`, `.cursorrules`, `.github/copilot-instructions.md`, or `AGENTS.md`.
89
+ - `nativeDiscoverySurface` — the file or directory pattern the target normally discovers, such as `CLAUDE.md`, `.cursorrules`, `.github/copilot-instructions.md`, `AGENTS.md`, or Bob `.bob/rules/*.md`.
88
90
  - `resolutionAnchor` — where the generated surface is resolved from today (`repo-root` for built-in targets).
89
91
  - `genericFallback` — whether the output is a broad agent fallback surface rather than a target-specific native surface.
90
92
  - `manualActivationRequired` — whether Pluribus knows the output requires manual activation after generation. Built-in project-wide targets are currently `false`; future scoped/skill targets may differ.
@@ -2,7 +2,7 @@
2
2
 
3
3
  Use this when you want to try Pluribus without touching a real project yet.
4
4
 
5
- Pluribus takes one intentional context file (`pluribus.md`) and generates the tool-specific files your AI tools expect: `CLAUDE.md`, `.cursorrules`, Copilot instructions, `AGENTS.md`, Windsurf/Continue rules, and Zed `.rules`.
5
+ Pluribus takes one intentional context file (`pluribus.md`) and generates the tool-specific files your AI tools expect: `CLAUDE.md`, `.cursorrules`, Copilot instructions, `AGENTS.md`, Windsurf/Continue rules, Zed `.rules`, and Bob `.bob/rules/pluribus.md`.
6
6
 
7
7
  Already have one or more of those files? Start with a read-only inventory before replacing anything:
8
8
 
@@ -14,7 +14,7 @@ Without `pluribus.md`, audit lists existing AI context surfaces so you can decid
14
14
 
15
15
  ## What Pluribus writes
16
16
 
17
- The safest path is audit → validate → `sync --dry-run` → `sync`. The first three steps are read-only. `init` writes only `pluribus.md`, and `sync` writes only generated AI context files for the tools you selected (`CLAUDE.md`, `.cursorrules`, Copilot instructions, `AGENTS.md`, Windsurf/Continue rules, or Zed `.rules`). Generated files include a `Generated by Pluribus ... do not edit manually` header, so direct edits show up as drift in `pluribus audit`.
17
+ The safest path is audit → validate → `sync --dry-run` → `sync`. The first three steps are read-only. `init` writes only `pluribus.md`, and `sync` writes only generated AI context files for the tools you selected (`CLAUDE.md`, `.cursorrules`, Copilot instructions, `AGENTS.md`, Windsurf/Continue rules, Zed `.rules`, or Bob `.bob/rules/pluribus.md`). Generated files include a `Generated by Pluribus ... do not edit manually` header, so direct edits show up as drift in `pluribus audit`.
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
 
@@ -72,6 +72,7 @@ Choose the comma-separated `--tools` list that matches your repo. The built-in a
72
72
  | `windsurf` | `.windsurf/rules/pluribus.md` |
73
73
  | `continue` | `.continue/rules/pluribus.md` |
74
74
  | `zed` | `.rules` |
75
+ | `bob` | `.bob/rules/pluribus.md` |
75
76
 
76
77
  You can also run `npx --yes pluribus-context@latest --help` to see the current supported tool ids from the CLI itself.
77
78
 
@@ -1,4 +1,4 @@
1
- <!-- pluribus:tools: claude,cursor,copilot,openclaw -->
1
+ <!-- pluribus:tools: claude,cursor,copilot,openclaw,bob -->
2
2
 
3
3
  # Identity
4
4
  This repository publishes an AI rule or skill bundle that claims portability across Claude Code, Cursor, GitHub Copilot, and AGENTS.md-compatible coding agents.
@@ -7,7 +7,7 @@ The bundle should be treated as portable only when its required capabilities, te
7
7
 
8
8
  # Stack
9
9
  - Source format: Markdown rules/skills maintained in git.
10
- - Generated targets: `CLAUDE.md`, `.cursorrules`, `.github/copilot-instructions.md`, and `AGENTS.md`.
10
+ - Generated targets: `CLAUDE.md`, `.cursorrules`, `.github/copilot-instructions.md`, `AGENTS.md`, and `.bob/rules/pluribus.md`.
11
11
  - Review command: `npx --yes pluribus-context@latest sync --dry-run`.
12
12
  - Drift command: `npx --yes pluribus-context@latest audit --json`.
13
13
 
@@ -32,6 +32,8 @@ portability:
32
32
  evidence: generated .github/copilot-instructions.md smoke-reviewed
33
33
  - target: agents-md
34
34
  evidence: generated AGENTS.md smoke-reviewed
35
+ - target: bob
36
+ evidence: generated .bob/rules/pluribus.md smoke-reviewed
35
37
  requiredCapabilities:
36
38
  - load repository instructions before planning
37
39
  - preserve generated-file warning
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pluribus-context",
3
- "version": "0.3.18",
4
- "description": "AI context/rules sync and fidelity audit CLI for CLAUDE.md, Claude Code, Cursor rules, Copilot instructions, OpenClaw, Windsurf, Continue, and Zed semantic drift.",
3
+ "version": "0.3.19",
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",
7
7
  "repository": {
@@ -77,7 +77,9 @@
77
77
  "semantic-loss",
78
78
  "native-discovery",
79
79
  "agent-context-audit",
80
- "agent-memory"
80
+ "agent-memory",
81
+ "bob",
82
+ "bob-rules"
81
83
  ],
82
84
  "author": "Caio Ribeiro",
83
85
  "license": "MIT",
@@ -376,6 +376,7 @@ function inferDiscovery(toolId, outputFiles) {
376
376
  windsurf: '.windsurf/rules/*.md',
377
377
  continue: '.continue/rules/*.md',
378
378
  zed: '.rules',
379
+ bob: '.bob/rules/*.md',
379
380
  }
380
381
 
381
382
  return {
@@ -338,6 +338,54 @@ alwaysApply: true
338
338
  ## Anti-patterns
339
339
  {{anti-patterns}}
340
340
  {{/if}}
341
+ `,
342
+ },
343
+
344
+ bob: {
345
+ id: 'bob',
346
+ outputFiles: ['.bob/rules/pluribus.md'],
347
+ required: ['conventions', 'constraints'],
348
+ optional: ['identity', 'stack', 'goals', 'anti-patterns', 'workflow', 'context'],
349
+ template: `<!-- Generated by Pluribus {{pluribus.version}} on {{pluribus.date}} — do not edit manually -->
350
+ <!-- Source: {{pluribus.source}} -->
351
+
352
+ # Pluribus Project Rules for Bob
353
+
354
+ {{#if identity}}
355
+ ## Project
356
+ {{identity}}
357
+
358
+ {{/if}}
359
+ {{#if stack}}
360
+ ## Stack
361
+ {{stack}}
362
+
363
+ {{/if}}
364
+ ## Conventions
365
+ {{conventions}}
366
+
367
+ ## Constraints
368
+ {{constraints}}
369
+
370
+ {{#if goals}}
371
+ ## Goals
372
+ {{goals}}
373
+
374
+ {{/if}}
375
+ {{#if workflow}}
376
+ ## Workflow
377
+ {{workflow}}
378
+
379
+ {{/if}}
380
+ {{#if anti-patterns}}
381
+ ## Anti-patterns
382
+ {{anti-patterns}}
383
+
384
+ {{/if}}
385
+ {{#if context}}
386
+ ## Additional Context
387
+ {{context}}
388
+ {{/if}}
341
389
  `,
342
390
  },
343
391
  }
@@ -1 +1 @@
1
- export const VERSION = '0.3.18'
1
+ export const VERSION = '0.3.19'