@research-copilot/plugin 1.1.18 → 1.1.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/README.md +18 -9
- package/dist/.claude-plugin/plugin.json +1 -1
- package/dist/.codex-plugin/plugin.toml +1 -1
- package/dist/.cursor-plugin/plugin.json +1 -1
- package/dist/.gemini-plugin/plugin.json +1 -1
- package/dist/.opencode-plugin/plugin.json +1 -1
- package/dist/.windsurf-plugin/plugin.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,25 +4,34 @@ Research Copilot plugin for Claude Code - AI-powered research automation with sk
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Most users should install the Research Copilot CLI, then let `rc init` or `rc doctor --fix` synchronize this companion plugin package:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
|
|
10
|
+
npm install -g @research-copilot/cli
|
|
11
|
+
rc init --user your-name --claude
|
|
12
|
+
rc doctor
|
|
11
13
|
```
|
|
12
14
|
|
|
13
|
-
|
|
14
|
-
1. Detects your Claude Code CLI platform
|
|
15
|
-
2. Installs the plugin to the appropriate location
|
|
16
|
-
3. Creates necessary configuration files
|
|
15
|
+
For an existing Research Copilot project after upgrading the CLI:
|
|
17
16
|
|
|
18
|
-
|
|
17
|
+
```bash
|
|
18
|
+
npm install -g @research-copilot/cli@latest
|
|
19
|
+
rc doctor --fix
|
|
20
|
+
rc doctor
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
`rc init` and `rc doctor --fix` are idempotent: they preserve existing tasks, specs, workspace files, user hooks, user agents, and unrelated MCP servers.
|
|
19
24
|
|
|
20
|
-
|
|
25
|
+
## Manual Plugin Synchronization
|
|
26
|
+
|
|
27
|
+
If `rc doctor` reports a plugin version mismatch, install the exact version it prints:
|
|
21
28
|
|
|
22
29
|
```bash
|
|
23
|
-
npm install -g @research-copilot/plugin
|
|
30
|
+
npm install -g @research-copilot/plugin@<cli-version>
|
|
24
31
|
```
|
|
25
32
|
|
|
33
|
+
This npm package is a companion package for plugin content and version synchronization. Project-local Claude Code configuration created by `rc init` remains the reliable runtime path, so npm global installation alone is not the only Research Copilot activation step.
|
|
34
|
+
|
|
26
35
|
## What's Included
|
|
27
36
|
|
|
28
37
|
### Skills (6 total)
|