AgentStack
SKILL verified Apache-2.0 Self-run

Doncheli Webhook

skill-doncheli-don-cheli-sdd-doncheli-webhook · by doncheli

Configure and test webhooks and automation triggers for the project. Activate when user mentions "webhook", "trigger", "automation", "event hook", "notify on", "callback URL".

No reviews yet
0 installs
9 views
0.0% view→install

Install

$ agentstack add skill-doncheli-don-cheli-sdd-doncheli-webhook

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Doncheli Webhook? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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
  1. Document the webhook in .dc/webhooks.md with: event, URL, owner, secret env var name
  2. 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=" \
  -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

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.