plugins 1.1.4 → 1.2.0
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 +4 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# plugins
|
|
2
2
|
|
|
3
|
-
Install plugins into agent tools. Works with [Claude Code](https://code.claude.com).
|
|
3
|
+
Install plugins into agent tools. Works with [Claude Code](https://code.claude.com) and [Cursor](https://cursor.com).
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
npx plugins add owner/repo
|
|
@@ -54,18 +54,19 @@ If no subcommand is given, `plugins <source>` defaults to `add`.
|
|
|
54
54
|
|
|
55
55
|
| Flag | Short | Default | Description |
|
|
56
56
|
|---|---|---|---|
|
|
57
|
-
| `--target` | `-t` | auto-detect | Install to a specific agent tool (`claude-code`) |
|
|
57
|
+
| `--target` | `-t` | auto-detect | Install to a specific agent tool (`claude-code`, `cursor`) |
|
|
58
58
|
| `--scope` | `-s` | `user` | Installation scope: `user`, `project`, or `local` |
|
|
59
59
|
| `--yes` | `-y` | `false` | Skip the confirmation prompt |
|
|
60
60
|
| `--help` | `-h` | | Show usage information |
|
|
61
61
|
|
|
62
62
|
## Supported targets
|
|
63
63
|
|
|
64
|
-
The CLI auto-detects which agent tools are installed.
|
|
64
|
+
The CLI auto-detects which agent tools are installed and installs to all of them.
|
|
65
65
|
|
|
66
66
|
| Target | Detection |
|
|
67
67
|
|---|---|
|
|
68
68
|
| [Claude Code](https://code.claude.com) | `claude` binary on PATH |
|
|
69
|
+
| [Cursor](https://cursor.com) | `cursor` + `claude` binaries on PATH |
|
|
69
70
|
|
|
70
71
|
## How it works
|
|
71
72
|
|