@wireai/activation 0.13.3 → 0.13.6-next.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 (61) hide show
  1. package/AGENTS.md +3 -1
  2. package/CHANGELOG.md +63 -0
  3. package/INTEGRATION_PROMPT.md +7 -1
  4. package/README.md +183 -0
  5. package/dist/analytics/index.d.mts +86 -6
  6. package/dist/analytics/index.d.ts +86 -6
  7. package/dist/analytics/index.js +167 -2
  8. package/dist/analytics/index.js.map +1 -1
  9. package/dist/analytics/index.mjs +167 -3
  10. package/dist/analytics/index.mjs.map +1 -1
  11. package/dist/coachmarks/index.d.mts +1 -1
  12. package/dist/coachmarks/index.d.ts +1 -1
  13. package/dist/coachmarks/index.js.map +1 -1
  14. package/dist/coachmarks/index.mjs.map +1 -1
  15. package/dist/{currentSession-BoWtr3Jp.d.mts → currentSession-Cs3lweFZ.d.mts} +15 -2
  16. package/dist/{currentSession-CCOMlaQ2.d.ts → currentSession-DD6dKB0i.d.ts} +15 -2
  17. package/dist/{decision-Cjw0jbEj.d.mts → decision-Bgo17oH7.d.mts} +1 -1
  18. package/dist/{decision-GfpXAsk_.d.ts → decision-Bkh_LigV.d.ts} +1 -1
  19. package/dist/index.d.mts +4 -4
  20. package/dist/index.d.ts +4 -4
  21. package/dist/index.js +28 -3
  22. package/dist/index.js.map +1 -1
  23. package/dist/index.mjs +28 -3
  24. package/dist/index.mjs.map +1 -1
  25. package/dist/questionnaire/index.d.mts +3 -3
  26. package/dist/questionnaire/index.d.ts +3 -3
  27. package/dist/questionnaire/index.js.map +1 -1
  28. package/dist/questionnaire/index.mjs.map +1 -1
  29. package/dist/reviews/index.d.mts +5 -5
  30. package/dist/reviews/index.d.ts +5 -5
  31. package/dist/reviews/index.js +4 -2
  32. package/dist/reviews/index.js.map +1 -1
  33. package/dist/reviews/index.mjs +4 -2
  34. package/dist/reviews/index.mjs.map +1 -1
  35. package/dist/showcase/index.d.mts +1 -1
  36. package/dist/showcase/index.d.ts +1 -1
  37. package/dist/showcase/index.js.map +1 -1
  38. package/dist/showcase/index.mjs.map +1 -1
  39. package/dist/{transport-DFuPyCoJ.d.ts → transport-B_0SgCBe.d.ts} +1 -1
  40. package/dist/{transport-CefdERPs.d.mts → transport-j5gFfJhK.d.mts} +1 -1
  41. package/dist/{types-CKFhyrMu.d.mts → types-BpwiRpA8.d.mts} +1 -1
  42. package/dist/{types-CKFhyrMu.d.ts → types-BpwiRpA8.d.ts} +1 -1
  43. package/dist/{types-l2tfg23P.d.mts → types-Cju-1_jT.d.mts} +1 -1
  44. package/dist/{types-UVYt9BJe.d.ts → types-h2BZvl1t.d.ts} +1 -1
  45. package/llms.txt +1 -1
  46. package/package.json +3 -1
  47. package/src/OnboardingFlow.tsx +8 -1
  48. package/src/activation/revalidation.ts +9 -1
  49. package/src/analytics/currentSession.ts +10 -0
  50. package/src/analytics/eventQueue.ts +5 -0
  51. package/src/analytics/index.ts +6 -0
  52. package/src/analytics/reportClientEvent.ts +29 -7
  53. package/src/analytics/wireDoctor.ts +330 -0
  54. package/src/coachmarks/runtime.ts +10 -1
  55. package/src/context/deviceId.ts +10 -1
  56. package/src/features/WireFeaturesProvider.tsx +8 -0
  57. package/src/identity/identityRecord.ts +9 -1
  58. package/src/reviews/runtime.ts +11 -1
  59. package/src/theme/ThemeContext.tsx +7 -0
  60. package/src/types.ts +13 -0
  61. package/src/utils/readPlan.ts +74 -0
package/AGENTS.md CHANGED
@@ -32,7 +32,7 @@ Everything an integration needs lives on the ROOT import (`@wireai/activation`).
32
32
  subpaths are optional secondary feature modules; import one only if you use it.
33
33
 
34
34
  - `@wireai/activation` (root): `WireOnboarding`, the helpers/types below, and the device-only event reporters (`reportClientEvent`, `makeSessionId`, `WIRE_ONBOARDING_EVENTS`, see "App events" below).
35
- - `@wireai/activation/analytics`: the analytics FACADE and its queue: `createAnalytics`, `useAnalytics`, `createScreenTracker`, `reportAppEvent`, `createEventQueue`, `clearUserContext`. Except for `clearUserContext`, these are NOT root exports; importing them from the root does not compile. `clearUserContext` IS also a root export (`import { clearUserContext } from "@wireai/activation"`), which is the form the README teaches for the sign-out purge.
35
+ - `@wireai/activation/analytics`: the analytics FACADE and its queue: `createAnalytics`, `useAnalytics`, `createScreenTracker`, `reportAppEvent`, `createEventQueue`, `clearUserContext`, `wireDoctor`. Except for `clearUserContext`, these are NOT root exports; importing them from the root does not compile. `clearUserContext` IS also a root export (`import { clearUserContext } from "@wireai/activation"`), which is the form the README teaches for the sign-out purge. `wireDoctor({ target, storage })` is the DEV-ONLY integration self-check: it resolves `{ok, checks:[{name, ok, detail}]}`, never throws, and posts one `dry_run` probe event so a broken integration is caught on the first run instead of in a funnel report. It is dev-gated on `__DEV__` (a release build makes no network call), it reports the apiKey's SHAPE and never its value, and its verdict is read from the ack body, never from the status code. See the README "Verify your integration" section.
36
36
  - `@wireai/activation/coachmarks`: in-app coachmark tour (`CoachmarkProvider`, `useCoachmarkTour`).
37
37
  - `@wireai/activation/showcase`: post-onboarding feature showcase (`FeatureShowcase`).
