pluribus-context 0.3.18 → 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 +12 -0
- package/README.md +8 -4
- package/docs/community-review-packet.md +25 -7
- package/docs/portability-fidelity-report.md +4 -2
- package/docs/quickstart.md +3 -2
- package/examples/portability-fidelity/pluribus.md +4 -2
- package/package.json +5 -3
- package/src/commands/audit.js +1 -0
- package/src/skills/built-in.js +48 -0
- package/src/utils/version.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,21 @@
|
|
|
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.
|
|
6
11
|
|
|
12
|
+
## 0.3.19 — Bob native discovery target
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- 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.
|
|
17
|
+
- Extend public docs, quickstart, contributor guidance, and portability fidelity examples with Bob rules as a target for native-discovery vs generic-fallback review.
|
|
18
|
+
|
|
7
19
|
## 0.3.18 — fidelity audit discovery positioning
|
|
8
20
|
|
|
9
21
|
### 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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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. |
|
|
@@ -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>
|
|
@@ -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`,
|
|
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.
|
package/docs/quickstart.md
CHANGED
|
@@ -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
|
|
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
|
|
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`,
|
|
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.
|
|
4
|
-
"description": "AI context/rules sync and fidelity audit CLI for CLAUDE.md, Claude Code, Cursor rules, Copilot instructions, OpenClaw, Windsurf, Continue, and
|
|
3
|
+
"version": "0.3.20",
|
|
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",
|
package/src/commands/audit.js
CHANGED
package/src/skills/built-in.js
CHANGED
|
@@ -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
|
}
|
package/src/utils/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.3.
|
|
1
|
+
export const VERSION = '0.3.20'
|