feat: add intercom-webhooks skill#46
Merged
Merged
Conversation
3 tasks
Receive and verify Intercom webhooks using X-Hub-Signature (HMAC-SHA1 over the raw body with the app's client_secret). Includes runnable Express, Next.js, and FastAPI examples with passing tests, plus overview/setup/verification references and providers.yaml + README integration.
…urce arg Applies the new project convention from PR #40: use `npx hookdeck-cli listen <port> <source> --path /webhooks/<source>` everywhere instead of `hookdeck listen <port> --path /webhooks/<source>`. Skips the global-install prereq (webhook-skills is provider-neutral) and passes the required `[source]` positional so the command is copy-paste- runnable without falling into an interactive prompt. https://claude.ai/code/session_01NNTgQRJss1V7gyzzJ9rjnB
df38c88 to
fd48b91
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a complete
intercom-webhooksprovider skill —X-Hub-Signature(Facebook-style) HMAC-SHA1 verification using the app's Client Secret.What's included
skills/intercom-webhooks/SKILL.md— entry pointskills/intercom-webhooks/references/— overview, setup, verificationskills/intercom-webhooks/examples/— Express, Next.js, FastAPI handlers with passing testsNotes
X-Hub-Signature(Facebook-style)sha1=<hex>conversation.user.created,conversation.user.replied,conversation.admin.replied,conversation.admin.assigned,contact.created,ticket.created,ping(handshake)Test plan
cd skills/intercom-webhooks/examples/express && npm testcd skills/intercom-webhooks/examples/nextjs && npm testcd skills/intercom-webhooks/examples/fastapi && pytest test_webhook.py -vpingtopicGeneration details
./scripts/generate-skills.sh generatewith--config providers.yaml(entry added in PR docs: IS_SANDBOX=1 generator note + normative Hookdeck CLI invocation #40)claude-opus-4-7https://claude.ai/code/session_01NNTgQRJss1V7gyzzJ9rjnB
Generated by Claude Code