Help us improve
Share bugs, ideas, or general feedback.
From golang-boost
Constructs CloudEvents HTTP receivers/senders using the boost factory SDK. Activates on imports of factory/contrib/cloudevents/sdk-go/ or questions about HTTP transport or NewHTTP.
npx claudepluginhub xgodev/boost --plugin golang-boostHow 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`.
Writes and reviews event-driven Go services using github.com/xgodev/boost/bootstrap/function, covering function.New constructor, fn.Run wiring, and the strict function.Handler[T] generic typing rule.
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.
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Share bugs, ideas, or general feedback.
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 |