copilotkit 3.0.0 → 3.0.2
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 +28 -0
- package/index.js +29947 -29922
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -149,3 +149,31 @@ License, license list, and Intelligence init flows revalidate the live Clerk
|
|
|
149
149
|
organization before using local auth. If that check fails because the cached
|
|
150
150
|
session is stale, the CLI may clear local auth and rerun browser login before
|
|
151
151
|
continuing.
|
|
152
|
+
|
|
153
|
+
## Telemetry
|
|
154
|
+
|
|
155
|
+
The CLI collects anonymous usage data (command names, success/failure, timing —
|
|
156
|
+
no project contents, no PII) to help improve the product. Collection is enabled
|
|
157
|
+
by default; the first interactive run prints a one-time notice explaining what
|
|
158
|
+
is collected and how to opt out.
|
|
159
|
+
|
|
160
|
+
Manage the preference at any time:
|
|
161
|
+
|
|
162
|
+
```bash
|
|
163
|
+
copilotkit telemetry status
|
|
164
|
+
copilotkit telemetry disable
|
|
165
|
+
copilotkit telemetry enable
|
|
166
|
+
copilotkit telemetry reset
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
Per-invocation environment overrides:
|
|
170
|
+
|
|
171
|
+
- `DO_NOT_TRACK=1` — disable telemetry (consoledonottrack.com standard).
|
|
172
|
+
- `COPILOTKIT_TELEMETRY_DISABLED=1` — disable telemetry.
|
|
173
|
+
- `COPILOTKIT_TELEMETRY_OPT_IN=1` — enable telemetry without persisting a decision.
|
|
174
|
+
|
|
175
|
+
A previously persisted denial (`copilotkit telemetry disable` or the old
|
|
176
|
+
first-run prompt) is always respected; no events are sent until telemetry is
|
|
177
|
+
explicitly re-enabled. `copilotkit telemetry reset` restores the full
|
|
178
|
+
fresh-install state: the decision is forgotten and the one-time notice shows
|
|
179
|
+
again on the next interactive run.
|