원클릭으로
webiny-api-webhooks-catalog
api/webhooks — 15 abstractions.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
api/webhooks — 15 abstractions.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | webiny-api-webhooks-catalog |
| context | webiny-api |
| description | api/webhooks — 15 abstractions. |
import { Name } from "<importPath>";webiny-use-case-pattern or webiny-event-handler-pattern skills for implementation patternsName: createWebhooks
Import: import { createWebhooks } from "webiny/api/webhooks"
Source: @webiny/webhooks/api/index.ts
Name: IListMeta
Kind: type
Import: import type { IListMeta } from "webiny/api/webhooks"
Source: @webiny/webhooks/api/features/ListWebhooks/abstractions.ts
Name: IWebhookPayload
Kind: type
Import: import type { IWebhookPayload } from "webiny/api/webhooks"
Source: @webiny/webhooks/api/features/SendWebhookTask/types.ts
Name: Webhook
Kind: type
Import: import type { Webhook } from "webiny/api/webhooks"
Source: @webiny/webhooks/api/domain/Webhook.ts
Name: WebhookCmsEntry
Kind: type
Import: import type { WebhookCmsEntry } from "webiny/api/webhooks"
Source: @webiny/webhooks/api/domain/Webhook.ts
Name: WebhookCmsEntryValues
Kind: type
Import: import type { WebhookCmsEntryValues } from "webiny/api/webhooks"
Source: @webiny/webhooks/api/domain/Webhook.ts
Name: WebhookDelivery
Kind: type
Import: import type { WebhookDelivery } from "webiny/api/webhooks"
Source: @webiny/webhooks/api/domain/WebhookDelivery.ts
Name: WebhookDeliveryCmsEntry
Kind: type
Import: import type { WebhookDeliveryCmsEntry } from "webiny/api/webhooks"
Source: @webiny/webhooks/api/domain/WebhookDelivery.ts
Name: WebhookDeliveryCmsEntryValues
Kind: type
Import: import type { WebhookDeliveryCmsEntryValues } from "webiny/api/webhooks"
Source: @webiny/webhooks/api/domain/WebhookDelivery.ts
Name: WebhookDeliveryStatus
Kind: type
Import: import type { WebhookDeliveryStatus } from "webiny/api/webhooks"
Source: @webiny/webhooks/api/domain/WebhookDelivery.ts
Name: WebhookDispatcher
Import: import { WebhookDispatcher } from "webiny/api/webhooks"
Source: @webiny/api-core/features/webhooks/index.ts
Description: Routes a domain event to all matching enabled webhooks via background tasks.
Name: WebhookFactory
Import: import { WebhookFactory } from "webiny/api/webhooks"
Source: @webiny/api-core/features/webhooks/index.ts
Name: WebhookProvider
Import: import { WebhookProvider } from "webiny/api/webhooks"
Source: @webiny/api-core/features/webhooks/index.ts
Name: WebhookSignPayload
Import: import { WebhookSignPayload } from "webiny/api/webhooks"
Source: @webiny/api-core/features/webhooks/index.ts
Description: Signs webhook payloads using the Standard Webhooks spec (https://www.standardwebhooks.com).
Name: WebhookVerifyPayload
Import: import { WebhookVerifyPayload } from "webiny/api/webhooks"
Source: @webiny/api-core/features/webhooks/index.ts
Description: Verifies incoming webhook payloads using the Standard Webhooks spec (https://www.standardwebhooks.com).
Building a New Entry Wizard for the Headless CMS. Use this skill when the developer wants to show a custom wizard UI before the entry form when creating new CMS entries -- collecting fields like title, slug, or category upfront, then pre-filling the entry form. Covers ContentEntryEditorConfig.NewEntryWizard, createFeature, FormModelFactory, createReactiveComponent, useContentEntryFormPresenter, and the dirty-flag on setData.
Building forms with the FormModel system — field types, renderers, layout, validation, conditional rules, computed fields, and dynamic zones. Use this skill when the developer needs to define form fields with the builder API, choose renderers, build layouts with tabs/rows/separators, add validation (Zod or imperative), use conditional visibility/disable rules, create computed fields, or work with object fields and templates (dynamic zones).
api — 21 abstractions.
Admin-side architecture patterns for Webiny extensions. Use this skill when building frontend features with headless features (UseCase/Repository/Gateway), presentation features (Presenter/ViewModel/hooks/components), MobX-based presenters, RegisterFeature, and Admin BuildParams. Covers the admin/ directory structure for both features/ and presentation/ layers.
Covers the PreviewUrlModifier extension point in Website Builder. Use when a user wants to inject custom query parameters into live preview URLs — e.g. signed tokens, tenant identifiers, feature flags — from their Webiny project. Handles the full registration pattern: implementing the interface, wiring via createFeature + RegisterFeature, and registering via webiny.config.tsx. Supports async modifier methods (e.g. remote token fetch).
Covers how to configure the maximum allowed size of the Webiny API Lambda bundle using the Infra.Api.MaxBundleSize extension in webiny.config.tsx. Use when a project's API bundle exceeds the default 4.5 MB limit or when you want to enforce a stricter limit. Handles the extension syntax, byte calculations, and interpreting the build error message.