@crewkit/cli 0.5.5 → 0.6.0

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 +6 -4
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -10,7 +10,7 @@ Manage your team's Claude Code agents from the terminal. Sync role-based configs
10
10
  ```bash
11
11
  curl -fsSL https://crewkit.io/install.sh | sh
12
12
  crewkit auth login
13
- crewkit code
13
+ crewkit
14
14
  ```
15
15
 
16
16
  That's it. Your team's agent configurations are now synced.
@@ -26,15 +26,17 @@ That's it. Your team's agent configurations are now synced.
26
26
 
27
27
  | Command | Description |
28
28
  |---------|-------------|
29
- | `crewkit code` | Launch Claude Code with your team's agent configs |
30
- | `crewkit code -p "prompt"` | Headless mode for scripting and CI |
29
+ | `crewkit` | Start a coding session — launches Claude Code with your team's agent configs |
30
+ | `crewkit code` | The same launch under its explicit name |
31
+ | `crewkit tui` | The same session inside crewkit's terminal interface (live sidebar) |
32
+ | `crewkit -p "prompt"` | Headless mode for scripting and CI |
31
33
  | `crewkit auth login` | Authenticate with crewkit |
32
34
  | `crewkit auth status` | Check authentication status |
33
35
 
34
36
  ## Features
35
37
 
36
38
  **For Individual Developers**
37
- - Automatic agent sync when you run `crewkit code`
39
+ - Automatic agent sync when you run `crewkit`
38
40
  - Session history and metrics tracking
39
41
  - Works in any git repository
40
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewkit/cli",
3
- "version": "0.5.5",
3
+ "version": "0.6.0",
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",
@@ -45,7 +45,7 @@
45
45
  "node": ">=18"
46
46
  },
47
47
  "optionalDependencies": {
48
- "@crewkit/cli-darwin-arm64": "0.5.5",
49
- "@crewkit/cli-linux-x64": "0.5.5"
48
+ "@crewkit/cli-darwin-arm64": "0.6.0",
49
+ "@crewkit/cli-linux-x64": "0.6.0"
50
50
  }
51
51
  }