don-cheli-sdd: Skill for Claude Code

.agent/skills/doncheli-webhook/SKILL.md

doncheli-webhook is a skill for Claude Code from doncheli/don-cheli-sdd. It costs 44 tokens per session (414 once invoked), scanned A, original, Apache-2.0.

A webhook and automation setup helper. A webhook is an HTTP callback that sends event data from one system to another when something happens.

In plain words
What is it for?
It helps configure triggers for platforms such as GitHub Actions, custom servers, or Zapier, create test payloads and curl commands, and document the webhook.
Why use it?
It reduces the manual work of choosing an event, formatting its payload, testing the callback URL, and checking basic security protections.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

This is doncheli/don-cheli-sdd's own configuration. It tells Claude Code how to work on don-cheli-sdd itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything don-cheli-sdd configures →

Part of the don-cheli-sdd plugin — 28 skills, 115 commands, 1 agent shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to doncheli/don-cheli-sdd. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/doncheli/don-cheli-sdd/main/.agent/skills/doncheli-webhook/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/doncheli/don-cheli-sdd

Made for: Claude Code.

Or install don-cheli-sdd, the plugin that ships this one along with the rest of its 28 skills, 115 commands, 1 agent.

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 doncheli-webhook

README.md
[![agentmods](https://agentmods.dev/badge/skills/doncheli/don-cheli-sdd/doncheli-webhook/github.svg)](https://agentmods.dev/skills/doncheli/don-cheli-sdd/doncheli-webhook)
Your own site
<a href="https://agentmods.dev/skills/doncheli/don-cheli-sdd/doncheli-webhook"><img src="https://agentmods.dev/badge/skills/doncheli/don-cheli-sdd/doncheli-webhook/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 doncheli-webhook

Your own site · 80×15
<a href="https://agentmods.dev/skills/doncheli/don-cheli-sdd/doncheli-webhook"><img src="https://agentmods.dev/badge/skills/doncheli/don-cheli-sdd/doncheli-webhook.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 414 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 34
    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.00044 $0.00414
Opus 5 $0.00022 $0.00207
Sonnet 5 $0.00009 $0.00083
Haiku 4.5 $0.00004 $0.00041

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

Security

Grade A, and why

doncheli-webhook 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 9d 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.

6. Provide a `curl` command to manually test the webhook
.agent/skills/doncheli-webhook/SKILL.md · 49 lines

What it actually says

Don Cheli: Webhook & Automation

Instructions

  1. Accept the desired webhook configuration: event, target URL, payload format, secret
  2. Detect the platform (GitHub Actions, custom server, Zapier, etc.) from context
  3. Generate the webhook configuration code/YAML for the detected platform
  4. Validate the target URL is reachable if possible (HTTP HEAD check)
  5. Generate a test payload that matches the event schema
  6. Provide a curl command to manually test the webhook
  7. Check for security best practices:
    • HTTPS endpoint required (flag plain HTTP as a blocker)
    • Webhook secret / HMAC signature validation
    • Idempotency key handling for retries
  8. Document the webhook in .dc/webhooks.md with: event, URL, owner, secret env var name
  9. Never log or print the actual secret value — always reference the env var name

Output Format

## Webhook Configuration — pr_merged → deploy

### Config (GitHub Actions)
on:
  pull_request:
    types: [closed]

### Test Command
curl -X POST https://your-app.com/hooks/deploy \
  -H "X-Hub-Signature-256: sha256=<computed>" \
  -H "Content-Type: application/json" \
  -d '{"action":"closed","merged":true,"branch":"main"}'

### Security Checklist
✅ HTTPS endpoint
✅ HMAC signature validation required
⚠️  Add idempotency key handling to prevent duplicate deploys on retry

### Registered in .dc/webhooks.md
Event: pull_request.closed + merged
Target: https://your-app.com/hooks/deploy
Secret: $WEBHOOK_SECRET_DEPLOY
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. 9d ago First seen · 49 lines · 44 tokens per session scan A 150460c0d1f7

Subscribe to this mod's changes

doncheli-webhook is a skill published in the GitHub repository doncheli/don-cheli-sdd (57 stars, last pushed 29d ago), licensed Apache-2.0. It adds 44 tokens to every session and 414 once invoked, about $0.0002 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-08-30.

Related

Other skills, from other repositories

build-teaql-app

Build or change a TeaQL application in Java, Rust, Go, Swift, Python, C#/.NET, or TypeScript, including Kotlin/JVM applications that consume Java-generated libraries. Mandatory order: first draft and save a complete KSML model, then verify the client and evaluate that saved model, repair it through repeated evaluation…

teaql/teaql-agent-kit · 112 tokens

proxy6

Skill "proxy6" from VKirill/claude-lane-stack, covering 🎯 version requirements (august 2026), usage, use this skill when, do not use this skill when and purpose.

VKirill/claude-lane-stack · 221 tokens

google-tag-manager

Skill "google-tag-manager" from VKirill/claude-lane-stack, covering 🎯 version requirements (june 2026), usage, use this skill when, do not use this skill when and purpose.

VKirill/claude-lane-stack · 134 tokens

api

RESTful API design patterns and best practices. Use when creating endpoints, designing APIs, or implementing routes.

xiaobei930/cc-best · 23 tokens

mcp-builder

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

floomhq/moto · 61 tokens

analyze-codebase-for-mcp

Analyze an arbitrary codebase to identify functions, APIs, and data sources suitable for exposure as MCP tools, producing a tool specification document. Use when planning an MCP server for an existing project, auditing a codebase before wrapping it as an AI-accessible tool surface, comparing what a codebase can do…

KunanonJ/ai-skills-hub · 90 tokens