webhook — for Claude Code webhook, community, for Claude Code, ide skills, ai-assistant, claude-code, docker, golang, kubernetes, telegram

v1.0.0

À propos de ce Skill

Scenario recommande : Ideal for AI agents that need webhook management. Resume localise : # Webhook Management You can register webhook endpoints that forward incoming HTTP requests to this chat. It covers ai-assistant, claude, claude-code workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Fonctionnalités

Webhook Management
Wrap each webhook command in a fenced code block with language nclaw:webhook:
{"action":"create","description":"..."}
action: "create" (required)
description: What this webhook is for (required). Used to provide context when processing incoming

# Core Topics

nickalie nickalie
[13]
[1]
Updated: 4/6/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
67
Canonical Locale
en
Detected Body Locale
en

Scenario recommande : Ideal for AI agents that need webhook management. Resume localise : # Webhook Management You can register webhook endpoints that forward incoming HTTP requests to this chat. It covers ai-assistant, claude, claude-code workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Pourquoi utiliser cette compétence

Recommandation : webhook helps agents webhook management. Webhook Management You can register webhook endpoints that forward incoming HTTP requests to this chat. This AI agent skill supports Claude Code, Cursor, and

Meilleur pour

Scenario recommande : Ideal for AI agents that need webhook management.

Cas d'utilisation exploitables for webhook

Cas d'usage : Applying Webhook Management
Cas d'usage : Applying Wrap each webhook command in a fenced code block with language nclaw:webhook:
Cas d'usage : Applying {"action":"create","description":"..."}

! Sécurité et Limitations

  • Limitation : Requires repository-specific context from the skill documentation
  • Limitation : Works best when the underlying tools and dependencies are already configured

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is webhook?

Scenario recommande : Ideal for AI agents that need webhook management. Resume localise : # Webhook Management You can register webhook endpoints that forward incoming HTTP requests to this chat. It covers ai-assistant, claude, claude-code workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install webhook?

Run the command: npx killer-skills add nickalie/nclaw/webhook. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for webhook?

Key use cases include: Cas d'usage : Applying Webhook Management, Cas d'usage : Applying Wrap each webhook command in a fenced code block with language nclaw:webhook:, Cas d'usage : Applying {"action":"create","description":"..."}.

Which IDEs are compatible with webhook?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for webhook?

Limitation : Requires repository-specific context from the skill documentation. Limitation : Works best when the underlying tools and dependencies are already configured.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add nickalie/nclaw/webhook. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use webhook immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

webhook

Install webhook, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Webhook Management

You can register webhook endpoints that forward incoming HTTP requests to this chat. When an external service calls the webhook URL, the request details are sent to Claude in this conversation for processing.

Output Format

Wrap each webhook command in a fenced code block with language nclaw:webhook:

```nclaw:webhook
{"action":"create","description":"..."}
```

Actions

Create a Webhook

Fields:

  • action: "create" (required)
  • description: What this webhook is for (required). Used to provide context when processing incoming requests.

The system returns a URL like https://{BASE_DOMAIN}/webhooks/{UUID} that accepts any HTTP method (GET, POST, PUT, DELETE, etc.).

Delete a Webhook

Fields:

  • action: "delete" (required)
  • webhook_id: UUID of the webhook to delete (required)

List Webhooks

Fields:

  • action: "list" (required)

Returns all webhooks registered in this chat with their IDs, descriptions, statuses, and URLs.

How Incoming Requests Work

When an external service calls a webhook URL:

  1. The server responds with 200 OK immediately.
  2. In the background, a prompt is built containing the request method, headers, query parameters, body, and the webhook description.
  3. Claude processes the request in this chat's session and sends the response back here.

Rules

  1. Always confirm to the user what webhook was created and provide the URL in your response text.
  2. One command per code block. Use multiple code blocks for multiple actions.
  3. Include the webhook code block naturally within your response - the system will strip it before showing the response to the user.
  4. The description should be clear and specific, as it is included in the prompt when processing incoming requests.
  5. When deleting, reference the webhook ID from the list of registered webhooks.

Examples

User: "Create a webhook for GitHub push notifications" Response: I've created a webhook endpoint for receiving GitHub push notifications. You can configure it in your GitHub repository's webhook settings.

nclaw
1{"action":"create","description":"GitHub push notifications - receives push events from a GitHub repository"}

User: "Set up an endpoint to receive form submissions" Response: Done! Here's your webhook endpoint for receiving form submissions. Point your form's action URL to this endpoint.

nclaw
1{"action":"create","description":"Form submissions - receives HTML form POST data with user inputs"}

User: "List my webhooks" Response: Let me check your registered webhooks.

nclaw
1{"action":"list"}

User: "Delete the GitHub webhook" Response: I've deleted the GitHub push notifications webhook.

nclaw
1{"action":"delete","webhook_id":"a1b2c3d4-e5f6-7890-abcd-ef1234567890"}

User: "Create a webhook that monitors my deployment pipeline" Response: I've set up a webhook to monitor your deployment pipeline. Configure your CI/CD system to send POST requests to this URL on deployment events.

nclaw
1{"action":"create","description":"Deployment pipeline monitor - receives CI/CD deployment status events (start, success, failure)"}

Compétences associées

Looking for an alternative to webhook or another community skill for your workflow? Explore these related open-source skills.

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

widget-generator

Logo of f
f

Générez des plugins de widgets personnalisables pour le système de flux prompts.chat

flags

Logo of vercel
vercel

Le Cadre de Réaction

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Tenseurs et réseaux neuronaux dynamiques en Python avec une forte accélération GPU

98.6k
0
Développeur