feat: add huggingface-webhooks skill#44
Merged
Merged
Conversation
3 tasks
leggetter
added a commit
that referenced
this pull request
May 11, 2026
PRs for discord/claude-managed-agents/gemini merged ahead of this one and added rows/entries to README.md and providers.yaml at the same alphabetical neighbourhood. Re-pushed the resolved files so PR #44 stays mergeable. https://claude.ai/code/session_01NNTgQRJss1V7gyzzJ9rjnB
…dling Adds SKILL.md, references (overview, setup, verification), and Express, Next.js, and FastAPI examples with passing tests. Verification uses timing-safe comparison of the verbatim X-Webhook-Secret header (with ?secret= query parameter as a fallback), covering all five documented scopes (repo, repo.content, repo.config, discussion, discussion.comment) plus forward-compatibility for unknown narrowed scopes. https://claude.ai/code/session_01NNTgQRJss1V7gyzzJ9rjnB
Adds the Hugging Face row to the Provider Skills table in README.md and a providers.yaml entry (docs URLs, notes, testScenario) so the "Validate New Provider" CI workflow finds the integration files. The integrations were previously only on the prep branch (PR #40); moving them onto each feat PR makes the 12 generated PRs independently mergeable in any order. https://claude.ai/code/session_01NNTgQRJss1V7gyzzJ9rjnB
… source 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
8257b0e to
11b2b0e
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
huggingface-webhooksprovider skill for Hugging Face Hub webhooks. Uses shared-token verification (NOT HMAC) via theX-Webhook-Secretheader.What's included
skills/huggingface-webhooks/SKILL.md— entry pointskills/huggingface-webhooks/references/— overview, setup, verification (timing-safe comparison of the verbatim secret)skills/huggingface-webhooks/examples/— Express, Next.js, FastAPI handlersNotes
X-Webhook-Secretheader against configured secret (NOT HMAC — the secret is sent verbatim)?secret=query parameter on the handler URL (for environments where reading headers is hard)repo,repo.content,repo.config,discussion,discussion.comment, with actionscreate/update/delete/moveupdateon the broader scope (per the docs' guidance)event.scope,event.action,repo, optionaldiscussion,comment,updatedRefs,updatedConfig, andwebhook(withversion)Test plan
cd skills/huggingface-webhooks/examples/express && npm testcd skills/huggingface-webhooks/examples/nextjs && npm testcd skills/huggingface-webhooks/examples/fastapi && pytest test_webhook.py -vGeneration 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