@crewkit/cli 0.1.11 → 0.1.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.
- package/README.md +8 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ Manage your team's Claude Code agents from the terminal. Sync role-based configs
|
|
|
8
8
|
## Quick Start
|
|
9
9
|
|
|
10
10
|
```bash
|
|
11
|
-
|
|
11
|
+
curl -fsSL https://crewkit.io/install.sh | sh
|
|
12
12
|
crewkit auth login
|
|
13
13
|
crewkit code
|
|
14
14
|
```
|
|
@@ -48,7 +48,13 @@ That's it. Your team's agent configurations are now synced.
|
|
|
48
48
|
|
|
49
49
|
## Installation
|
|
50
50
|
|
|
51
|
-
###
|
|
51
|
+
### Shell Script (recommended)
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
curl -fsSL https://crewkit.io/install.sh | sh
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
### npm
|
|
52
58
|
|
|
53
59
|
```bash
|
|
54
60
|
npm install -g @crewkit/cli
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crewkit/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "Manage Claude Code agents for teams - role-based configs, A/B testing, accuracy tracking",
|
|
5
5
|
"author": "crewkit <hello@crewkit.io>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"node": ">=18"
|
|
45
45
|
},
|
|
46
46
|
"optionalDependencies": {
|
|
47
|
-
"@crewkit/cli-darwin-arm64": "0.1.
|
|
48
|
-
"@crewkit/cli-darwin-x64": "0.1.
|
|
49
|
-
"@crewkit/cli-linux-x64": "0.1.
|
|
50
|
-
"@crewkit/cli-win32-x64": "0.1.
|
|
47
|
+
"@crewkit/cli-darwin-arm64": "0.1.12",
|
|
48
|
+
"@crewkit/cli-darwin-x64": "0.1.12",
|
|
49
|
+
"@crewkit/cli-linux-x64": "0.1.12",
|
|
50
|
+
"@crewkit/cli-win32-x64": "0.1.12"
|
|
51
51
|
}
|
|
52
52
|
}
|