@ai-outfitter/outfitter 1.8.0 → 1.8.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.
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
/**
|
|
2
|
-
|
|
1
|
+
/**
|
|
2
|
+
* PostHog project configuration. An empty key makes telemetry completely inert.
|
|
3
|
+
*
|
|
4
|
+
* This is a PostHog project API key: write-only, safe to ship in client code, and useless for
|
|
5
|
+
* reading any project data. It belongs to the `ai-outfitter` organization, project 562393, on
|
|
6
|
+
* PostHog Cloud US — so `POSTHOG_HOST` must stay a US endpoint or events are accepted nowhere.
|
|
7
|
+
*/
|
|
8
|
+
export declare const POSTHOG_API_KEY = "phc_v9FGDjtEC7h9UvLxHdJKaHFtFfMN7UZwpJ2weRTFoqvz";
|
|
3
9
|
export declare const POSTHOG_HOST = "https://us.i.posthog.com";
|
|
4
10
|
export declare const TELEMETRY_SHUTDOWN_BUDGET_MS = 1000;
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
/**
|
|
2
|
-
|
|
1
|
+
/**
|
|
2
|
+
* PostHog project configuration. An empty key makes telemetry completely inert.
|
|
3
|
+
*
|
|
4
|
+
* This is a PostHog project API key: write-only, safe to ship in client code, and useless for
|
|
5
|
+
* reading any project data. It belongs to the `ai-outfitter` organization, project 562393, on
|
|
6
|
+
* PostHog Cloud US — so `POSTHOG_HOST` must stay a US endpoint or events are accepted nowhere.
|
|
7
|
+
*/
|
|
8
|
+
export const POSTHOG_API_KEY = 'phc_v9FGDjtEC7h9UvLxHdJKaHFtFfMN7UZwpJ2weRTFoqvz';
|
|
3
9
|
export const POSTHOG_HOST = 'https://us.i.posthog.com';
|
|
4
10
|
export const TELEMETRY_SHUTDOWN_BUDGET_MS = 1000;
|
|
5
11
|
//# sourceMappingURL=TelemetryConstants.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TelemetryConstants.js","sourceRoot":"","sources":["../../src/telemetry/TelemetryConstants.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"TelemetryConstants.js","sourceRoot":"","sources":["../../src/telemetry/TelemetryConstants.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,kDAAkD,CAAC;AAClF,MAAM,CAAC,MAAM,YAAY,GAAG,0BAA0B,CAAC;AACvD,MAAM,CAAC,MAAM,4BAA4B,GAAG,IAAI,CAAC"}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# Telemetry
|
|
2
2
|
|
|
3
|
-
Outfitter includes opt-outable pseudonymous product analytics to measure command adoption and reliability.
|
|
3
|
+
Outfitter includes opt-outable pseudonymous product analytics to measure command adoption and reliability. A PostHog key is provisioned, so builds produced from this repository do send telemetry. The consent setting defaults to enabled and can be changed at any time.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
The first command that would send an event prints a one-time notice to stderr. The notice explains what is collected, what is excluded, and how to opt out.
|
|
6
|
+
|
|
7
|
+
Earlier builds shipped an empty key and were fully inert: they created no client or state, sent no events, and printed no notice.
|
|
6
8
|
|
|
7
9
|
## Event contract
|
|
8
10
|
|
|
@@ -45,7 +47,7 @@ In CI, telemetry remains enabled according to the same consent rules and events
|
|
|
45
47
|
|
|
46
48
|
## Where the data goes
|
|
47
49
|
|
|
48
|
-
|
|
50
|
+
Events go to the `ai-outfitter` organization's PostHog project on PostHog Cloud US at `https://us.i.posthog.com`. No retention period is stated here because this repository does not currently configure one.
|
|
49
51
|
|
|
50
52
|
## Control telemetry
|
|
51
53
|
|
package/package.json
CHANGED