
Writing Kea Logics
FreeStreamline your PostHog kea logic file development.
Free · Opens the source repo
What Writing Kea Logics does
The Writing Kea Logics skill is designed for developers working with PostHog's frontend architecture, which utilizes the kea state management library. This skill serves as a comprehensive guide for creating and reviewing kea logic files, specifically those ending in *Logic.ts or *Logic.tsx. It captures PostHog-specific conventions that extend the upstream kea documentation, ensuring that developers adhere to best practices when implementing business logic in their applications.
When developing new logic files or modifying existing ones, this skill provides clear guidance on various aspects such as adding actions, reducers, selectors, listeners, and loaders. It also helps in making decisions about whether to use reducers, selectors, caches, or loaders for specific pieces of state. By following the principles laid out in this skill, developers can maintain a clean separation of concerns, ensuring that business logic resides within the logic files rather than in React components.
The skill emphasizes the importance of using the right constructs within kea to avoid common pitfalls. For instance, it advocates for using listeners instead of kea-subscriptions to enhance performance and reduce unnecessary re-renders. Additionally, it provides a decision flow to help developers choose the appropriate container for their state, which is crucial for preventing bugs and ensuring efficient state management.
Overall, this skill is an essential resource for any developer or designer involved in building or maintaining applications using PostHog and kea. It not only streamlines the development process but also helps onboard new team members to the conventions and idioms specific to PostHog's implementation of kea.
When to use it
Use this skill when creating new logic files, adding builders, or reviewing pull requests related to kea logic in PostHog.
When not to use it
This skill is not suitable for projects that do not utilize PostHog or kea, or for basic React component development without state management.
What you can build with it
Creating a New Logic File
When starting a new feature in PostHog, use this skill to ensure your logic file is structured correctly.
Reviewing Pull Requests
Utilize this skill to evaluate changes in kea logic files, ensuring compliance with PostHog conventions.
Deciding Between State Containers
Refer to the decision flow in this skill to choose the appropriate container for your application's state.
How to install Writing Kea Logics
View source1. Install with the skills CLI
npx skills add posthog/posthog/writing-kea-logics --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by posthogWriting kea logics
PostHog uses kea as the state container for the frontend. Almost
all non-trivial business logic lives in a *Logic.ts / *Logic.tsx file, not in
React. We may be on a kea pre-release ahead of the version the keajs.org docs
cover — when in doubt, check pnpm-workspace.yaml for the pinned version.
This skill captures the PostHog-specific conventions on top of the upstream kea docs. When in doubt about a builder's signature, go upstream. When in doubt about whether to use it, read here.
Use this skill when
- Creating a new
*Logic.ts/*Logic.tsxfile - Adding builders to an existing logic (actions, reducers, selectors, listeners, loaders, forms)
- Choosing between
reducervsselectorvscachevsloaderfor a piece of state - Wiring a React component to a logic
- Reviewing a PR that introduces or modifies a kea logic
- Reviewing code that uses React hooks where a logic would be more idiomatic
Companion skills (do not duplicate)
- using-kea-disposables —
setInterval,addEventListener, and any other resource that needs cleanup.
If your work overlaps it, read the companion skill first.
Core principles
-
Business logic lives in a logic, not in a component. CLAUDE.md is explicit: "If there is a kea logic file, write all business logic there, avoid React hooks at all costs." Hooks are for view concerns.
-
One concept, one source of truth. Pick exactly one of: action-driven reducer, derived selector, async loader. Don't mirror the same value into multiple places.
-
Prefer listeners over
kea-subscriptions. Subscriptions install a redux subscription that re-runs on every dispatch and is measurably slower. Listen to the action that changed the value instead. See references/reacting-to-changes.md. -
Generated types are the contract. Every logic has an inline generated
MakeLogicTypeblock above itskea()call. Import a logic type from the logic source file, never from a separate*LogicType.tsfile. -
Resources that need cleanup go through
cache.disposables. See the using-kea-disposables skill.
Anatomy at a glance
import { MakeLogicType, actions, afterMount, connect, kea, key, listeners, path, props, reducers, selectors } from 'kea'
import { loaders } from 'kea-loaders'
import * as api from 'products/foo/frontend/generated/api'
export interface FooLogicProps {
fooId: string
}
// Generated by kea-typegen. Update if you're an agent, ignore if you're human.
export interface fooLogicValues {
name: string
nameUpper: string
}
// Generated by kea-typegen. Update if you're an agent, ignore if you're human.
export interface fooLogicActions {
setName: (name: string) => { name: string }
}
export type fooLogicType = MakeLogicType<fooLogicValues, fooLogicActions, FooLogicProps>
export const fooLogic = kea<fooLogicType>([
props({} as FooLogicProps),
key((props) => props.fooId),
path((key) => ['scenes', 'foo', 'fooLogic', key]),
connect(() => ({ values: [teamLogic, ['currentTeamId']] })),
actions({ setName: (name: string) => ({ name }) }),
loaders(({ props }) => ({
foo: [null as Foo | null, { loadFoo: async () => api.foosRetrieve(props.fooId) }],
})),
reducers({ name: ['', { setName: (_, { name }) => name }] }),
selectors({ nameUpper: [(s) => [s.name], (name): string => name.toUpperCase()] }),
listeners(({ actions }) => ({
loadFooSuccess: () => {
/* ... */
},
})),
afterMount(({ actions }) => {
actions.loadFoo()
}),
])
Conventional block order: props → key → path → connect → actions → forms → loaders →
reducers → selectors → sharedListeners → listeners → subscriptions (rare) →
windowValues → urlToAction / actionToUrl → afterMount / propsChanged / beforeUnmount.
You almost never need all of those — half a dozen blocks is typical. Pick the ones the logic actually uses and leave the rest out.
Decision flow — pick the right container before you start
Most kea bugs come from picking the wrong container for a piece of state. Work through this before reaching for any builder:
- Does it come from an HTTP call? Use a loader.
- Can it be computed from other state? Use a
selector. - Does an action change it, and does the UI need to re-render when it changes?
Use a
reducer. - Is it a timer, listener, or other disposable resource? Use
cache.disposables— see using-kea-disposables.
cache.foo is an escape hatch for transient flags the UI never reads — reach for it
last, not first. See references/state-decision.md
for the full breakdown.
Pattern index
Each reference covers one job-to-be-done with the pattern shape, why it's the right shape, and the trade-offs. File citations inside references are "examples in the wild today" — they age, so the pattern itself is the source of truth.
| You want to... | Read |
|---|---|
| Decide between reducer / selector / cache / loader | references/state-decision.md |
| Load data from the API | references/loading-data.md |
| Poll an endpoint or refresh on an interval | references/polling.md |
| Build a form | references/forms.md |
| Sync state with the URL | references/routing.md |
| Persist state across reloads | references/persisting-state.md |
| React to a value change | references/reacting-to-changes.md |
| Have multiple instances of one logic | references/keyed-logics.md |
| Share state across logics or a component subtree | references/connecting-logics.md |
| Test the logic | references/testing.md |
| Recognise a pattern you should convert on sight | references/anti-patterns.md |
Types and typegen
import { MakeLogicType, kea } from 'kea'
// Generated by kea-typegen. Update if you're an agent, ignore if you're human.
export interface fooLogicValues {
name: string
}
// Generated by kea-typegen. Update if you're an agent, ignore if you're human.
export interface fooLogicActions {
setName: (name: string) => { name: string }
}
export type fooLogicType = MakeLogicType<fooLogicValues, fooLogicActions>
export const fooLogic = kea<fooLogicType>([...])
Inline type blocks are produced by kea-typegen 3.8.3. Commands:
pnpm --filter=@posthog/frontend typegen:watch— watch mode while writing logicspnpm --filter=@posthog/frontend typegen:write— one-shot writepnpm --filter=@posthog/frontend typegen:check— CI parity check
Iterating on one logic
Full typegen over the whole codebase is slow. When you're iterating on a single logic, scope typegen to that file:
# Regenerate the type for one logic
pnpm --filter=@posthog/frontend typegen:file frontend/src/scenes/foo/fooLogic.ts
Use this loop while writing the logic. The current tsgo does not support combining
the project config with a file argument, so run the full typegen:check and
typescript:check once at the end to confirm nothing else broke.
Do not create or import a separate *LogicType.ts file. Change the logic and re-run
typegen so the inline generated block stays authoritative.
For keyed logics, annotate the export explicitly:
export const fooLogic: LogicWrapper<fooLogicType> = kea<fooLogicType>([...]).
When in doubt
- Read the relevant reference above before inventing a new pattern.
- Read the upstream keajs.org docs for builder signatures.
- Search the repo for the builder name in
*Logic.ts— there are hundreds of working examples and the conventions are stable. - For state-management decisions, favour the option that lets you delete code elsewhere.
Frequently asked questions about Writing Kea Logics
Similar skills
Playwright Component Testing
Test React and Vue components in isolation with Playwright.
Fluent UI Blazor
Integrate Fluent UI components in Blazor applications effortlessly.
Build MCP App
Create interactive UI widgets for MCP servers.
Web Design Reviewer
Identify and fix design issues in websites efficiently.
Markstream Install
Seamlessly integrate Markstream for Markdown rendering.
GSAP & Framer Scroll Animation
Create advanced scroll animations effortlessly.
