graft-webhook-bridge — for Claude Code graft-webhook-bridge, community, for Claude Code, ide skills, self-hosted, webhook, go fmt, go vet, go test, CGO_ENABLED=0

v1.0.0

Acerca de este Skill

Escenario recomendado: Ideal for AI agents that need graft — agent skill. Resumen localizado: Graft: Self-Hosted Webhook Bridge # Graft — Agent Skill Purpose Graft receives signed (optional) webhooks on /hook/…, transforms JSON with Go text/template, and forwards to destination URLs. It covers go, self-hosted, webhook workflows. This AI agent skill supports Claude Code

Características

Graft — Agent Skill
When this skill applies
Use for any task in this repository: new features, bug fixes, refactors, dependency bumps, or
Efficiency (how to work this codebase)
Dependencies — Add third-party modules only when necessary; prefer the standard library.

# Core Topics

DongDuong2001 DongDuong2001
[0]
[0]
Updated: 3/26/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/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
Review Score
8/11
Quality Score
35
Canonical Locale
en
Detected Body Locale
en

Escenario recomendado: Ideal for AI agents that need graft — agent skill. Resumen localizado: Graft: Self-Hosted Webhook Bridge # Graft — Agent Skill Purpose Graft receives signed (optional) webhooks on /hook/…, transforms JSON with Go text/template, and forwards to destination URLs. It covers go, self-hosted, webhook workflows. This AI agent skill supports Claude Code

¿Por qué usar esta habilidad?

Recomendacion: graft-webhook-bridge helps agents graft — agent skill. Graft: Self-Hosted Webhook Bridge # Graft — Agent Skill Purpose Graft receives signed (optional) webhooks on /hook/…, transforms JSON with Go

Mejor para

Escenario recomendado: Ideal for AI agents that need graft — agent skill.

Casos de uso accionables for graft-webhook-bridge

Caso de uso: Applying Graft — Agent Skill
Caso de uso: Applying When this skill applies
Caso de uso: Applying Use for any task in this repository: new features, bug fixes, refactors, dependency bumps, or

! Seguridad y limitaciones

  • Limitacion: Dependencies — Add third-party modules only when necessary; prefer the standard library.
  • Limitacion: Errors — Check err != nil; wrap with %w where useful. Do not return stack traces or internal details in HTTP responses.
  • Limitacion: Logging — Do not log raw webhook bodies or decrypted secrets.

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

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 graft-webhook-bridge?

Escenario recomendado: Ideal for AI agents that need graft — agent skill. Resumen localizado: Graft: Self-Hosted Webhook Bridge # Graft — Agent Skill Purpose Graft receives signed (optional) webhooks on /hook/…, transforms JSON with Go text/template, and forwards to destination URLs. It covers go, self-hosted, webhook workflows. This AI agent skill supports Claude Code

How do I install graft-webhook-bridge?

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

What are the use cases for graft-webhook-bridge?

Key use cases include: Caso de uso: Applying Graft — Agent Skill, Caso de uso: Applying When this skill applies, Caso de uso: Applying Use for any task in this repository: new features, bug fixes, refactors, dependency bumps, or.

Which IDEs are compatible with graft-webhook-bridge?

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 graft-webhook-bridge?

Limitacion: Dependencies — Add third-party modules only when necessary; prefer the standard library.. Limitacion: Errors — Check err != nil; wrap with %w where useful. Do not return stack traces or internal details in HTTP responses.. Limitacion: Logging — Do not log raw webhook bodies or decrypted secrets..

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 DongDuong2001/graft. 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 graft-webhook-bridge 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

graft-webhook-bridge

Install graft-webhook-bridge, 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

Graft — Agent Skill

Purpose

Graft receives signed (optional) webhooks on /hook/…, transforms JSON with Go text/template, and forwards to destination URLs. Admin APIs live under /api/v1/ with API key auth. Agents must keep the codebase safe for small teams running on the public internet and must not merge behavior without tests for the touched surface.

When this skill applies

Use for any task in this repository: new features, bug fixes, refactors, dependency bumps, or release prep.

Efficiency (how to work this codebase)

  1. Scope — Change only packages that the task requires (internal/httpapi, internal/connectors, internal/storage, internal/router, etc.). Avoid drive-by refactors.
  2. Discover first — Read the handler and storage path for the feature before editing; mirror existing patterns (constructors, error messages, JSON field names).
  3. Single verification pass — After edits, run go fmt ./..., go vet ./..., and go test ./... once at the end of the task batch (not after every micro-edit).
  4. CGOgithub.com/mattn/go-sqlite3 needs CGO for real DB tests. Local runs with CGO_ENABLED=0 will skip SQLite-backed tests; CI / pre-release must use CGO=1 (see workflow doc).
  5. Dependencies — Add third-party modules only when necessary; prefer the standard library.

Quality bar (non-negotiable)

  1. Errors — Check err != nil; wrap with %w where useful. Do not return stack traces or internal details in HTTP responses.
  2. Security — Follow .agents/security-guidelines.md (admin auth, signature verification, encryption at rest, rate limits, body limits, timeouts).
  3. Handlers — Keep HTTP thin: validate input, call storage, connectors, transformer, etc., then write status and JSON. Prefer small helpers over duplicating security checks.
  4. Logging — Do not log raw webhook bodies or decrypted secrets.

Testing contract (before public / every feature)

See .agents/docs/FEATURE-TEST-MATRIX.md for the canonical map of feature → package → test file.

Rules:

  • Every new feature or behavior change must include or update unit tests in the listed package (table-driven where there are multiple cases).
  • Integration: internal/integration covers admin + webhook + forward end-to-end; run with CGO when validating releases.
  • If SQLite is unavailable in an environment, skipped tests are acceptable only for developer machines; release pipelines must run with CGO so storage, admin, and webhook tests execute.

Mandatory completion checklist

  1. go fmt ./...
  2. go vet ./...
  3. go test ./... (local; CGO optional)
  4. Before public release or CI merge: go test -race ./... with CGO_ENABLED=1 and a C toolchain (see .agents/workflows/test-and-lint.md).

Cross-references

DocumentRole
.agents/docs/coding-standards.mdArchitecture, DI, concurrency
.agents/docs/security-guidelines.mdSecurity requirements
.agents/workflows/test-and-lint.mdExact commands and CI notes
.agents/docs/FEATURE-TEST-MATRIX.mdRequired tests per area

Habilidades relacionadas

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

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

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

333.8k
0
Inteligencia Artificial

widget-generator

Logo of f
f

Generar complementos de widgets personalizables para el sistema de feeds de prompts.chat

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

El Marco de React

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Tensores y redes neuronales dinámicas en Python con fuerte aceleración de GPU

98.6k
0
Desarrollador