WP Interactivity API
When to use
Use this skill when the user mentions:
- Interactivity API,
@wordpress/interactivity,
data-wp-interactive, data-wp-on--*, data-wp-bind--*, data-wp-context,
- block
viewScriptModule / module-based view scripts,
- hydration issues or “directives don’t fire”.
Inputs required
- Repo root + triage output (
wp-project-triage).
- Which block/theme/plugin surfaces are affected (frontend, editor, both).
- Any constraints: WP version, whether modules are supported in the build.
Procedure
1) Detect existing usage + integration style
Search for:
data-wp-interactive
@wordpress/interactivity
viewScriptModule
Decide:
- Is this a block providing interactivity via
block.json view script module?
- Is this theme-level interactivity?
- Is this plugin-side “enhance existing markup” usage?
If you’re creating a new interactive block (not just debugging), prefer the official scaffold template:
@wordpress/create-block-interactive-template (via @wordpress/create-block)
2) Identify the store(s)
Locate store definitions and confirm:
- state shape,
- actions (mutations),
- callbacks/event handlers used by
data-wp-on--*.
3) Implement or change directives safely
When touching markup directives:
- keep directive usage minimal and scoped,
- prefer stable data attributes that map clearly to store state,
- ensure server-rendered markup + client hydration align.
WordPress 6.9 changes:
data-wp-ignore is deprecated and will be removed in future versions. It broke context inheritance and caused issues with client-side navigation. Avoid using it.
- Unique directive IDs: Multiple directives of the same type can now exist on one element using the
--- separator (e.g., data-wp-on--click---plugin-a="..." and data-wp-on--click---plugin-b="...").
- New TypeScript types:
AsyncAction<ReturnType> and TypeYield<T> help with async action typing.
For quick directive reminders, see references/directives-quickref.md.
4) Build/tooling alignment
Verify the repo supports the required module build path:
- if it uses
@wordpress/scripts, prefer its conventions.
- if it uses custom bundling, confirm module output is supported.
5) Debug common failure modes
If “nothing happens” on interaction:
- confirm the
viewScriptModule is enqueued/loaded,
- confirm the DOM element has
data-wp-interactive,
- confirm the store namespace matches the directive’s value,
- confirm there are no JS errors before hydration.
See references/debugging.md.
Verification
wp-project-triage indicates signals.usesInteractivityApi: true after your change (if applicable).
- Manual smoke test: directive triggers and state updates as expected.
- If tests exist: add/extend Playwright E2E around the interaction path.
Failure modes / debugging
- Directives present but inert:
- view script not loading, wrong module entrypoint, or missing
data-wp-interactive.
- Hydration mismatch / flicker:
- server markup differs from client expectations; simplify or align initial state.
- Performance regressions:
- overly broad interactive roots; scope interactivity to smaller subtrees.
- Client-side navigation issues (WordPress 6.9):
getServerState() and getServerContext() now reset between page transitions—ensure your code doesn't assume stale values persist.
- Router regions now support
attachTo for rendering overlays (modals, pop-ups) dynamically.
Escalation
- If repo build constraints are unclear, ask: “Is this using
@wordpress/scripts or a custom bundler (webpack/vite)?”
- Consult:
references/directives-quickref.md
references/debugging.md
1---2name: wp-interactivity-api3description: Use when building or debugging WordPress Interactivity API features (data-wp-* directives, @wordpress/interactivity store/state/actions, block viewScriptModule integration) including performance, hydration, and directive behavior.4---56# WP Interactivity API78## When to use910Use this skill when the user mentions:1112- Interactivity API, `@wordpress/interactivity`,13- `data-wp-interactive`, `data-wp-on--*`, `data-wp-bind--*`, `data-wp-context`,14- block `viewScriptModule` / module-based view scripts,15- hydration issues or “directives don’t fire”.1617## Inputs required1819- Repo root + triage output (`wp-project-triage`).20- Which block/theme/plugin surfaces are affected (frontend, editor, both).21- Any constraints: WP version, whether modules are supported in the build.2223## Procedure2425### 1) Detect existing usage + integration style2627Search for:2829- `data-wp-interactive`30- `@wordpress/interactivity`31- `viewScriptModule`3233Decide:3435- Is this a block providing interactivity via `block.json` view script module?36- Is this theme-level interactivity?37- Is this plugin-side “enhance existing markup” usage?3839If you’re creating a new interactive block (not just debugging), prefer the official scaffold template:4041- `@wordpress/create-block-interactive-template` (via `@wordpress/create-block`)4243### 2) Identify the store(s)4445Locate store definitions and confirm:4647- state shape,48- actions (mutations),49- callbacks/event handlers used by `data-wp-on--*`.5051### 3) Implement or change directives safely5253When touching markup directives:5455- keep directive usage minimal and scoped,56- prefer stable data attributes that map clearly to store state,57- ensure server-rendered markup + client hydration align.5859**WordPress 6.9 changes:**6061- **`data-wp-ignore` is deprecated** and will be removed in future versions. It broke context inheritance and caused issues with client-side navigation. Avoid using it.62- **Unique directive IDs**: Multiple directives of the same type can now exist on one element using the `---` separator (e.g., `data-wp-on--click---plugin-a="..."` and `data-wp-on--click---plugin-b="..."`).63- **New TypeScript types**: `AsyncAction<ReturnType>` and `TypeYield<T>` help with async action typing.6465For quick directive reminders, see `references/directives-quickref.md`.6667### 4) Build/tooling alignment6869Verify the repo supports the required module build path:7071- if it uses `@wordpress/scripts`, prefer its conventions.72- if it uses custom bundling, confirm module output is supported.7374### 5) Debug common failure modes7576If “nothing happens” on interaction:7778- confirm the `viewScriptModule` is enqueued/loaded,79- confirm the DOM element has `data-wp-interactive`,80- confirm the store namespace matches the directive’s value,81- confirm there are no JS errors before hydration.8283See `references/debugging.md`.8485## Verification8687- `wp-project-triage` indicates `signals.usesInteractivityApi: true` after your change (if applicable).88- Manual smoke test: directive triggers and state updates as expected.89- If tests exist: add/extend Playwright E2E around the interaction path.9091## Failure modes / debugging9293- Directives present but inert:94 - view script not loading, wrong module entrypoint, or missing `data-wp-interactive`.95- Hydration mismatch / flicker:96 - server markup differs from client expectations; simplify or align initial state.97- Performance regressions:98 - overly broad interactive roots; scope interactivity to smaller subtrees.99- Client-side navigation issues (WordPress 6.9):100 - `getServerState()` and `getServerContext()` now reset between page transitions—ensure your code doesn't assume stale values persist.101 - Router regions now support `attachTo` for rendering overlays (modals, pop-ups) dynamically.102103## Escalation104105- If repo build constraints are unclear, ask: “Is this using `@wordpress/scripts` or a custom bundler (webpack/vite)?”106- Consult:107 - `references/directives-quickref.md`108 - `references/debugging.md`