@crewkit/cli 0.3.5 → 0.4.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 +18 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -76,6 +76,24 @@ choco install crewkit
|
|
|
76
76
|
|
|
77
77
|
See [GitHub Releases](https://github.com/karibew/crewkit-cli/releases) for platform-specific binaries.
|
|
78
78
|
|
|
79
|
+
### Shell completions
|
|
80
|
+
|
|
81
|
+
Tab completions for bash, zsh, fish, and PowerShell (Homebrew installs them
|
|
82
|
+
automatically):
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
# bash
|
|
86
|
+
echo 'source <(crewkit completions bash)' >> ~/.bashrc
|
|
87
|
+
|
|
88
|
+
# zsh — add fpath+=~/.zfunc to ~/.zshrc before compinit
|
|
89
|
+
mkdir -p ~/.zfunc && crewkit completions zsh > ~/.zfunc/_crewkit
|
|
90
|
+
|
|
91
|
+
# fish
|
|
92
|
+
mkdir -p ~/.config/fish/completions && crewkit completions fish > ~/.config/fish/completions/crewkit.fish
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
`crewkit completions --help` has the full per-shell setup, including PowerShell.
|
|
96
|
+
|
|
79
97
|
## Supported Platforms
|
|
80
98
|
|
|
81
99
|
- macOS Apple Silicon (M1/M2/M3/M4)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crewkit/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.1",
|
|
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": "SEE LICENSE IN LICENSE",
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"node": ">=18"
|
|
45
45
|
},
|
|
46
46
|
"optionalDependencies": {
|
|
47
|
-
"@crewkit/cli-darwin-arm64": "0.
|
|
48
|
-
"@crewkit/cli-darwin-x64": "0.
|
|
49
|
-
"@crewkit/cli-linux-x64": "0.
|
|
50
|
-
"@crewkit/cli-win32-x64": "0.
|
|
47
|
+
"@crewkit/cli-darwin-arm64": "0.4.1",
|
|
48
|
+
"@crewkit/cli-darwin-x64": "0.4.1",
|
|
49
|
+
"@crewkit/cli-linux-x64": "0.4.1",
|
|
50
|
+
"@crewkit/cli-win32-x64": "0.4.1"
|
|
51
51
|
}
|
|
52
52
|
}
|