38
38
  - `@wireai/activation/reviews`: store-review gating (`ReviewGate`, `ReviewModal`, `useReviewGate`, `fetchReviewDecision`).
@@ -79,7 +79,9 @@ subpaths are optional secondary feature modules; import one only if you use it.
79
79
  | `storage` | `WireOnboardingStorage` | no | Host-injected AsyncStorage-compatible storage. When set, the kit caches its session id so an app kill mid-onboarding resumes the SAME backend session (keeps the `started` count honest). Persists the correlation seed only, never answers. |
80
80
  | `sessionTtlMs` | `number` | no | How long a persisted session id stays resumable, ms. Default `3600000` (1h). Only meaningful with `storage`. |
81
81
  | `persistKey` | `string` | no | Override the storage key (default `wireai:session:<config.appId>`). Scope it per-user if one device runs onboarding for multiple accounts. Only meaningful with `storage`. |
82
+ | `retainSessionOnComplete` | `boolean` | no | Opt IN: keep the persisted session seed alive ACROSS completion. A multi-stage or replay-after-complete re-entry within one signup (typically a `key=` remount) then resumes the SAME session instead of minting a fresh `metadata.sessionId`, which the backend adopts as a second `contextId` and double-counts as a `session_started`. Omitted or `false` clears the seed on completion, the legacy single-stage behavior, so leaving it unset changes nothing. When `true`, freshness comes from `sessionTtlMs` plus an explicit new-run signal (scope a new `persistKey`, e.g. a per-signup id). Only meaningful with `storage`. |
82
83
  | `userContext` | `Record<string, string \| number \| boolean>` | no | Host-injected, non-PII context (signup method, referral, plan tier, a hashed user id). Forwarded to the backend + client events for funnel segmentation. No raw PII. |
84
+ | `autoJoinKey` | `boolean` | no | Opt OUT of the automatic join key. Default `true`. When `userContext` carries no `device_key` and `storage` is present and actually persists (a storage adapter that throws or rejects is treated exactly like no `storage`), the kit injects its own per-install key, the same id `createAnalytics` / `createWireActivation` mint and persist, so the `activated` funnel joins with no host wiring. Pass `autoJoinKey={false}` for a genuinely UNLINKED session: that restores the pre-0.12.2 behavior and the dev warning fires again. It never overrides a `device_key` you passed, and it cannot inject without `storage`. |
83
85
  | `userId` | `string` | no | The host's OPAQUE PSEUDONYMOUS user id (not an email/name/phone), so onboarding sessions reconcile to real users. Late binding supported (mount, mid-session, or post-flow via `identifyOnboarding`). Capped at 128 chars. |
84
86
 
85
87
  ### `config` fields (`WireOnboardingConfig`)
package/CHANGELOG.md CHANGED
@@ -3,6 +3,69 @@
3
3
  All notable changes to `@wireai/activation` (formerly `wireai-onboarding`).
4
4
  Historical entries below the rename keep the old package name on purpose.
5
5
 
6
+ ## [0.13.5] - 2026-08-03
7
+
8
+ Two halves of one idea: stop finding out about a broken events integration from a funnel report.
9
+
10
+ `POST /v1/events` answers HTTP 200 for a batch it discards and reports the refusal only in the
11
+ response body, so a client/server contract drift breaks nothing anyone can see. It quietly flattens
12
+ a graph. That is exactly how a numeric `ts` threw away every `app_event` through 0.13.0. This
13
+ release adds a check on each side of that gap: one in CI, one on the developer's first run.
14
+
15
+ (0.13.4 is deliberately skipped.)
16
+
17
+ ### Added
18
+
19
+ - **`wireDoctor`, a dev-only integration self-check**, exported from `@wireai/activation/analytics`.
20
+ It resolves a structured report and never throws, whatever the target, the storage adapter or the
21
+ network does. Four independent checks, each a `{name, ok, detail}` unit:
22
+
23
+ 1. `target`: the `serverUrl` parses and an `apiKey` is present. It reports the key's SHAPE only,
24
+ its length and whether the prefix matches, and never any character of the key itself.
25
+ 2. `reachability`: `GET /v1/events/contract` answers, so the URL really is a Wire server.
26
+ 3. `storage`: a write / read / delete probe proves the offline queue can persist. The probe uses
27
+ its own key, outside the queue's namespace, and deletes it in a `finally` even when the read or
28
+ the write throws. A diagnostic that eats a pending backlog would be worse than no diagnostic.
29
+ 4. `round_trip`: one synthetic event goes through the REAL transport with `dry_run: true`, so the
30
+ server validates it exactly as it would a production event and writes nothing. The verdict is
31
+ read from the ack body (`written === 1 && skipped === 0`), never from the status code. A
32
+ `ts`-shaped drift surfaces as `skipped: 1` carrying the server's own `field: "ts"`.
33
+
34
+ Dev-only by contract: the `__DEV__` guard is the first statement, so a release build makes no
35
+ network call and writes no storage key. The report says it was skipped rather than reporting a
36
+ pass it never earned. No new export subpath, no new `globalThis` slot, and a host that never calls
37
+ it does not bundle it.
38
+
39
+ - **An `events-contract` CI job** that validates the payloads `buildEventsRequest` actually produces
40
+ against the JSON Schema the production server publishes, one fixture per send-path family
41
+ (analytics façade, session-start lifecycle, review transport, `client_fallback`, the unmount
42
+ `dropped`, and an offline queue flush carrying a persisted numeric-`ts` backlog). It uses the real
43
+ transport rather than a copied envelope, and reads the schema live rather than from a vendored
44
+ snapshot, so it cannot pass by validating a replica of something that has already drifted.
45
+
46
+ The fixtures are defined once, in `test/fixtures/sendPathFamilies.ts`, and read by both this check
47
+ and the transport-parity test. Each one names the emitter (`file:line`) whose shape it was built
48
+ from, and the check prints that line beside its result, so "this is what that path really sends"
49
+ is a claim you can check rather than one you have to trust. The module is under `test/` and is
50
+ absent from `files`, so it never reaches the tarball.
51
+
52
+ It fails, it never skips. A network error, a non-200, an unparseable contract, a missing
53
+ `client_event_types`, an unknown `event_type` or any invalid event exits non-zero. Run it locally
54
+ with `npm run check:contract`. `ajv` is a devDependency and does not ship in the tarball.
55
+
56
+ ### Changed
57
+
58
+ - **`buildEventsRequest` takes an optional third argument, `options?: { dryRun?: boolean }`.** The
59
+ `dry_run` key is added to the envelope ONLY on an explicit `true`, so every production send path
60
+ (which passes nothing) still serializes byte-identical bytes. That parity is asserted per
61
+ send-path family against golden strings captured from 0.13.3, because FIVE shipped call sites ride
62
+ this one envelope (the offline queue's `postBatch`, the fire-and-forget POST, the awaitable POST,
63
+ the review transport, and the session-start lifecycle) and a diagnostic has no business changing it
64
+ for them.
65
+ - **`readEventsAck` is exported from its module** so `wireDoctor` reuses the same ack reader the send
66
+ paths use. It is deliberately NOT added to the `./analytics` barrel: the module's surface widens,
67
+ the package's public API does not. The exports map still has exactly 8 keys.
68
+
6
69
  ## [0.13.3] — 2026-08-02
