mirror of
https://github.com/stablyai/orca.git
synced 2026-09-23 16:02:24 +00:00
* Split speech session lifecycle * Split terminal output scheduler pipeline * Split mobile browser pane modules * Prune resolved max-lines suppressions * Split pane tree equalization logic * Extract mobile troubleshoot screen styles * Split external automation manager * Split main window service attachments * Split hosted review creation checks * Split automation dispatch event handling * Split settings navigation metadata * Split daemon initialization lifecycle * Split GitLab item dialog * Split relay dispatcher layers * Split mobile host screen * Retarget mobile view settings source test * Split runtime file client layers * Split ports panel layers * Split runtime environments pane layers * Split local PTY provider responsibilities * Split CDP bridge responsibilities * Split relay Git handler responsibilities * Track moved relay Git fetch audit * Split Linear item drawer responsibilities * Split telemetry event schema responsibilities * Fix F3-speech for #17123 * Fix F1-cycle for #17131 * Fix F4-navtest for #17157 * Fix F2-allowlist for #17161
136 lines
5.4 KiB
TypeScript
136 lines
5.4 KiB
TypeScript
import { z } from 'zod'
|
|
|
|
import { eventSchemas } from './telemetry-event-registry'
|
|
import type { cohortSchema } from './telemetry-onboarding-foundation-schemas'
|
|
|
|
export type EventMap = { [N in keyof typeof eventSchemas]: z.infer<(typeof eventSchemas)[N]> }
|
|
export type EventName = keyof EventMap
|
|
export type EventProps<N extends EventName> = EventMap[N]
|
|
|
|
// Why: non-`ZodObject` schemas have no `.shape`; return null so `key in undefined` can't throw at module load.
|
|
function eventSchemaShape(schema: z.ZodTypeAny): z.ZodRawShape | null {
|
|
if (schema instanceof z.ZodObject) {
|
|
return schema.shape
|
|
}
|
|
|
|
const shapeBearingSchema = schema as { shape?: unknown }
|
|
// Why: refined object schemas may expose `.shape` even when refinement breaks `instanceof ZodObject`.
|
|
if (shapeBearingSchema.shape && typeof shapeBearingSchema.shape === 'object') {
|
|
return shapeBearingSchema.shape as z.ZodRawShape
|
|
}
|
|
return null
|
|
}
|
|
|
|
function eventsWithShapeKey(key: string): ReadonlySet<EventName> {
|
|
return new Set(
|
|
(Object.entries(eventSchemas) as [EventName, z.ZodTypeAny][])
|
|
.filter(([, schema]) => {
|
|
const shape = eventSchemaShape(schema)
|
|
return shape !== null && key in shape
|
|
})
|
|
.map(([name]) => name)
|
|
)
|
|
}
|
|
|
|
// Cohort injection is gated on this derived set because `.strict()` schemas drop events that don't declare `nth_repo_added`.
|
|
const COHORT_EXTENDED_SET = eventsWithShapeKey('nth_repo_added')
|
|
|
|
// Compile-time roster guarding the runtime injection set against silent schema drift.
|
|
type _CohortExtendedRoster =
|
|
| 'app_opened'
|
|
| 'app_starred_orca'
|
|
| 'star_nag_outcome'
|
|
| 'feature_interaction_usage_bucket_reached'
|
|
| 'repo_added'
|
|
| 'add_repo_setup_step_action'
|
|
| 'add_repo_existing_workspaces_detected'
|
|
| 'add_repo_default_checkout_handoff'
|
|
| 'add_repo_nested_scan_result'
|
|
| 'add_repo_nested_import_action'
|
|
| 'add_repo_nested_import_result'
|
|
| 'workspace_created'
|
|
| 'workspace_create_failed'
|
|
| 'setup_script_prompt_shown'
|
|
| 'setup_script_prompt_action'
|
|
| 'agent_started'
|
|
| 'agent_prompt_sent'
|
|
| 'agent_error'
|
|
| 'orca_cli_feature_tip_shown'
|
|
| 'orca_cli_feature_tip_setup_clicked'
|
|
| 'orca_cli_feature_tip_setup_result'
|
|
| 'cmd_j_palette_feature_tip_shown'
|
|
| 'cmd_j_palette_feature_tip_acknowledged'
|
|
// Why: strict empty payloads infer a string index signature; ignore index-only keys so they aren't pulled into keyed rosters.
|
|
type _KnownPayloadKeys<T> = string extends keyof T ? never : keyof T
|
|
type _DerivedCohortExtendedEvents = {
|
|
[N in EventName]: 'nth_repo_added' extends _KnownPayloadKeys<EventMap[N]> ? N : never
|
|
}[EventName]
|
|
type _CohortExtendedRosterSync = _CohortExtendedRoster extends _DerivedCohortExtendedEvents
|
|
? _DerivedCohortExtendedEvents extends _CohortExtendedRoster
|
|
? true
|
|
: never
|
|
: never
|
|
const _cohortExtendedRosterSyncCheck: _CohortExtendedRosterSync = true
|
|
void _cohortExtendedRosterSyncCheck
|
|
|
|
export function isCohortExtendedEvent(name: EventName): boolean {
|
|
return COHORT_EXTENDED_SET.has(name)
|
|
}
|
|
|
|
// Events whose schema declares `cohort`: the IPC handler injects cohort only for these — a `.strict()` schema without it would reject the event.
|
|
const ONBOARDING_COHORT_SET = eventsWithShapeKey('cohort')
|
|
// `NonNullable` strips `undefined` introduced by `cohortSchema`'s `.optional()`.
|
|
export type OnboardingCohort = NonNullable<z.infer<typeof cohortSchema>>
|
|
|
|
// Compile-time roster: dropping `cohort` from any of these fails tsc, rather than silently at runtime (`.optional()` would tolerate that).
|
|
type _OnboardingCohortRoster =
|
|
| 'onboarding_started'
|
|
| 'onboarding_step_viewed'
|
|
| 'onboarding_step_completed'
|
|
| 'onboarding_step_skipped'
|
|
| 'onboarding_tour_outcome'
|
|
| 'onboarding_step4_path_clicked'
|
|
| 'onboarding_step4_path_failed'
|
|
| 'onboarding_task_sources_snapshot'
|
|
| 'onboarding_windows_terminal_snapshot'
|
|
| 'onboarding_completed'
|
|
| 'onboarding_dismissed'
|
|
| 'onboarding_agent_picked'
|
|
| 'onboarding_ghostty_discovered'
|
|
| 'onboarding_ghostty_import_clicked'
|
|
| 'onboarding_ghostty_import_failed'
|
|
| 'onboarding_feature_setup_toggled'
|
|
| 'onboarding_feature_setup_run'
|
|
| 'onboarding_feature_setup_terminal_opened'
|
|
| 'onboarding_feature_setup_terminal_interacted'
|
|
type _DerivedOnboardingCohortEvents = {
|
|
[N in EventName]: 'cohort' extends _KnownPayloadKeys<EventMap[N]> ? N : never
|
|
}[EventName]
|
|
type _OnboardingCohortRosterSync = _OnboardingCohortRoster extends _DerivedOnboardingCohortEvents
|
|
? _DerivedOnboardingCohortEvents extends _OnboardingCohortRoster
|
|
? true
|
|
: never
|
|
: never
|
|
const _onboardingCohortRosterSyncCheck: _OnboardingCohortRosterSync = true
|
|
void _onboardingCohortRosterSyncCheck
|
|
|
|
export function isOnboardingEvent(name: EventName): boolean {
|
|
return ONBOARDING_COHORT_SET.has(name)
|
|
}
|
|
|
|
// No `env` discriminator: every transmitted event is from an official CI build (dev/contributor builds only console-mirror).
|
|
// The per-field `.max(64)` is the validator's string-length cap — there is no separate post-parse length check.
|
|
export const commonPropsSchema = z
|
|
.object({
|
|
app_version: z.string().max(64),
|
|
platform: z.string().max(64),
|
|
arch: z.string().max(64),
|
|
os_release: z.string().max(64),
|
|
// `.min(1)`: an empty install_id/session_id would collapse unrelated events into one synthetic user/session, corrupting analytics.
|
|
install_id: z.string().min(1).max(64),
|
|
session_id: z.string().min(1).max(64),
|
|
orca_channel: z.enum(['stable', 'rc'])
|
|
})
|
|
.strict()
|
|
export type CommonProps = z.infer<typeof commonPropsSchema>
|