From golang-boost
Constructs CloudEvents HTTP receivers/senders using the boost factory's NewHTTP for HTTP CloudEvents reception. For handler/server-style invocations instead of broker-pull.
How this skill is triggered — by the user, by Claude, or both
Slash command
/golang-boost:boost-factory-cloudeventsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
**REQUIRED BACKGROUND:** `boost-start`, `boost-bootstrap-function` (handler typing). For pub/sub-based CloudEvents flows → `boost-bootstrap-adapter-pubsub` / `-nats` / `-kafka`.
REQUIRED BACKGROUND: boost-start, boost-bootstrap-function (handler typing). For pub/sub-based CloudEvents flows → boost-bootstrap-adapter-pubsub / -nats / -kafka.
import cefact "github.com/xgodev/boost/factory/contrib/cloudevents/sdk-go/v2"
c := cefact.NewHTTP(ctx, handler)
// c is a cloudevents.Client wired with HTTP transport
Use this when your function is invoked via HTTP CloudEvents (Knative push, Cloud Run Eventarc HTTP trigger, GitHub webhook bridge) instead of broker-pull. The handler signature follows boost-bootstrap-function's Handler[T] rule (input value, output pointer).
| Red flag | Fix |
|---|---|
cloudevents.NewClientHTTP(...) from upstream SDK directly | cefact.NewHTTP(ctx, handler) |
| Bypassing the function middleware chain when running over HTTP | Wire function.Wrapper[*cloudevents.Event] over the handler before passing to NewHTTP |
npx claudepluginhub xgodev/boost --plugin golang-boostWrites and reviews event-driven Go services using the boost/bootstrap/function framework. Enforces the strict function.Handler[T] generic signature and shows correct wiring for function.New, fn.Run, and adapter integration.
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.