7
70
 
8
71
  The headline is a fix nobody could see from inside the kit: **on the DEFAULT configuration, a
@@ -76,7 +76,13 @@ STEPS (do them in order, stop and ask if a convention is ambiguous):
76
76
  onboarding on `user_context.device_key` and never on `session_id` (those are separate id spaces
77
77
  and intersecting them returns zero rows). If my app has no single stable device key yet, say so
78
78
  instead of inventing one.
79
- 11. Verify: type-check (and lint the changed files); test the flag-off + backend-error paths.
79
+ 11. Verify: type-check (and lint the changed files); test the flag-off + backend-error paths. Then
80
+ prove the events wiring actually works, because `/v1/events` answers 200 for a batch it discards:
81
+ behind an `if (__DEV__)` guard, call
82
+ `wireDoctor({ target: { serverUrl: WIREAI_SERVER_URL, apiKey: WIREAI_API_KEY }, storage })` from
83
+ `@wireai/activation/analytics` once at app root and log the report. Every check must come back
84
+ `ok`. A failing `round_trip` names the field the server refused. Remove the call, or leave it
85
+ dev-gated, once the report is green.
80
86
 
81
87
  Report back: the files you changed (path:line), the typecheck result, and anything you couldn't
82
88
  infer about my conventions.
package/README.md CHANGED
@@ -234,6 +234,7 @@ import { WireOnboarding } from "@wireai/activation";
234
234
  | `onComplete` | `(result: { answers, raw }) => void` | Fires when the user taps the terminal recap's CTA. **Required.** |
235
235
  | `theme` | `Partial<OnboardingTheme>` | Brand colors/fonts/radius/spacing, deep-merged over a neutral default. |
236
236
  | `illustrations` | `Record<string, ReactNode>` | App artwork for `InterstitialCard`, keyed by name. |
