@leeovery/claude-manager 2.0.11 → 2.0.12

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 (2) hide show
  1. package/README.md +8 -8
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -69,7 +69,7 @@ pnpm install # triggers postinstall
69
69
  **Removal:** pnpm's `preuninstall` hook is broken ([issue #3276](https://github.com/pnpm/pnpm/issues/3276)). Remove files first:
70
70
 
71
71
  ```bash
72
- npx claude-plugins remove @leeovery/claude-laravel && pnpm remove @leeovery/claude-laravel
72
+ npx claude-manager remove @leeovery/claude-laravel && pnpm remove @leeovery/claude-laravel
73
73
  ```
74
74
 
75
75
  ## How It Works
@@ -107,10 +107,10 @@ The manager provides a CLI tool for managing plugins:
107
107
 
108
108
  | Command | Description |
109
109
  |---------|-------------|
110
- | `npx claude-plugins list` | Show all installed plugins and their assets |
111
- | `npx claude-plugins install` | Sync all plugins from manifest (runs automatically) |
112
- | `npx claude-plugins add <package>` | Manually add a plugin |
113
- | `npx claude-plugins remove <package>` | Remove a plugin and its assets |
110
+ | `npx claude-manager list` | Show all installed plugins and their assets |
111
+ | `npx claude-manager install` | Sync all plugins from manifest (runs automatically) |
112
+ | `npx claude-manager add <package>` | Manually add a plugin |
113
+ | `npx claude-manager remove <package>` | Remove a plugin and its assets |
114
114
 
115
115
  ## Creating Plugins
116
116
 
@@ -134,8 +134,8 @@ Want to create your own skill or command packages?
134
134
  "@leeovery/claude-manager": "^2.0.0"
135
135
  },
136
136
  "scripts": {
137
- "postinstall": "claude-plugins add",
138
- "preuninstall": "claude-plugins remove"
137
+ "postinstall": "claude-manager add",
138
+ "preuninstall": "claude-manager remove"
139
139
  }
140
140
  }
141
141
  ```
@@ -200,7 +200,7 @@ This file should be committed to your repository. It ensures:
200
200
  Run the install command manually:
201
201
 
202
202
  ```bash
203
- npx claude-plugins install
203
+ npx claude-manager install
204
204
  ```
205
205
 
206
206
  ### Skills not showing in Claude Code
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@leeovery/claude-manager",
3
- "version": "2.0.11",
3
+ "version": "2.0.12",
4
4
  "packageManager": "pnpm@10.27.0",
5
5
  "description": "Plugin manager for Claude Code skills and commands",
6
6
  "type": "module",
7
7
  "main": "dist/index.js",
8
8
  "types": "dist/index.d.ts",
9
9
  "bin": {
10
- "claude-plugins": "dist/cli.js"
10
+ "claude-manager": "dist/cli.js"
11
11
  },
12
12
  "scripts": {
13
13
  "build": "tsup",