ccmanager 1.1.0 → 1.1.1
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 +16 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,15 +45,27 @@ Following Claude Code's philosophy, CCManager keeps things minimal and intuitive
|
|
|
45
45
|
## Install
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
48
|
+
npm install -g ccmanager
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Or for local development:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
npm install
|
|
55
|
+
npm run build
|
|
56
|
+
npm start
|
|
51
57
|
```
|
|
52
58
|
|
|
53
59
|
## Usage
|
|
54
60
|
|
|
55
61
|
```bash
|
|
56
|
-
|
|
62
|
+
ccmanager
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
Or run without installing:
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
npx ccmanager
|
|
57
69
|
```
|
|
58
70
|
|
|
59
71
|
## Keyboard Shortcuts
|