ccmanager 3.1.2 → 3.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 +19 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,13 +43,31 @@ Claude Squad doesn't show session states in its menu, making it hard to know whi
|
|
|
43
43
|
### 🎯 Simple and intuitive interface
|
|
44
44
|
Following Claude Code's philosophy, CCManager keeps things minimal and intuitive. The interface is so simple you'll understand it in seconds - no manual needed.
|
|
45
45
|
|
|
46
|
+
## Requirements
|
|
47
|
+
|
|
48
|
+
- **Node.js 22 or later** is required to run CCManager.
|
|
49
|
+
|
|
46
50
|
## Install
|
|
47
51
|
|
|
48
52
|
```bash
|
|
49
53
|
npm install -g ccmanager
|
|
50
54
|
```
|
|
51
55
|
|
|
52
|
-
|
|
56
|
+
### Using mise
|
|
57
|
+
|
|
58
|
+
If you use [mise](https://mise.jdx.dev/) as a version manager, you can install CCManager with:
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
mise install npm:ccmanager && mise use -g npm:ccmanager
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
To run CCManager with Node.js 22:
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
mise exec node@22 -- ccmanager
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### Local Development
|
|
53
71
|
|
|
54
72
|
```bash
|
|
55
73
|
npm install
|