webhooks

webhooks is a skill for Claude Code from diillson/chatcli. It costs 79 tokens per session (584 once invoked), scanned A, original, Apache-2.0.

A skill for sending JSON messages to webhooks, which are URLs that trigger actions in another service. It also covers Slack, Discord, Zapier, Make, n8n, and checking signed incoming requests.

In plain words
What is it for?
Use it to send notifications, trigger automation workflows, call custom HTTP endpoints, or verify webhook signatures.
Why use it?
It connects an agent or script to external automation without needing a dedicated integration for every service.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to send notifications, trigger automation workflows, call custom HTTP endpoints, or verify webhook signatures.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/diillson/chatcli/webhooks
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add diillson/chatcli --skill webhooks
Clone the repo
git clone --depth 1 https://github.com/diillson/chatcli

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for webhooks

README.md
[![agentmods](https://agentmods.dev/badge/skills/diillson/chatcli/webhooks/github.svg)](https://agentmods.dev/skills/diillson/chatcli/webhooks)
Your own site
<a href="https://agentmods.dev/skills/diillson/chatcli/webhooks"><img src="https://agentmods.dev/badge/skills/diillson/chatcli/webhooks/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for webhooks

Your own site · 80×15
<a href="https://agentmods.dev/skills/diillson/chatcli/webhooks"><img src="https://agentmods.dev/badge/skills/diillson/chatcli/webhooks.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 79 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 584 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 26
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00079 $0.00584
Opus 5 $0.00039 $0.00292
Sonnet 5 $0.00016 $0.00117
Haiku 4.5 $0.00008 $0.00058

Measured 8d ago against content hash c963d24e7749, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

webhooks scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -X POST "$WEBHOOK_URL" -H "Content-Type: application/json" \
pkg/persona/builtin/skills/webhooks/SKILL.md · 64 lines

What it actually says

Webhooks / Automation

Fire outbound webhooks to integrate ChatCLI with anything that accepts HTTP — Slack/Discord incoming webhooks, Zapier/Make/n8n, custom endpoints. Keyless: it uses the webhook URLs/secrets the user provides.

Generic JSON POST

curl -s -X POST "$WEBHOOK_URL" -H "Content-Type: application/json" \
  -d '{"event":"build.done","status":"green"}'

Slack / Discord incoming webhooks

# Slack
curl -s -X POST "$SLACK_WEBHOOK_URL" -H "Content-Type: application/json" \
  -d '{"text":"Deploy finished ✅"}'
# Discord
curl -s -X POST "$DISCORD_WEBHOOK_URL" -H "Content-Type: application/json" \
  -d '{"content":"Deploy finished ✅"}'

(If you just need to message a chat the gateway already manages, prefer the @send tool / the send-message skill instead of a raw webhook.)

Zapier / Make / n8n

These expose a "catch hook" URL — POST your payload as JSON; the platform's scenario does the rest. Match the field names the scenario expects.

Signed webhooks (verify inbound)

When the user receives webhooks (e.g. via ChatCLI's gateway webhook adapter), verify the HMAC: compute HMAC-SHA256(secret, raw_body) and compare to the signature header in constant time. Document which header the sender uses (X-Hub-Signature-256, X-Signature, etc.).

Scheduled / recurring

For "fire this webhook every morning" or "after X happens", pair with @scheduler (timing) and this skill (the HTTP call).

Rules

  • Never log full secrets/URLs; treat webhook URLs as credentials.
  • Confirm the destination before POSTing to an unfamiliar URL — webhooks trigger real actions.
  • Check the response status; report success/failure with the HTTP code.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 64 lines · 79 tokens per session scan A c963d24e7749

Subscribe to this mod's changes

webhooks is a skill published in the GitHub repository diillson/chatcli (90 stars, last pushed yesterday), licensed Apache-2.0. It adds 79 tokens to every session and 584 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

01-bootstrap

Design and validate a new SaaS's architecture into an INSTALL.md via Q&A and stack comparison. Use when the user starts a project, chooses a stack, or picks an architecture pattern. Not for editing an existing stack or scaffolding code.

ai-driven-dev/framework · 52 tokens

data_analysis

A data-analysis guide for doing mathematical calculations and descriptive statistics with confirmed, sourced data. Descriptive statistics summarise data using measures such as totals, averages, or ranges.

bojieli/ai-agent-book · 19 tokens

blind-sqli

Blind SQL injection under hostile WAF — manual bypass playbook for when sqlmap fails because common tokens (SUBSTRING, IF, AND, WHERE, single quotes) are filtered. Covers token-fingerprinting probe loops, arithmetic-multiplication boolean evaluation, hex-encoded literals, and exponential-probe binary search. Loaded on…

PurpleAILAB/Decepticon · 88 tokens

race-condition

Race condition / TOCTOU exploitation — concurrent and parallel-request attacks against web applications that check then act, write session state before validating it, or perform slow operations that widen the race window. Covers single-endpoint races (double-spend, coupon abuse, balance overflow) and multi-endpoint…

PurpleAILAB/Decepticon · 80 tokens

api-server-sent-events

Server-Sent Events (SSE / EventSource) exploitation — origin abuse for cross-site streaming exfil, prompt-injection via SSE messages into LLM clients, retry-after token leak, fragmenting events to bypass content-type sniffers.

PurpleAILAB/Decepticon · 54 tokens

golang-grpc

Provides gRPC usage guidelines, protobuf organization, and production-ready patterns for Golang microservices. Use when implementing, reviewing, or debugging gRPC servers/clients, writing proto files, setting up interceptors, handling gRPC errors with status codes, configuring TLS/mTLS, testing with bufconn, or…

samber/cc-skills-golang · 72 tokens