@crewkit/cli 0.1.16 → 0.1.18
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 +14 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# @crewkit/cli
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@crewkit/cli)
|
|
4
|
-
|
|
4
|
+
|
|
5
5
|
|
|
6
6
|
Manage your team's Claude Code agents from the terminal. Sync role-based configs, run A/B experiments, and track what's working - all CLI-first.
|
|
7
7
|
|
|
@@ -60,6 +60,18 @@ curl -fsSL https://crewkit.io/install.sh | sh
|
|
|
60
60
|
npm install -g @crewkit/cli
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
+
### Homebrew (macOS/Linux)
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
brew install karibew/tap/crewkit
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
### Chocolatey (Windows)
|
|
70
|
+
|
|
71
|
+
```powershell
|
|
72
|
+
choco install crewkit
|
|
73
|
+
```
|
|
74
|
+
|
|
63
75
|
### Direct Download
|
|
64
76
|
|
|
65
77
|
See [GitHub Releases](https://github.com/karibew/crewkit-cli/releases) for platform-specific binaries.
|
|
@@ -115,4 +127,4 @@ See our [Privacy Policy](https://crewkit.io/privacy) for details.
|
|
|
115
127
|
|
|
116
128
|
## License
|
|
117
129
|
|
|
118
|
-
|
|
130
|
+
See [Terms of Service](https://crewkit.io/terms) for license details.
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crewkit/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.18",
|
|
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
|
-
"license": "
|
|
6
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/karibew/crewkit-cli.git"
|
|
@@ -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.18",
|
|
48
|
+
"@crewkit/cli-darwin-x64": "0.1.18",
|
|
49
|
+
"@crewkit/cli-linux-x64": "0.1.18",
|
|
50
|
+
"@crewkit/cli-win32-x64": "0.1.18"
|
|
51
51
|
}
|
|
52
52
|
}
|