Skylv Webhook Tester

v1.0.0

Tests and debugs webhooks. Inspects requests and validates responses. Triggers: test webhook, webhook debug, http webhook.

0· 121·0 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for sky-lv/skylv-webhook-tester.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Skylv Webhook Tester" (sky-lv/skylv-webhook-tester) from ClawHub.
Skill page: https://clawhub.ai/sky-lv/skylv-webhook-tester
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install skylv-webhook-tester

ClawHub CLI

Package manager switcher

npx clawhub@latest install skylv-webhook-tester
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name and description (webhook testing/debugging) match the SKILL.md content. The file provides example requests and testing tools appropriate for the stated purpose and does not ask for unrelated access or credentials.
Instruction Scope
Instructions are limited to sending test payloads (PowerShell Invoke-RestMethod example), interpreting HTTP response codes, and pointing to common inspection/forwarding tools (webhook.site, requestbin, ngrok). The skill does not instruct the agent to read local files, environment variables, or send data to unexpected endpoints beyond user-specified webhook URLs and public inspection tools.
Install Mechanism
No install specification or code files — instruction-only. No downloads or extracted artifacts are suggested by the skill itself.
Credentials
No environment variables, credentials, or config paths are requested. The examples reference public testing services and a local tunneling tool; these are reasonable for the stated purpose but are external tools the user must obtain/install separately.
Persistence & Privilege
Skill is not set to always: true and does not request persistent system presence or modify other skills/configurations. It is user-invocable and follows the expected privilege model for a tool of this type.
Assessment
This skill is instruction-only and appears coherent for testing webhooks. It does not ask for secrets or install anything itself. However, exercise caution when using its suggestions: do not send real production credentials or sensitive payloads to public inspect services (webhook.site, requestbin) or expose sensitive local services via ngrok without understanding the security implications. Verify any webhook target URL before sending data, install ngrok or other tools from their official sources, and prefer staging endpoints when testing. Because the skill originates from an unknown author, treat its instructions as guidance you will execute manually rather than as an automated integration that will run with your credentials.

Like a lobster shell, security has layers — review code before you run it.

latestvk97ejnxrgcgtyfmxhdwnvsqy79858cah
121downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

Webhook Tester

Overview

Helps test, debug, and validate webhook integrations.

When to Use

  • User asks to "test a webhook" or "debug webhook"

Send Test Payload

$headers = @{ "Content-Type" = "application/json" } $body = @{ event = "test" } | ConvertTo-Json Invoke-RestMethod -Uri "https://example.com/webhook" -Method POST -Headers $headers -Body $body

Response Codes

  • 200 OK = success
  • 401 = authentication failed
  • 403 = signature verification failed
  • 429 = rate limited
  • 5xx = server error

Common Testing Tools

Comments

Loading comments...