@crewkit/cli 0.1.11 → 0.1.13

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.
Files changed (2) hide show
  1. package/README.md +8 -2
  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
- npm install -g @crewkit/cli
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
- ### npm (recommended)
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.11",
3
+ "version": "0.1.13",
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.11",
48
- "@crewkit/cli-darwin-x64": "0.1.3",
49
- "@crewkit/cli-linux-x64": "0.1.11",
50
- "@crewkit/cli-win32-x64": "0.1.3"
47
+ "@crewkit/cli-darwin-arm64": "0.1.13",
48
+ "@crewkit/cli-darwin-x64": "0.1.13",
49
+ "@crewkit/cli-linux-x64": "0.1.13",
50
+ "@crewkit/cli-win32-x64": "0.1.13"
51
51
  }
52
52
  }