@biswaviraj/cc-setup 1.0.3 → 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.
Files changed (3) hide show
  1. package/README.md +29 -25
  2. package/dist/index.js +0 -0
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,23 +1,27 @@
1
1
  # cc-setup
2
2
 
3
- Add your preferred Claude Code plugins and MCP servers to any project in seconds.
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
  ![cc-setup demo](./demo.gif)
6
12
 
7
- ```bash
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
- Pick what you need, choose the scope, done. No manual config editing.
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 | Required | Description |
56
- |-------|----------|-------------|
57
- | `value` | yes | Unique ID |
58
- | `label` | yes | Display name |
59
- | `hint` | yes | Short description |
60
- | `install` | yes | Plugin install ID (e.g. `my-plugin` or `my-plugin@marketplace`) |
61
- | `marketplace` | no | GitHub `org/repo` for non-official marketplaces |
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 | Required | Description |
66
- |-------|----------|-------------|
67
- | `value` | yes | Unique ID |
68
- | `label` | yes | Display name |
69
- | `hint` | yes | Short description |
70
- | `command` | yes | The command to run (e.g. `npx my-mcp-server`) |
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 | Where | Use case |
87
- |-------|-------|----------|
88
- | `local` | `.claude/settings.local.json` | Just for you, this project |
89
- | `project` | `.claude/settings.json` | Shared with team (committed to git) |
90
- | `user` | `~/.claude/settings.json` | All projects on this machine |
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
 
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@biswaviraj/cc-setup",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "Add your preferred Claude Code plugins and MCP servers to any project in seconds",
5
5
  "type": "module",
6
6
  "bin": {
7
- "cc-setup": "./dist/index.mjs"
7
+ "cc-setup": "./dist/index.js"
8
8
  },
9
9
  "files": [
10
10
  "dist"