Knock in-app UI skill
This skill helps you build in-app UI with Knock. It covers the two in-app products — feeds and guides — at a high level, then goes deep on guides: provider setup, rendering with hooks, and debugging.
Reference: https://docs.knock.app/in-app-ui/overview
Overview
The skill is organized into four focused rule files. Client-framework guidance is scoped per framework via a -<framework> suffix (currently only React). Cross-framework concepts live in unsuffixed files.
- Feeds vs. guides (framework-agnostic) — which product to pick for a given surface and why
- Setting up the guide providers in React —
KnockProvider and KnockGuideProvider props, where each value comes from, and how to sequence them
- Rendering guides in React — building a guide component with
useGuide / useGuides, typed content, and engagement tracking
- Debugging guides (framework-agnostic) — the guides toolbar, the triage checklist, and testing workflow
Framework scope: right now this skill only covers React (@knocklabs/react). If the user is building with Vue, Svelte, plain JS, React Native, iOS, or Android, stop and ask how they'd like to proceed — do not adapt the React rules to another client SDK on your own.
How to use this skill
When deciding what to build
Start with rules/feeds-vs-guides.md:
- Confirm the surface you're building is actually a guide, not a feed
- Check the decision table before picking a direction
- If the answer is "both," wrap the app in
KnockProvider once and render each product's provider where it's needed
When adding guides to a React app for the first time
- Read
rules/setup-guide-providers-react.md
- Before running any CLI commands, confirm the CLI is authenticated and which Knock environment this setup is for. First run
knock whoami — if it errors with something like "not authenticated" or "no user session," run knock login and ask the user to complete the browser flow before continuing (the CLI persists the session so this is a one-time step per machine). Only after knock whoami succeeds, run knock environment list and ask the user to pick (the CLI defaults to development, but most real integrations target production). Remember that slug as <env-slug> and pass --environment <env-slug> on every subsequent environment-scoped knock command.
- Before asking the user anything about the channel, discover
channelId via the Knock CLI: run knock channel list --json | jq -r '.[] | select(.key == "knock-guide") | .id'. Channels are account-scoped, so this command does not take --environment. If it prints a UUID, use it — do not ask the user to confirm or re-paste. Only ask the user if the CLI returns nothing or errors. See the rule file's "Where to get channelId" procedure for the full fallback order.
- Ask the user only for values that can't be auto-discovered — primarily the public
apiKey for the chosen environment (and confirm user.id is coming from the app's auth context). Do not bundle the apiKey ask with channelId.
- Wire
KnockProvider + KnockGuideProvider at the top of the tree.
- Gate
readyToTarget on any async data your targeting depends on.
- Get a real guide rendering before stopping. Run
knock guide list --environment <env-slug> --json, show the user the options (key, name, each step's schema_key), and build the first component against a real guide's actual values. Do not scaffold with placeholder strings like "changelog-card". Fetch the message type schema with knock message-type get <schema_key> --environment <env-slug> --json so the content is typed. If the environment has no guides, offer to scaffold a test one via the Knock CLI (knock guide new → edit the JSON → knock guide push --environment <env-slug>) using a built-in message type (card, banner, or modal) with obvious-placeholder content — don't stall waiting for manual dashboard setup. See rules/rendering-guides-react.md → "First guide: discover real guides via CLI before writing code" for the full procedure including the empty-environment branch.
- Flag anything that still needs the user (paste
pk_ key, flip the guide to active in the dashboard, restart dev server) explicitly — don't leave them to discover it by absence.
When building a new guide component in React
- Follow the workflow in
rules/rendering-guides-react.md
- Discover the target guide (or message type) via the Knock CLI before picking values.
knock guide list --environment <env-slug> --json for the guide's key / step schema_key; knock message-type get <schema_key> --environment <env-slug> --json for the content schema. Avoid placeholder strings.
- Pick
useGuide for single-guide surfaces, useGuides for lists
- Define a TypeScript type that mirrors the message type schema you just pulled
- Wire
markAsSeen, markAsInteracted, and markAsArchived — custom components must do this themselves
When a guide isn't rendering
- Open
rules/debugging-guides.md and work the triage checklist top to bottom
- Turn on the guides toolbar (
?knock_guide_toolbar=true) first — it answers most questions in seconds
- Distinguish server-side (targeting/eligibility) from client-side (provider/component) failures before digging deeper
Rule files reference
rules/feeds-vs-guides.md — product selection between feeds and guides (framework-agnostic)
rules/setup-guide-providers-react.md — configuring KnockProvider and KnockGuideProvider for guides (React)
rules/rendering-guides-react.md — useGuide, useGuides, typed content, engagement tracking (React)
rules/debugging-guides.md — toolbar, triage checklist, testing workflow (framework-agnostic)
Quick reference
The examples below are React. For any other client SDK, see the note at the top of Overview before proceeding.
Providers (minimum viable setup — React)
<KnockProvider
apiKey={process.env.NEXT_PUBLIC_KNOCK_API_KEY}
user={{ id: currentUser.id }}
>
<KnockGuideProvider
channelId={process.env.NEXT_PUBLIC_KNOCK_GUIDE_CHANNEL_ID}
readyToTarget
listenForUpdates
>
{children}
</KnockGuideProvider>
</KnockProvider>
Where to source each value
Auth first, then environment — Knock is environment-scoped. Before any CLI command, verify the CLI is authenticated with knock whoami; if it errors, run knock login and wait for the user to complete the browser flow. Then run knock environment list and confirm the target slug (production, development, …) with the user. Pass --environment <env-slug> on every subsequent environment-scoped knock command. Don't rely on the CLI's development default.
apiKey — Knock dashboard → Platform → API keys → public pk_... key from the tab for the chosen environment (switch envs via the dashboard's environment selector first; remind the user to copy the key for the right env)
user.id — your auth context; must match the id used when identifying the user from your backend
channelId — the UUID of the guide channel, not its key. Channels are account-scoped, so knock channel list does not take --environment. Always attempt CLI discovery before asking the user:
knock channel list --json | jq -r '.[] | select(.key == "knock-guide") | .id'
If this prints a UUID, use it directly — don't prompt for confirmation. The default guide channel key is knock-guide (type in_app_guide). Fall back to the dashboard (Settings → Integrations → Channels) only if the CLI returns nothing or errors. See rules/setup-guide-providers-react.md for the full procedure.
Hooks at a glance
useGuide({ type }) — one guide by message type
useGuide({ key }) — one specific guide by key
useGuides({ type }) — array of guides by message type
useGuideContext() — low-level client access
Engagement methods
step.markAsSeen() — impression (call from useEffect keyed on step)
step.markAsInteracted() — primary action
step.markAsArchived() — dismissal; removes the guide for this user going forward
First stop when something's wrong
Append ?knock_guide_toolbar=true to any URL. The toolbar shows all guides, which are active, which this user is eligible for, and why the rest were filtered out.
Best practices summary
- Pick the right product. Feeds for chronological lists, guides for targeted UI.
- Mount providers once, high in the tree. Inside your auth boundary, above any route that renders guides.
- Never pass a placeholder user. Wait for auth to resolve before mounting
KnockProvider.
- Gate
readyToTarget on async data your targeting rules depend on.
- Type your content.
useGuide<T> should mirror the Knock message type schema.
- Always handle engagement. Custom components must call
markAsSeen, markAsInteracted, and markAsArchived themselves.
- Use the toolbar first. Most "the guide isn't showing" questions are answered in seconds.
1---2name: knock-in-app-ui3description: Guidance for implementing Knock in-app UI in a web app, with a focus on setting up, rendering, and debugging Knock guides in React.4---5
6# Knock in-app UI skill
7
8This skill helps you build in-app UI with Knock. It covers the two in-app products — **feeds** and **guides** — at a high level, then goes deep on guides: provider setup, rendering with hooks, and debugging.
9
10Reference: https://docs.knock.app/in-app-ui/overview
11
12## Overview
13
14The skill is organized into four focused rule files. Client-framework guidance is scoped per framework via a `-<framework>` suffix (currently only React). Cross-framework concepts live in unsuffixed files.
15
161. **Feeds vs. guides** (framework-agnostic) — which product to pick for a given surface and why
172. **Setting up the guide providers in React** — `KnockProvider` and `KnockGuideProvider` props, where each value comes from, and how to sequence them
183. **Rendering guides in React** — building a guide component with `useGuide` / `useGuides`, typed content, and engagement tracking
194. **Debugging guides** (framework-agnostic) — the guides toolbar, the triage checklist, and testing workflow
20
21> **Framework scope:** right now this skill only covers React (`@knocklabs/react`). If the user is building with Vue, Svelte, plain JS, React Native, iOS, or Android, stop and ask how they'd like to proceed — do not adapt the React rules to another client SDK on your own.
22
23## How to use this skill
24
25### When deciding what to build
26
27Start with `rules/feeds-vs-guides.md`:
28
29- Confirm the surface you're building is actually a guide, not a feed
30- Check the decision table before picking a direction
31- If the answer is "both," wrap the app in `KnockProvider` once and render each product's provider where it's needed
32
33### When adding guides to a React app for the first time
34
351. Read `rules/setup-guide-providers-react.md`
362. **Before running any CLI commands, confirm the CLI is authenticated and which Knock environment this setup is for.** First run `knock whoami` — if it errors with something like "not authenticated" or "no user session," run `knock login` and ask the user to complete the browser flow before continuing (the CLI persists the session so this is a one-time step per machine). Only after `knock whoami` succeeds, run `knock environment list` and ask the user to pick (the CLI defaults to `development`, but most real integrations target `production`). Remember that slug as `<env-slug>` and pass `--environment <env-slug>` on every subsequent environment-scoped `knock` command.
373. **Before asking the user anything about the channel, discover `channelId` via the Knock CLI:** run `knock channel list --json | jq -r '.[] | select(.key == "knock-guide") | .id'`. Channels are account-scoped, so this command does **not** take `--environment`. If it prints a UUID, use it — do not ask the user to confirm or re-paste. Only ask the user if the CLI returns nothing or errors. See the rule file's "Where to get `channelId`" procedure for the full fallback order.
384. Ask the user only for values that can't be auto-discovered — primarily the public `apiKey` for the chosen environment (and confirm `user.id` is coming from the app's auth context). Do not bundle the `apiKey` ask with `channelId`.
395. Wire `KnockProvider` + `KnockGuideProvider` at the top of the tree.
406. Gate `readyToTarget` on any async data your targeting depends on.
417. **Get a real guide rendering before stopping.** Run `knock guide list --environment <env-slug> --json`, show the user the options (`key`, `name`, each step's `schema_key`), and build the first component against a real guide's actual values. Do not scaffold with placeholder strings like `"changelog-card"`. Fetch the message type schema with `knock message-type get <schema_key> --environment <env-slug> --json` so the content is typed. **If the environment has no guides, offer to scaffold a test one via the Knock CLI** (`knock guide new` → edit the JSON → `knock guide push --environment <env-slug>`) using a built-in message type (`card`, `banner`, or `modal`) with obvious-placeholder content — don't stall waiting for manual dashboard setup. See `rules/rendering-guides-react.md` → "First guide: discover real guides via CLI before writing code" for the full procedure including the empty-environment branch.
428. Flag anything that still needs the user (paste `pk_` key, flip the guide to active in the dashboard, restart dev server) explicitly — don't leave them to discover it by absence.
43
44### When building a new guide component in React
45
461. Follow the workflow in `rules/rendering-guides-react.md`
472. **Discover the target guide (or message type) via the Knock CLI before picking values.** `knock guide list --environment <env-slug> --json` for the guide's `key` / step `schema_key`; `knock message-type get <schema_key> --environment <env-slug> --json` for the content schema. Avoid placeholder strings.
483. Pick `useGuide` for single-guide surfaces, `useGuides` for lists
494. Define a TypeScript type that mirrors the message type schema you just pulled
505. Wire `markAsSeen`, `markAsInteracted`, and `markAsArchived` — custom components must do this themselves
51
52### When a guide isn't rendering
53
541. Open `rules/debugging-guides.md` and work the triage checklist top to bottom
552. Turn on the guides toolbar (`?knock_guide_toolbar=true`) first — it answers most questions in seconds
563. Distinguish server-side (targeting/eligibility) from client-side (provider/component) failures before digging deeper
57
58## Rule files reference
59
60- `rules/feeds-vs-guides.md` — product selection between feeds and guides (framework-agnostic)
61- `rules/setup-guide-providers-react.md` — configuring `KnockProvider` and `KnockGuideProvider` for guides (React)
62- `rules/rendering-guides-react.md` — `useGuide`, `useGuides`, typed content, engagement tracking (React)
63- `rules/debugging-guides.md` — toolbar, triage checklist, testing workflow (framework-agnostic)
64
65## Quick reference
66
67The examples below are React. For any other client SDK, see the note at the top of **Overview** before proceeding.
68
69### Providers (minimum viable setup — React)
70
71```tsx
72<KnockProvider
73 apiKey={process.env.NEXT_PUBLIC_KNOCK_API_KEY}
74 user={{ id: currentUser.id }}
75>
76 <KnockGuideProvider
77 channelId={process.env.NEXT_PUBLIC_KNOCK_GUIDE_CHANNEL_ID}
78 readyToTarget
79 listenForUpdates
80 >
81 {children}
82 </KnockGuideProvider>
83</KnockProvider>
84```
85
86### Where to source each value
87
88- **Auth first, then environment** — Knock is environment-scoped. Before any CLI command, verify the CLI is authenticated with `knock whoami`; if it errors, run `knock login` and wait for the user to complete the browser flow. Then run `knock environment list` and confirm the target slug (`production`, `development`, …) with the user. Pass `--environment <env-slug>` on every subsequent environment-scoped `knock` command. Don't rely on the CLI's `development` default.
89- `apiKey` — Knock dashboard → **Platform → API keys** → public `pk_...` key **from the tab for the chosen environment** (switch envs via the dashboard's environment selector first; remind the user to copy the key for the right env)
90- `user.id` — your auth context; must match the id used when identifying the user from your backend
91- `channelId` — the **UUID** of the guide channel, not its key. Channels are account-scoped, so `knock channel list` does **not** take `--environment`. **Always attempt CLI discovery before asking the user:**
92
93 ```bash
94 knock channel list --json | jq -r '.[] | select(.key == "knock-guide") | .id'
95 ```
96
97 If this prints a UUID, use it directly — don't prompt for confirmation. The default guide channel key is `knock-guide` (type `in_app_guide`). Fall back to the dashboard (**Settings → Integrations → Channels**) only if the CLI returns nothing or errors. See `rules/setup-guide-providers-react.md` for the full procedure.
98
99### Hooks at a glance
100
101- `useGuide({ type })` — one guide by message type
102- `useGuide({ key })` — one specific guide by key
103- `useGuides({ type })` — array of guides by message type
104- `useGuideContext()` — low-level client access
105
106### Engagement methods
107
108- `step.markAsSeen()` — impression (call from `useEffect` keyed on `step`)
109- `step.markAsInteracted()` — primary action
110- `step.markAsArchived()` — dismissal; removes the guide for this user going forward
111
112### First stop when something's wrong
113
114Append `?knock_guide_toolbar=true` to any URL. The toolbar shows all guides, which are active, which this user is eligible for, and why the rest were filtered out.
115
116## Best practices summary
117
1181. **Pick the right product.** Feeds for chronological lists, guides for targeted UI.
1192. **Mount providers once, high in the tree.** Inside your auth boundary, above any route that renders guides.
1203. **Never pass a placeholder user.** Wait for auth to resolve before mounting `KnockProvider`.
1214. **Gate `readyToTarget` on async data** your targeting rules depend on.
1225. **Type your content.** `useGuide<T>` should mirror the Knock message type schema.
1236. **Always handle engagement.** Custom components must call `markAsSeen`, `markAsInteracted`, and `markAsArchived` themselves.
1247. **Use the toolbar first.** Most "the guide isn't showing" questions are answered in seconds.