@biswaviraj/cc-setup 1.0.4 → 1.0.5
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 +29 -25
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,23 +1,27 @@
|
|
|
1
1
|
# cc-setup
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Claude Code supports [plugins](https://docs.anthropic.com/en/docs/claude-code/plugins) (skills, hooks, agents) and [MCP servers](https://docs.anthropic.com/en/docs/claude-code/mcp-servers) — but adding them to a new project means remembering install IDs, setting up marketplaces, and running multiple CLI commands every time.
|
|
4
|
+
|
|
5
|
+
`cc-setup` lets you **define your preferred tools once**, then add them to any project with a single command.
|
|
6
|
+
|
|
7
|
+
1. Create `~/.cc-setup.json` with your go-to plugins and MCP servers
|
|
8
|
+
2. Run `cc-setup` in any project
|
|
9
|
+
3. Pick from your list, choose the scope, done
|
|
4
10
|
|
|
5
11
|

|
|
6
12
|
|
|
7
|
-
|
|
8
|
-
npx @biswaviraj/cc-setup
|
|
9
|
-
```
|
|
13
|
+
It ships with a small built-in list of popular plugins, but the real value is **your own curated list** — set it up once, reuse everywhere.
|
|
10
14
|
|
|
11
|
-
|
|
15
|
+
Add your preferred Claude Code plugins and MCP servers to any project in seconds.
|
|
12
16
|
|
|
13
17
|
## Install
|
|
14
18
|
|
|
15
19
|
```bash
|
|
16
20
|
# Run directly
|
|
17
|
-
npx @biswaviraj/cc-setup
|
|
21
|
+
npx @biswaviraj/cc-setup@latest
|
|
18
22
|
|
|
19
23
|
# Or install globally
|
|
20
|
-
pnpm add -g @biswaviraj/cc-setup
|
|
24
|
+
pnpm add -g @biswaviraj/cc-setup@latest
|
|
21
25
|
cc-setup
|
|
22
26
|
```
|
|
23
27
|
|
|
@@ -52,22 +56,22 @@ Your entries are merged with the built-in list. No duplicates.
|
|
|
52
56
|
|
|
53
57
|
### Plugin fields
|
|
54
58
|
|
|
55
|
-
| Field
|
|
56
|
-
|
|
57
|
-
| `value`
|
|
58
|
-
| `label`
|
|
59
|
-
| `hint`
|
|
60
|
-
| `install`
|
|
61
|
-
| `marketplace` | no
|
|
59
|
+
| Field | Required | Description |
|
|
60
|
+
| ------------- | -------- | --------------------------------------------------------------- |
|
|
61
|
+
| `value` | yes | Unique ID |
|
|
62
|
+
| `label` | yes | Display name |
|
|
63
|
+
| `hint` | yes | Short description |
|
|
64
|
+
| `install` | yes | Plugin install ID (e.g. `my-plugin` or `my-plugin@marketplace`) |
|
|
65
|
+
| `marketplace` | no | GitHub `org/repo` for non-official marketplaces |
|
|
62
66
|
|
|
63
67
|
### MCP Server fields
|
|
64
68
|
|
|
65
|
-
| Field
|
|
66
|
-
|
|
67
|
-
| `value`
|
|
68
|
-
| `label`
|
|
69
|
-
| `hint`
|
|
70
|
-
| `command` | yes
|
|
69
|
+
| Field | Required | Description |
|
|
70
|
+
| --------- | -------- | --------------------------------------------- |
|
|
71
|
+
| `value` | yes | Unique ID |
|
|
72
|
+
| `label` | yes | Display name |
|
|
73
|
+
| `hint` | yes | Short description |
|
|
74
|
+
| `command` | yes | The command to run (e.g. `npx my-mcp-server`) |
|
|
71
75
|
|
|
72
76
|
## Quick mode
|
|
73
77
|
|
|
@@ -83,11 +87,11 @@ cc-setup --quick --scope local
|
|
|
83
87
|
|
|
84
88
|
## Scopes
|
|
85
89
|
|
|
86
|
-
| Scope
|
|
87
|
-
|
|
88
|
-
| `local`
|
|
89
|
-
| `project` | `.claude/settings.json`
|
|
90
|
-
| `user`
|
|
90
|
+
| Scope | Where | Use case |
|
|
91
|
+
| --------- | ----------------------------- | ----------------------------------- |
|
|
92
|
+
| `local` | `.claude/settings.local.json` | Just for you, this project |
|
|
93
|
+
| `project` | `.claude/settings.json` | Shared with team (committed to git) |
|
|
94
|
+
| `user` | `~/.claude/settings.json` | All projects on this machine |
|
|
91
95
|
|
|
92
96
|
## How it works
|
|
93
97
|
|