@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 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)
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "research-copilot",
3
- "version": "1.1.19",
3
+ "version": "1.1.21",
4
4
  "description": "AI research automation skills and agents",
5
5
  "author": "ldm2060",
6
6
  "homepage": "https://github.com/ldm2060/research_copilot",
@@ -1,5 +1,5 @@
1
1
  name = "research-copilot"
2
- version = "1.1.19"
2
+ version = "1.1.21"
3
3
  description = "AI research automation skills and agents"
4
4
  author = "ldm2060"
5
5
  homepage = "https://github.com/ldm2060/research_copilot"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "research-copilot",
3
- "version": "1.1.19",
3
+ "version": "1.1.21",
4
4
  "description": "AI research automation skills and agents",
5
5
  "author": "ldm2060",
6
6
  "homepage": "https://github.com/ldm2060/research_copilot",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "research-copilot",
3
- "version": "1.1.19",
3
+ "version": "1.1.21",
4
4
  "description": "AI research automation skills and agents",
5
5
  "author": "ldm2060",
6
6
  "homepage": "https://github.com/ldm2060/research_copilot",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "research-copilot",
3
- "version": "1.1.19",
3
+ "version": "1.1.21",
4
4
  "description": "AI research automation skills and agents",
5
5
  "author": "ldm2060",
6
6
  "homepage": "https://github.com/ldm2060/research_copilot",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "research-copilot",
3
- "version": "1.1.19",
3
+ "version": "1.1.21",
4
4
  "description": "AI research automation skills and agents",
5
5
  "author": "ldm2060",
6
6
  "homepage": "https://github.com/ldm2060/research_copilot",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@research-copilot/plugin",
3
- "version": "1.1.19",
3
+ "version": "1.1.21",
4
4
  "description": "Research Copilot plugin for Claude Code - AI research automation skills and agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",