ce-webhooks
Installation
SKILL.md
LLM Docs Header: All requests to
https://llm-docs.commercengine.iomust include theAccept: text/markdownheader (or append.mdto the URL path). Without it, responses return HTML instead of parseable markdown.
Webhooks & Events
Prerequisite: Webhooks are asynchronous. Use for background tasks (sync, notifications), not synchronous flows.
Quick Reference
| Task | Action |
|---|---|
| 1. Create endpoint | /api/webhooks/ce route in your app |
| 2. Verify signature | Validate webhook signature header |
| 3. Process event | Route by event_type, queue heavy work |
| 4. Return 200 | Respond quickly to acknowledge receipt |