plugins 1.1.1 → 1.1.3
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 +6 -7
- 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 [open-plugin](https://github.com/anthropics/open-plugin) format plugins into agent tools. Works with [Claude Code](https://code.claude.com).
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
npx plugins add owner/repo
|
|
@@ -12,13 +12,13 @@ npx plugins add owner/repo
|
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
# GitHub shorthand
|
|
15
|
-
npx plugins add
|
|
15
|
+
npx plugins add vercel/vercel-plugin
|
|
16
16
|
|
|
17
17
|
# Full HTTPS URL
|
|
18
|
-
npx plugins add https://github.com/
|
|
18
|
+
npx plugins add https://github.com/vercel/vercel-plugin
|
|
19
19
|
|
|
20
20
|
# SSH URL (auto-retries via HTTPS if SSH auth fails)
|
|
21
|
-
npx plugins add git@github.com:
|
|
21
|
+
npx plugins add git@github.com:vercel/vercel-plugin.git
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
### Add plugins from a local directory
|
|
@@ -54,19 +54,18 @@ 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`) |
|
|
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.
|
|
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` binary on PATH |
|
|
70
69
|
|
|
71
70
|
## How it works
|
|
72
71
|
|