@crewkit/cli 0.3.2 → 0.3.4
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 +4 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -105,12 +105,14 @@ See [GitHub Releases](https://github.com/karibew/crewkit-cli/releases) for platf
|
|
|
105
105
|
|
|
106
106
|
## Privacy & Telemetry
|
|
107
107
|
|
|
108
|
-
crewkit collects anonymous error reports via Sentry to improve reliability. No code, prompts, or personal data is collected. You can disable telemetry:
|
|
108
|
+
crewkit collects anonymous error reports via Sentry to improve reliability. No code, prompts, or personal data is collected. You can disable telemetry by setting either of these in your environment:
|
|
109
109
|
|
|
110
110
|
```bash
|
|
111
|
-
|
|
111
|
+
export CREWKIT_NO_TELEMETRY=1
|
|
112
112
|
```
|
|
113
113
|
|
|
114
|
+
`DO_NOT_TRACK=1` is honoured too. With either set, no Sentry client is initialized at all — nothing is sent.
|
|
115
|
+
|
|
114
116
|
See our [Privacy Policy](https://crewkit.io/privacy) for details.
|
|
115
117
|
|
|
116
118
|
## Documentation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crewkit/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
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.3.
|
|
48
|
-
"@crewkit/cli-darwin-x64": "0.3.
|
|
49
|
-
"@crewkit/cli-linux-x64": "0.3.
|
|
50
|
-
"@crewkit/cli-win32-x64": "0.3.
|
|
47
|
+
"@crewkit/cli-darwin-arm64": "0.3.4",
|
|
48
|
+
"@crewkit/cli-darwin-x64": "0.3.4",
|
|
49
|
+
"@crewkit/cli-linux-x64": "0.3.4",
|
|
50
|
+
"@crewkit/cli-win32-x64": "0.3.4"
|
|
51
51
|
}
|
|
52
52
|
}
|