@research-copilot/plugin 1.1.19 → 1.1.21
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 -0
- 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
|
@@ -32,6 +32,24 @@ npm install -g @research-copilot/plugin@<cli-version>
|
|
|
32
32
|
|
|
33
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
34
|
|
|
35
|
+
## Platform Registration
|
|
36
|
+
|
|
37
|
+
Installing this npm package synchronizes plugin content, but platform CLIs discover plugins through their own plugin or skills directories. Use the Research Copilot CLI to register the plugin content:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
rc plugin install --platform claude --scope project
|
|
41
|
+
rc plugin status --platform claude
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
For local development against a built plugin dist:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
pnpm --filter @research-copilot/plugin build
|
|
48
|
+
rc plugin install --platform claude --scope project --source local --path packages/plugin/dist
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
The registration command copies this package's `dist/` content into the selected platform discovery path and preserves unrelated plugins.
|
|
52
|
+
|
|
35
53
|
## What's Included
|
|
36
54
|
|
|
37
55
|
### Skills (6 total)
|