claude-manager 1.5.1 → 1.5.4

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 +20 -2
  2. package/dist/cli.js +768 -275
  3. package/package.json +6 -3
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  A powerful terminal app for managing Claude Code settings, profiles, MCP servers, and skills. Switch between different AI providers, models, and configurations with a single command.
4
4
 
5
- ![Version](https://img.shields.io/badge/version-1.4.0-blue)
5
+ ![Version](https://img.shields.io/badge/version-1.5.3-blue)
6
6
  ![License](https://img.shields.io/badge/license-MIT-green)
7
7
 
8
8
  ## Features
@@ -19,12 +19,27 @@ A powerful terminal app for managing Claude Code settings, profiles, MCP servers
19
19
 
20
20
  ## Installation
21
21
 
22
+ ### Option 1: Homebrew (macOS)
23
+
24
+ ```bash
25
+ brew tap faisalnazir/claude-manager
26
+ brew install claude-manager
27
+ ```
28
+
29
+ ### Option 2: npm
30
+
31
+ ```bash
32
+ npm install -g claude-manager
33
+ ```
34
+
35
+ ### Option 3: curl
36
+
22
37
  ```bash
23
38
  curl -fsSL https://raw.githubusercontent.com/faisalnazir/claude-manager/main/install.sh | bash
24
39
  ```
25
40
 
26
41
  ### Requirements
27
- - [Bun](https://bun.sh) (auto-installed if missing)
42
+ - [Node.js 18+](https://nodejs.org) (for npm install)
28
43
  - [Claude Code](https://docs.anthropic.com/en/docs/claude-code)
29
44
 
30
45
  ## Quick Start
@@ -171,6 +186,9 @@ cm edit 1
171
186
 
172
187
  # Check what's installed
173
188
  cm status
189
+
190
+ # Update cm via npm
191
+ npm update -g claude-manager
174
192
  ```
175
193
 
176
194
  ## How It Works