{"id":50528069,"url":"https://github.com/webhookrelay/skills","last_synced_at":"2026-06-03T10:01:14.385Z","repository":{"id":362057390,"uuid":"1256762982","full_name":"webhookrelay/skills","owner":"webhookrelay","description":"Public repository for Agent Skills","archived":false,"fork":false,"pushed_at":"2026-06-02T11:42:32.000Z","size":24,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-02T12:26:53.825Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/webhookrelay.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-02T04:21:58.000Z","updated_at":"2026-06-02T11:42:36.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/webhookrelay/skills","commit_stats":null,"previous_names":["webhookrelay/skills"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/webhookrelay/skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webhookrelay%2Fskills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webhookrelay%2Fskills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webhookrelay%2Fskills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webhookrelay%2Fskills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/webhookrelay","download_url":"https://codeload.github.com/webhookrelay/skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webhookrelay%2Fskills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33858578,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-03T02:00:06.370Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-03T10:01:13.428Z","updated_at":"2026-06-03T10:01:14.374Z","avatar_url":"https://github.com/webhookrelay.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Webhook Relay Skills\n\nAgent [Skills](https://agentskills.io/specification) that teach Claude (and other\nskill-aware agents) how to drive [Webhook Relay](https://webhookrelay.com) with\nthe `relay` CLI and API — forwarding webhooks, transforming them, exposing\nservices over tunnels, and scheduling recurring webhooks.\n\n## Install all skills\n\nWith the [skills CLI](https://www.skills.sh):\n\n```bash\nnpx skills add webhookrelay/skills\n```\n\nAdd `-g` to install globally for all your agents. You can also use this repo as a\nClaude Code plugin marketplace (see `.claude-plugin/marketplace.json`), or copy\nany `skills/\u003cname\u003e/` folder into your agent's skills directory. To install just\none skill, use the `--skill \u003cname\u003e` command shown in each section below.\n\n## Skills\n\n### `webhook-forwarding-internal`\n\nReceive webhooks from external providers (Stripe, GitHub, Shopify, CI systems,\netc.) on a public Webhook Relay endpoint and forward them to a destination that\nhas no public IP — `localhost`, a private LAN host, or a Kubernetes service. The\n`relay` agent holds the outbound connection and performs the final hop, so no\ninbound firewall ports are needed. Best for local development and testing\nprovider webhooks against code running on your machine.\n\n```bash\nnpx skills add webhookrelay/skills --skill webhook-forwarding-internal\n```\n\n### `webhook-forwarding-public`\n\nForward webhooks server-side from a public Webhook Relay endpoint to another\ninternet-reachable URL — no local agent required. Use it to relay between cloud\nservices, put a stable URL in front of an API, fan one webhook out to many\ndestinations, or transform payloads in transit (e.g. into Slack/Discord format).\n\n```bash\nnpx skills add webhookrelay/skills --skill webhook-forwarding-public\n```\n\n### `webhook-transformations`\n\nWrite, test, and attach JavaScript (or Lua) functions that modify webhooks in\nflight — reshape the JSON body, rename/format fields, add/remove headers, change\nthe method or path, set the response, drop requests conditionally, or call other\nHTTP APIs. Covers the function API, local testing with `relay function test`,\nand attaching functions to inputs/outputs.\n\n```bash\nnpx skills add webhookrelay/skills --skill webhook-transformations\n```\n\n### `relay-tunnels`\n\nExpose a local or internal HTTP/TCP service on a stable public hostname (an\nngrok-style reverse proxy) without opening firewall ports — share a dev server,\ndemo a local web app, expose an internal API, or tunnel TCP (SSH, databases).\nCovers TLS modes, regions, basic auth, host-header rewriting, and running the\nagent as a service.\n\n```bash\nnpx skills add webhookrelay/skills --skill relay-tunnels\n```\n\n### `recurring-webhooks`\n\nSchedule cron-driven webhooks that fire automatically — send a recurring HTTP\nrequest (method, body, headers) to one or more destinations on an interval or at\nspecific times/timezone. Use for health checks, heartbeats, scheduled reports,\nor triggering a transformation function on a timer. Managed via the `relay cron`\ncommand or the `/v1/crons` API.\n\n```bash\nnpx skills add webhookrelay/skills --skill recurring-webhooks\n```\n\n## Prerequisites\n\nAll skills use the `relay` CLI:\n\n1. Install it: https://webhookrelay.com/docs/installation/cli\n2. Log in: `relay login` (or set `RELAY_KEY` / `RELAY_SECRET`).\n3. Verify: `relay bucket ls`.\n\n## Concepts at a glance\n\n- **Bucket** — groups inputs and outputs.\n- **Input** — a public HTTPS endpoint that receives webhooks.\n- **Output** — a destination requests are relayed to; `internal` (delivered by a\n  running agent, e.g. localhost) or `public` (delivered server-side).\n- **Function** — server-side JavaScript/Lua that transforms requests/responses.\n- **Tunnel** — a public hostname that proxies inbound HTTP/TCP to a local/\n  internal service.\n- **Cron** — a scheduled, recurring webhook.\n\n## Links\n\n- Docs: https://webhookrelay.com/docs\n- Functions reference: https://webhookrelay.com/docs/webhooks/functions\n- Cron webhooks: https://webhookrelay.com/cron\n- Dashboard: https://my.webhookrelay.com\n- LLM-friendly docs index (append `.md` to any docs URL for plain markdown): https://webhookrelay.com/llms.txt\n\nEach skill's **References** section links the relevant docs as `.md` URLs that\nrender as plain markdown — handy for agents to fetch and read directly.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebhookrelay%2Fskills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebhookrelay%2Fskills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebhookrelay%2Fskills/lists"}