@research-copilot/plugin 1.1.18 → 1.1.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/README.md CHANGED
@@ -4,25 +4,52 @@ Research Copilot plugin for Claude Code - AI-powered research automation with sk
4
4
 
5
5
  ## Installation
6
6
 
7
- This plugin is automatically installed when you run:
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
- rc init
10
+ npm install -g @research-copilot/cli
11
+ rc init --user your-name --claude
12
+ rc doctor
11
13
  ```
12
14
 
13
- The installation happens via the `research-init` command, which:
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
- ## Manual Installation
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.
24
+
25
+ ## Manual Plugin Synchronization
19
26
 
20
- If needed, you can also install manually:
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
+
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
+
26
53
  ## What's Included
27
54
 
28
55
  ### Skills (6 total)
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "research-copilot",
3
- "version": "1.1.18",
3
+ "version": "1.1.20",
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.18"
2
+ version = "1.1.20"
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.18",
3
+ "version": "1.1.20",
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.18",
3
+ "version": "1.1.20",
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.18",
3
+ "version": "1.1.20",
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.18",
3
+ "version": "1.1.20",
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.18",
3
+ "version": "1.1.20",
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",