237
+ | `icons` | `Record<string, ReactNode>` | Your own icon nodes, keyed by the semantic name the AI emits (`{ instagram: <BrandIg/> }`). Checked first, so use it to put your brand mark on a choice card, to add names the vocabulary does not carry, or to get icons at all without installing `@expo/vector-icons`. Anything you leave out falls back to that optional peer, then to no icon. Never a crash. See [Icons](#icons). |
237
238
  | `validators` | `Record<string, StepValidator>` | Per-step, keyed by base-question key (e.g. `username`). Blocks advance + shows an inline error. When the backend sends a `progress.slot_id` for a screen, the kit looks up that slot FIRST and falls back to the question key, so a validator map written against today's keys keeps working. |
238
239
  | `permissionScreens` | `PermissionScreenConfig[]` | Priming screens injected mid-flow, starting with notifications. The screen explains why, and the OS dialog opens **only** on the primary tap, never on mount. Zero new dependencies: you inject `request`. See [Permission screens](#permission-screens-the-priming-pattern). |
239
240
  | `onSkip` | `() => void` | User skipped. |
@@ -249,6 +250,7 @@ import { WireOnboarding } from "@wireai/activation";
249
250
  | `storage` | `WireOnboardingStorage` | Host-injected storage (AsyncStorage-compatible `getItem/setItem/removeItem`) for **session-id persistence**: an app KILL mid-onboarding resumes the SAME backend session instead of minting a new one, so the funnel's `started` count stays honest (no phantom drops). Pass AsyncStorage as-is, or a 3-line MMKV wrapper. Omit for the previous per-mount behavior. Persists the kit's own correlation seed only — answers stay the host's job via `onComplete`. |
250
251
  | `sessionTtlMs` | `number` | How long a persisted session id stays resumable. Default `3600000` (1h, the backend's session TTL). With `storage` only. |
251
252
  | `persistKey` | `string` | Override the storage key (default `wireai:session:<appId>`). Scope per-user if one device can onboard multiple accounts mid-flow. With `storage` only. |
253
+ | `retainSessionOnComplete` | `boolean` | Opt IN: keep the persisted session seed alive across completion. A multi-stage signup that re-enters onboarding (typically a `key=` remount) then resumes the SAME session instead of minting a fresh `metadata.sessionId`, which the backend adopts as a second `contextId` and double-counts as a `session_started`. Omitted or `false` clears the seed on completion, the legacy single-stage behavior, so leaving it unset changes nothing. With `true`, freshness comes from `sessionTtlMs` plus an explicit new-run signal (scope a new `persistKey`, e.g. a per-signup id). With `storage` only. |
252
254
  | `userContext` | `Record<string, string \| number \| boolean>` | **This is where the join key goes.** `user_context.device_key` is the only thing that joins this onboarding session to the app's later events, so pass `userContext={activationJoinContext(deviceKey)}` (or `activationJoinContext(resolveAutoDeviceKey({ appId, storage }))` if your app owns no device id). Since 0.12.2, omitting it no longer empties the funnel silently: with `storage`, the kit injects its own key (see [The join key](#the-join-key-device_key-never-session_id) and `autoJoinKey` below). Second job: any other non-PII context the app already knows (signup method, referral, plan, a HASHED user id), forwarded on session metadata + client events for funnel segmentation. **No PII on THIS prop** (no raw emails/names); primitives only; the server caps size/keys. See [Device & user context](#device--user-context). ⚠️ Distinct from the analytics/activation **`WireUserContext`** object (`createAnalytics` / `useWireActivation`), which additionally accepts an opt-in raw `userEmail` — see [Rich user context & PII](#rich-user-context--pii). |
253
255
  | `autoJoinKey` | `boolean` | Opt OUT of the automatic join key. Default `true`. When this prop is left alone, `storage` is present **and actually persists** (0.13.0: a `storage` adapter that rejects or throws is treated exactly like no `storage` — the kit declines and says so, because a key it cannot persist is a different key on every launch, which corrupts `min_sessions` rather than merely leaving the join empty), and `userContext` carries no `device_key`, the kit injects its own per-install key (the same id `createAnalytics` / `createWireActivation` mint and persist), so the `activated` funnel joins with no host wiring. Pass `autoJoinKey={false}` if you genuinely want an UNLINKED onboarding session: that restores the pre-0.12.2 behavior exactly, and the dev warning fires again. It never overrides a `device_key` you passed, and it cannot inject without `storage` (see [The join key](#the-join-key-device_key-never-session_id)). |
254
256
  | `userId` | `string` | Your own OPAQUE user id, so onboarding sessions reconcile to real users later (console sessions to your user table / GA4 users). Optional and supports **late binding**: present at mount it rides the session-start metadata; if it changes mid-session (the user just registered) the kit emits an `identify` event; available only after the flow, use `identifyOnboarding(...)`. **No PII** (not an email/name/phone); trimmed and capped at 128 chars. See [User identity](#user-identity). |
@@ -714,6 +716,56 @@ check, because a component name a device cannot render does **not** degrade grac
714
716
  `COMPONENT_NOT_FOUND` inside `wireai-rn` before the renderer ever sees it, and the user loses the
715
717
  turn to the retry/fallback path.
716
718
 
719
+ ## Verify your integration (`wireDoctor`)
720
+
721
+ `POST /v1/events` answers **HTTP 200 for a batch it throws away**. It reports the refusal in the
722
+ response body (`{written, skipped, errors: [{reason, field}]}`), never in the status code. So a
723
+ mis-wired integration looks healthy from the outside while every event disappears. That is how a
724
+ numeric `ts` discarded every `app_event` through 0.13.0.
725
+
726
+ `wireDoctor` catches that on the first run instead of in a funnel report three weeks later.
727
+
728
+ ```tsx
729
+ import { useEffect } from "react";
730
+ import { wireDoctor } from "@wireai/activation/analytics";
731
+ import AsyncStorage from "@react-native-async-storage/async-storage";
732
+
733
+ useEffect(() => {
734
+ if (!__DEV__) return;
735
+ wireDoctor({
736
+ target: { serverUrl: DRIVELINE_SERVER_URL, apiKey: DRIVELINE_API_KEY },
737
+ storage: AsyncStorage,
738
+ }).then((report) => console.log(report.ok, report.checks));
739
+ }, []);
740
+ ```
741
+
742
+ It resolves `{ ok, checks: [{ name, ok, detail }] }` and **never throws**, whatever the target, the
743
+ storage adapter or the network does. Four independent checks:
744
+
745
+ | `name` | What it proves |
746
+ |---|---|
747
+ | `target` | `serverUrl` is a valid http(s) URL and an `apiKey` is present. Reports the key's SHAPE only (its length, and whether the prefix matches), never its value. |
748
+ | `reachability` | `GET /v1/events/contract` answers, so the URL really points at a Wire server. |
749
+ | `storage` | The offline queue can persist, via a write / read / delete probe on its own key. Your pending backlog is never read, overwritten or deleted. |
750
+ | `round_trip` | One synthetic event survives real server validation. It goes out with `dry_run`, so nothing is written and no metric moves. The verdict is `written === 1 && skipped === 0`, read from the ack body, because the status code cannot tell you. |
751
+
752
+ A `ts`-shaped drift shows up as `skipped=1` carrying the server's own `field: ts`.
753
+
754
+ **Dev-only by contract.** The `__DEV__` guard is the first statement in the function, so a release
755
+ build does nothing at all: no network call, no storage write. In that case the report says it was
756
+ skipped rather than reporting a pass it never earned. A host that never imports `wireDoctor` does not
757
+ bundle it.
758
+
759
+ ### The contract check
760
+
761
+ The kit's `events-contract` CI job validates the payloads `buildEventsRequest` actually produces
762
+ against the JSON Schema the production server publishes at
763
+ `https://wire-rn-dynamic-onboarding.fly.dev/v1/events/contract`, one fixture per send path. Run it
764
+ yourself with `npm run check:contract`.
765
+
766
+ It fails, it never skips. An unreachable endpoint, a non-200 or an unparseable contract is a red
767
+ job, because a check that has learned nothing must not report green.
768
+
717
769
  ## Consuming from source (Metro + tsconfig)
718
770
 
719
771
  The monorepo apps resolve the kit from source. In each app:
@@ -1311,6 +1363,137 @@ generation context). For the full
1311
1363
  scaffold-the-screen integration job, the [`wire-rn-integration`](./INTEGRATION_PROMPT.md)
1312
1364
  skill drives it end to end.
1313
1365
 
1366
+ ## EU AI Act: acceptable use and our position
1367
+
1368
+ **Position as of 2026-08-06, against Regulation (EU) 2024/1689 as amended by Regulation (EU) 2026/1744.**
1369
+
1370
+ This is our own reading of where this kit sits inside the regulation, written down so an integrator
1371
+ can see the reasoning and disagree with it. It is not legal advice. Nobody has audited this kit
1372
+ against the regulation, and a review by a qualified lawyer is pending. Where that review says we
1373
+ read something wrong, this section gets corrected and re-dated.
1374
+
1375
+ ### Who is who
1376
+
1377
+ The app that ships a Wire-powered surface is the **deployer** of that surface. You choose the flow,
1378
+ the audience, the questions, and what the answers are used for.
1379
+
1380
+ Wire is the provider of a limited-risk component inside that: a card renderer, plus a backend that
1381
+ selects and fills cards from a fixed vocabulary you configure.
1382
+
1383
+ ### Not for high-risk use
1384
+
1385
+ **This system is not intended to be put into service as, or changed into, a high-risk AI system.**
1386
+
1387
+ Do not deploy Wire-powered surfaces in an Annex III high-risk area:
1388
+
1389
+ 1. Biometrics
1390
+ 2. Critical infrastructure
1391
+ 3. Education and vocational training
1392
+ 4. Employment, workers management and access to self-employment
1393
+ 5. Access to essential private and public services and benefits
1394
+ 6. Law enforcement
1395
+ 7. Migration, asylum and border control
1396
+ 8. Administration of justice and democratic processes
1397
+
1398
+ Obligations for Annex III systems apply from 2 December 2027, which is not a countdown to when this
1399
+ becomes usable there. It is not what this kit is built for, at any date.
1400
+
1401
+ Two prohibitions in Article 5(1) have been live since 2 February 2025 and were left untouched by the
1402
+ Omnibus. Do not use these surfaces for subliminal, manipulative or deceptive techniques that
1403
+ materially distort behaviour, and do not use them to exploit vulnerabilities due to age, disability,
1404
+ or a specific social or economic situation.
1405
+
1406
+ That second one deserves saying out loud, because an onboarding flow that adapts per user is an easy
1407
+ place to cross it without meaning to. A flow that adapts because it learned what a user responds to
1408
+ is one short step from a flow that adapts because it learned what a user cannot resist. Optimise for
1409
+ the user finishing something they came to do.
1410
+
1411
+ ### Article 50(1): telling people they are talking to an AI
1412
+
1413
+ Article 50(1) applies since 2 August 2026. There is no legacy grace period for it.
1414
+
1415
+ It requires that AI systems intended to interact directly with natural persons are designed so those
1416
+ persons are informed they are interacting with an AI system, unless that is obvious from the point of
1417
+ view of a reasonably well-informed, observant and circumspect natural person.
1418
+
1419
+ Our reading of the generated-UI case: generated onboarding UI is not a conversational agent. Cards,
1420
+ buttons, pickers and form fields do not present themselves as a person, and someone tapping through a
1421
+ signup flow is not being led to believe there is a human on the other end. A form is obvious.
1422
+
1423
+ Where that reading stops: if you build a chat-like or free-text-responding surface, one that answers
1424
+ a user in free prose the way a person would, that is the case Article 50(1) was written for. If you
1425
+ build that, **your app owns the disclosure**, not the kit.
1426
+
1427
+ We cannot place it for you. We do not control your screen, your copy, or your first-run experience.
1428
+ Put it where the user meets the surface, not buried in a settings page nobody opens.
1429
+
1430
+ The honest edge in between: `TextInputCard` takes free text, and the copy on the next card is
1431
+ generated from what the user typed. We read that as a form that adapts rather than a conversation,
1432
+ because the system does not answer as an interlocutor and the interaction stays inside the card
1433
+ vocabulary you configured. If that reading does not hold for the flow you built, disclose. Nothing in
1434
+ the kit stops you.
1435
+
1436
+ ### Article 50(2): marking generated content
1437
+
1438
+ Article 50(2) covers providers of AI systems that generate synthetic audio, image, video or text, and
1439
+ requires the outputs to be marked in a machine-readable format as artificially generated or
1440
+ manipulated. Its legacy grace period runs to 2 December 2026, and only for providers of those
1441
+ generators.
1442
+
1443
+ Our reading has two parts.
1444
+
1445
+ The first is that Wire does not provide the generative model. The card copy a user reads was produced
1446
+ by a third-party model. Provider-level marking of a model's output sits upstream, with the provider
1447
+ of that model.
1448
+
1449
+ The second is that for the layer we do provide, the carve-out written into the article is the one we
1450
+ rely on. It "shall not apply to the extent the AI systems perform an assistive function for standard
1451
+ editing or do not substantially alter the input data provided by the deployer or the semantics
1452
+ thereof." You supply the app description, the first question, the allowed components and the copy
1453
+ constraints. The system selects and fills cards inside that. We read it as assistive rather than as
1454
+ generating a work of synthetic content.
1455
+
1456
+ Where that reading stops: if you use this kit as the delivery surface for a general content
1457
+ generator, handing a model's free-form output to a user as content, our reading does not carry over
1458
+ to your app. Look at Article 50(2) for yourself in that case.
1459
+
1460
+ ### Article 50(3): emotion recognition
1461
+
1462
+ We do not read Article 50(3) as engaged by anything this kit does today.
1463
+
1464
+ Article 3(39) defines an emotion recognition system as one inferring emotions or intentions **on the
1465
+ basis of biometric data**, and recital 18 confines that to biometric signals like face, gesture and
1466
+ voice. This kit reads typed and tapped answers, and text is not biometric data. No camera, no
1467
+ microphone, no biometric processing anywhere in the flow.
1468
+
1469
+ ### Article 25: the specification, and why we are not standing behind a licence
1470
+
1471
+ Article 25(2) closes with an express carve-out. The provider flip does not apply "in cases where the
1472
+ initial provider has clearly specified that its AI system is not to be changed into a high-risk AI
1473
+ system."
1474
+
1475
+ The sentence in bold under **Not for high-risk use** is that specification. It is written
1476
+ deliberately, and it is why this section exists in the README rather than in a lawyer's drawer.
1477
+
1478
+ Article 25(4) ends by exempting third parties who make tools, services, processes or components
1479
+ (other than general-purpose AI models) publicly available "under a free and open-source licence" from
1480
+ the written-agreement duty. `@wireai/activation` is published on npm under the MIT licence, so on the
1481
+ face of it that sentence reaches it, though the source repository is private and that is a difference
1482
+ worth stating rather than glossing over.
1483
+
1484
+ We would rather not stand on that carve-out. Unlike the open-source SDK underneath this kit, we
1485
+ usually know who integrates this one and we have a direct channel to them. So if you integrate the
1486
+ kit and need information about it to meet your own obligations as a deployer, ask, and you get it in
1487
+ writing. That is a commitment about how we behave, not a claim about our legal position.
1488
+
1489
+ ### What this section is not
1490
+
1491
+ Nobody has reviewed or audited this kit against the regulation. This is not a statement that it meets
1492
+ a legal standard, and it is not a badge for a landing page.
1493
+
1494
+ It is what we think the regulation asks of a component like this one, what we did about it, and which
1495
+ parts sit on your side of the line rather than ours. Your app, your users, your assessment.
1496
+
1314
1497
  ## More from Code Meet AI
1315
1498
 
1316
1499
  **Open source:** [wireai-rn](https://github.com/chohra-med/wireai-rn) · [expo_boilerplate](https://github.com/chohra-med/expo_boilerplate) · [colorway-c-brand](https://github.com/chohra-med/colorway-c-brand) · [claude_design_skill](https://github.com/chohra-med/claude_design_skill)
@@ -1,10 +1,10 @@
1
- export { R as ReportAppEventOptions, r as reportAppEvent } from '../transport-CefdERPs.mjs';
2
- import { W as WireUserContext, E as EventQueueOptions } from '../currentSession-BoWtr3Jp.mjs';
3
- export { A as AUTO_DEVICE_ID_PREFIX, a as AnalyticsEvent, C as ClearUserContextOptions, b as ClientEvent, c as ClientEventTarget, d as ClientEventType, e as ContextEnvelope, f as ContextEnvelopeInput, D as DeviceKeyStorage, g as EnvelopeSource, h as EventQueue, R as ResolveAutoDeviceKeyOptions, i as WIRE_ONBOARDING_EVENTS, j as WireOnboardingEventName, k as analyticsUserIdStorageKey, l as buildContextEnvelope, m as clearPiiFromContext, n as clearUserContext, o as createEventQueue, p as deviceIdStorageKey, q as ensureCurrentSessionId, r as getCurrentSessionId, s as looksLikeEmail, t as makeSessionId, u as reportClientEvent, v as reportClientEventAwait, w as reportClientEvents, x as reportClientEventsAwait, y as resetAutoDeviceKeys, z as resetCurrentSessionId, B as resetEventQueueKeys, F as resolveAutoDeviceKey, G as setCurrentSessionId, H as toAnalyticsEvent } from '../currentSession-BoWtr3Jp.mjs';
4
- import '../types-l2tfg23P.mjs';
1
+ export { R as ReportAppEventOptions, r as reportAppEvent } from '../transport-j5gFfJhK.mjs';
2
+ import { C as ClientEventTarget, W as WireUserContext, E as EventQueueOptions } from '../currentSession-Cs3lweFZ.mjs';
3
+ export { A as AUTO_DEVICE_ID_PREFIX, a as AnalyticsEvent, b as ClearUserContextOptions, c as ClientEvent, d as ClientEventType, e as ContextEnvelope, f as ContextEnvelopeInput, D as DeviceKeyStorage, g as EnvelopeSource, h as EventQueue, R as ResolveAutoDeviceKeyOptions, i as WIRE_ONBOARDING_EVENTS, j as WireOnboardingEventName, k as analyticsUserIdStorageKey, l as buildContextEnvelope, m as clearPiiFromContext, n as clearUserContext, o as createEventQueue, p as deviceIdStorageKey, q as ensureCurrentSessionId, r as getCurrentSessionId, s as looksLikeEmail, t as makeSessionId, u as reportClientEvent, v as reportClientEventAwait, w as reportClientEvents, x as reportClientEventsAwait, y as resetAutoDeviceKeys, z as resetCurrentSessionId, B as resetEventQueueKeys, F as resolveAutoDeviceKey, G as setCurrentSessionId, H as toAnalyticsEvent } from '../currentSession-Cs3lweFZ.mjs';
4
+ import { W as WireOnboardingStorage } from '../types-BpwiRpA8.mjs';
5
+ import '../types-Cju-1_jT.mjs';
5
6
  import '../types-BKfpdZzX.mjs';
6
7
  import '../types-BcmagF6K.mjs';
7
- import '../types-CKFhyrMu.mjs';
8
8
  import 'react';
9
9
  import 'wireai-rn';
10
10
  import 'react-native';
@@ -95,6 +95,86 @@ interface NavigationRefLike {
95
95
  */
96
96
  declare const useScreenTracking: (navigationRef: NavigationRefLike | undefined, options?: ScreenTrackerOptions) => void;
97
97
 
98
+ /**
99
+ * wireDoctor: a DEV-ONLY, opt-in self-check that proves a fresh integration end to end before the
100
+ * first real user ever runs it.
101
+ *
102
+ * WHY IT EXISTS: the `/v1/events` endpoint answers HTTP **200** for a batch it throws away. It
103
+ * reports the refusal in the response body (`{written, skipped, errors:[{reason, field}]}`), so a
104
+ * mis-wired integration looks perfectly healthy from the outside while every event evaporates. A
105
+ * numeric `ts` did exactly that through 0.13.0. This turns that class of loss from something you
106
+ * discover in a funnel report weeks later into something the first run tells you.
107
+ *
108
+ * SHAPE: four independent checks, each a `{name, ok, detail}` unit that can be read (and tested)
109
+ * without the others. The report is data, never a thrown error and never a side effect on the host:
110
+ *
111
+ * 1. `target` : is there a server URL and a key, and do they look like a key and a URL?
112
+ * 2. `reachability`: is the server actually there? (`GET /v1/events/contract`, public and cheap)
113
+ * 3. `storage` : can the offline queue persist? (a write / read / delete probe)
114
+ * 4. `round_trip` : does a REAL event survive REAL server validation? (a `dry_run` POST)
115
+ *
116
+ * NEVER THROWS, under any input, any network condition, or any hostile response object. A doctor
117
+ * that can crash the screen it is diagnosing is worse than no doctor.
118
+ *
119
+ * ⛔ NEVER PRINTS A SECRET. The `target` check reports the key's SHAPE (present / absent, length,
120
+ * whether the prefix is the expected one) and never any character of the key itself, in any
121
+ * `detail`, any log line, or any error. `wireDoctor.test.ts` asserts that with a sentinel key.
122
+ *
123
+ * COSTS A NON-CALLER NOTHING: it is a plain function behind the `./analytics` subpath, the package
124
+ * is `sideEffects: false`, and this module has no top-level side effects, so a host that never
125
+ * imports it never bundles it. It also mints no `globalThis` slot and retains no timer or listener.
126
+ *
127
+ * USAGE (dev builds only):
128
+ *
129
+ * import { wireDoctor } from "@wireai/activation/analytics";
130
+ *
131
+ * const report = await wireDoctor({
132
+ * target: { serverUrl: "https://api.example.com", apiKey: DRIVELINE_KEY },
133
+ * storage: AsyncStorage,
134
+ * });
135
+ * console.log(report.ok, report.checks);
136
+ */
137
+
138
+ /** One diagnosis. `name` is stable and machine-readable; `detail` is for a human reading a console. */
139
+ type WireDoctorCheck = {
140
+ /**
141
+ * Stable id: `target` | `reachability` | `storage` | `round_trip` | `dev_only` | `internal_error`.
142
+ *
143
+ * `dev_only` means ONE thing and only that thing: `__DEV__` is unset or false, so nothing ran.
144
+ * `internal_error` is the separate catch-all for a failure that got past every check's own
145
+ * swallow. They are distinct names because a consumer branching on `dev_only` would otherwise
146
+ * read an internal fault as "this is a release build" and report a healthy skip.
147
+ */
148
+ name: string;
149
+ ok: boolean;
150
+ /** Human-readable result. ⛔ Never contains any part of an API key. */
151
+ detail: string;
152
+ };
153
+ /** What {@link wireDoctor} resolves to. `ok` is true only when EVERY check passed. */
154
+ type WireDoctorReport = {
155
+ ok: boolean;
156
+ checks: WireDoctorCheck[];
157
+ };
158
+ /** Input for {@link wireDoctor}. `storage` is optional: without it the queue runs in-memory only. */
159
+ type WireDoctorOptions = {
160
+ /** The same `{serverUrl, apiKey}` the kit is configured with. */
161
+ target: ClientEventTarget | undefined;
162
+ /**
163
+ * The host storage the offline queue would use (AsyncStorage-compatible). Omit it and the storage
164
+ * check reports the DEGRADED in-memory mode rather than failing.
165
+ */
166
+ storage?: WireOnboardingStorage;
167
+ };
168
+ /**
169
+ * Run the full diagnosis. Resolves a report; NEVER throws and NEVER rejects.
170
+ *
171
+ * DEV-ONLY BY CONTRACT: the `__DEV__` guard is the FIRST statement, so a release build performs no
172
+ * network call, no storage write, and no work at all. The report says it was skipped rather than
173
+ * pretending everything passed, because a green report that never ran is the exact failure mode
174
+ * this whole feature exists to remove.
175
+ */
176
+ declare const wireDoctor: (options: WireDoctorOptions) => Promise<WireDoctorReport>;
177
+
98
178
  /** Arbitrary non-PII event properties. Serialized to the event's `meta` (a JSON string) on the wire. */
99
179
  type AnalyticsProps = Record<string, unknown>;
100
180
  /**
@@ -203,4 +283,4 @@ declare const createAnalytics: (config: CreateAnalyticsConfig, options?: Analyti
203
283
  */
204
284
  declare const useAnalytics: (config: CreateAnalyticsConfig, options?: AnalyticsOptions) => Analytics;
205
285
 
206
- export { type Analytics, type AnalyticsOptions, type AnalyticsProps, type CreateAnalyticsConfig, EventQueueOptions, type NavigationRefLike, type NavigationRouteLike, type NavigationStateLike, type ScreenTracker, type ScreenTrackerOptions, createAnalytics, createScreenTracker, getActiveRouteName, screenTrackingHandler, useAnalytics, useScreenTracking };
286
+ export { type Analytics, type AnalyticsOptions, type AnalyticsProps, ClientEventTarget, type CreateAnalyticsConfig, EventQueueOptions, type NavigationRefLike, type NavigationRouteLike, type NavigationStateLike, type ScreenTracker, type ScreenTrackerOptions, type WireDoctorCheck, type WireDoctorOptions, type WireDoctorReport, createAnalytics, createScreenTracker, getActiveRouteName, screenTrackingHandler, useAnalytics, useScreenTracking, wireDoctor };
@@ -1,10 +1,10 @@
1
- export { R as ReportAppEventOptions, r as reportAppEvent } from '../transport-DFuPyCoJ.js';
2
- import { W as WireUserContext, E as EventQueueOptions } from '../currentSession-CCOMlaQ2.js';
3
- export { A as AUTO_DEVICE_ID_PREFIX, a as AnalyticsEvent, C as ClearUserContextOptions, b as ClientEvent, c as ClientEventTarget, d as ClientEventType, e as ContextEnvelope, f as ContextEnvelopeInput, D as DeviceKeyStorage, g as EnvelopeSource, h as EventQueue, R as ResolveAutoDeviceKeyOptions, i as WIRE_ONBOARDING_EVENTS, j as WireOnboardingEventName, k as analyticsUserIdStorageKey, l as buildContextEnvelope, m as clearPiiFromContext, n as clearUserContext, o as createEventQueue, p as deviceIdStorageKey, q as ensureCurrentSessionId, r as getCurrentSessionId, s as looksLikeEmail, t as makeSessionId, u as reportClientEvent, v as reportClientEventAwait, w as reportClientEvents, x as reportClientEventsAwait, y as resetAutoDeviceKeys, z as resetCurrentSessionId, B as resetEventQueueKeys, F as resolveAutoDeviceKey, G as setCurrentSessionId, H as toAnalyticsEvent } from '../currentSession-CCOMlaQ2.js';
4
- import '../types-UVYt9BJe.js';
1
+ export { R as ReportAppEventOptions, r as reportAppEvent } from '../transport-B_0SgCBe.js';
2
+ import { C as ClientEventTarget, W as WireUserContext, E as EventQueueOptions } from '../currentSession-DD6dKB0i.js';
3
+ export { A as AUTO_DEVICE_ID_PREFIX, a as AnalyticsEvent, b as ClearUserContextOptions, c as ClientEvent, d as ClientEventType, e as ContextEnvelope, f as ContextEnvelopeInput, D as DeviceKeyStorage, g as EnvelopeSource, h as EventQueue, R as ResolveAutoDeviceKeyOptions, i as WIRE_ONBOARDING_EVENTS, j as WireOnboardingEventName, k as analyticsUserIdStorageKey, l as buildContextEnvelope, m as clearPiiFromContext, n as clearUserContext, o as createEventQueue, p as deviceIdStorageKey, q as ensureCurrentSessionId, r as getCurrentSessionId, s as looksLikeEmail, t as makeSessionId, u as reportClientEvent, v as reportClientEventAwait, w as reportClientEvents, x as reportClientEventsAwait, y as resetAutoDeviceKeys, z as resetCurrentSessionId, B as resetEventQueueKeys, F as resolveAutoDeviceKey, G as setCurrentSessionId, H as toAnalyticsEvent } from '../currentSession-DD6dKB0i.js';
4
+ import { W as WireOnboardingStorage } from '../types-BpwiRpA8.js';
5
+ import '../types-h2BZvl1t.js';
5
6
  import '../types-BKfpdZzX.js';
6
7
  import '../types-BcmagF6K.js';
7
- import '../types-CKFhyrMu.js';
8
8
  import 'react';
9
9
  import 'wireai-rn';
10
10
  import 'react-native';
@@ -95,6 +95,86 @@ interface NavigationRefLike {
95
95
  */
96
96
  declare const useScreenTracking: (navigationRef: NavigationRefLike | undefined, options?: ScreenTrackerOptions) => void;
97
97
 
98
+ /**
99
+ * wireDoctor: a DEV-ONLY, opt-in self-check that proves a fresh integration end to end before the
100
+ * first real user ever runs it.
101
+ *
102
+ * WHY IT EXISTS: the `/v1/events` endpoint answers HTTP **200** for a batch it throws away. It
103
+ * reports the refusal in the response body (`{written, skipped, errors:[{reason, field}]}`), so a
104
+ * mis-wired integration looks perfectly healthy from the outside while every event evaporates. A
105
+ * numeric `ts` did exactly that through 0.13.0. This turns that class of loss from something you
106
+ * discover in a funnel report weeks later into something the first run tells you.
107
+ *
108
+ * SHAPE: four independent checks, each a `{name, ok, detail}` unit that can be read (and tested)
109
+ * without the others. The report is data, never a thrown error and never a side effect on the host:
110
+ *
111
+ * 1. `target` : is there a server URL and a key, and do they look like a key and a URL?
112
+ * 2. `reachability`: is the server actually there? (`GET /v1/events/contract`, public and cheap)
113
+ * 3. `storage` : can the offline queue persist? (a write / read / delete probe)
114
+ * 4. `round_trip` : does a REAL event survive REAL server validation? (a `dry_run` POST)
115
+ *
116
+ * NEVER THROWS, under any input, any network condition, or any hostile response object. A doctor
117
+ * that can crash the screen it is diagnosing is worse than no doctor.
118
+ *
119
+ * ⛔ NEVER PRINTS A SECRET. The `target` check reports the key's SHAPE (present / absent, length,
120
+ * whether the prefix is the expected one) and never any character of the key itself, in any
121
+ * `detail`, any log line, or any error. `wireDoctor.test.ts` asserts that with a sentinel key.
122
+ *
123
+ * COSTS A NON-CALLER NOTHING: it is a plain function behind the `./analytics` subpath, the package
124
+ * is `sideEffects: false`, and this module has no top-level side effects, so a host that never
125
+ * imports it never bundles it. It also mints no `globalThis` slot and retains no timer or listener.
126
+ *
127
+ * USAGE (dev builds only):
128
+ *
129
+ * import { wireDoctor } from "@wireai/activation/analytics";
130
+ *
131
+ * const report = await wireDoctor({
132
+ * target: { serverUrl: "https://api.example.com", apiKey: DRIVELINE_KEY },
133
+ * storage: AsyncStorage,
134
+ * });
135
+ * console.log(report.ok, report.checks);
136
+ */
137
+
138
+ /** One diagnosis. `name` is stable and machine-readable; `detail` is for a human reading a console. */
139
+ type WireDoctorCheck = {
140
+ /**
141
+ * Stable id: `target` | `reachability` | `storage` | `round_trip` | `dev_only` | `internal_error`.
142
+ *
143
+ * `dev_only` means ONE thing and only that thing: `__DEV__` is unset or false, so nothing ran.
144
+ * `internal_error` is the separate catch-all for a failure that got past every check's own
145
+ * swallow. They are distinct names because a consumer branching on `dev_only` would otherwise
146
+ * read an internal fault as "this is a release build" and report a healthy skip.
147
+ */
148
+ name: string;
149
+ ok: boolean;
150
+ /** Human-readable result. ⛔ Never contains any part of an API key. */
151
+ detail: string;
152
+ };
153
+ /** What {@link wireDoctor} resolves to. `ok` is true only when EVERY check passed. */
154
+ type WireDoctorReport = {
155
+ ok: boolean;
156
+ checks: WireDoctorCheck[];
157
+ };
158
+ /** Input for {@link wireDoctor}. `storage` is optional: without it the queue runs in-memory only. */
159
+ type WireDoctorOptions = {
160
+ /** The same `{serverUrl, apiKey}` the kit is configured with. */
161
+ target: ClientEventTarget | undefined;
162
+ /**
163
+ * The host storage the offline queue would use (AsyncStorage-compatible). Omit it and the storage
164
+ * check reports the DEGRADED in-memory mode rather than failing.
165
+ */
166
+ storage?: WireOnboardingStorage;
167
+ };
168
+ /**
169
+ * Run the full diagnosis. Resolves a report; NEVER throws and NEVER rejects.
170
+ *
171
+ * DEV-ONLY BY CONTRACT: the `__DEV__` guard is the FIRST statement, so a release build performs no
172
+ * network call, no storage write, and no work at all. The report says it was skipped rather than
173
+ * pretending everything passed, because a green report that never ran is the exact failure mode
174
+ * this whole feature exists to remove.
175
+ */
176
+ declare const wireDoctor: (options: WireDoctorOptions) => Promise<WireDoctorReport>;
177
+
98
178
  /** Arbitrary non-PII event properties. Serialized to the event's `meta` (a JSON string) on the wire. */
99
179
  type AnalyticsProps = Record<string, unknown>;
100
180
  /**
@@ -203,4 +283,4 @@ declare const createAnalytics: (config: CreateAnalyticsConfig, options?: Analyti
203
283
  */
204
284
  declare const useAnalytics: (config: CreateAnalyticsConfig, options?: AnalyticsOptions) => Analytics;
205
285
 
206
- export { type Analytics, type AnalyticsOptions, type AnalyticsProps, type CreateAnalyticsConfig, EventQueueOptions, type NavigationRefLike, type NavigationRouteLike, type NavigationStateLike, type ScreenTracker, type ScreenTrackerOptions, createAnalytics, createScreenTracker, getActiveRouteName, screenTrackingHandler, useAnalytics, useScreenTracking };
286
+ export { type Analytics, type AnalyticsOptions, type AnalyticsProps, ClientEventTarget, type CreateAnalyticsConfig, EventQueueOptions, type NavigationRefLike, type NavigationRouteLike, type NavigationStateLike, type ScreenTracker, type ScreenTrackerOptions, type WireDoctorCheck, type WireDoctorOptions, type WireDoctorReport, createAnalytics, createScreenTracker, getActiveRouteName, screenTrackingHandler, useAnalytics, useScreenTracking, wireDoctor };