collector-component

collector-component is a skill for Claude Code, Codex from brettbuddin/claude-plugins. It costs 86 tokens per session (1,147 once invoked), scanned A, original, Apache-2.0.

A code scaffold for adding a custom OpenTelemetry Collector component in Go. OpenTelemetry Collector is a service that receives, processes, and sends observability data such as traces, metrics, and logs.

In plain words
What is it for?
Use it to start receivers, processors, exporters, connectors, or extensions for the OpenTelemetry Collector Builder. It helps create the component files, tests, metadata, and Go module setup.
Why use it?
It removes the need to assemble the standard files and configuration structure by hand. It also follows the conventions used by the OpenTelemetry Collector Contrib project.

Skill for Claude CodeCodex

Part of the otel plugin — 1 skill shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/brettbuddin/claude-plugins/collector-component
Any agent
npx skills add brettbuddin/claude-plugins --skill collector-component
Clone the repo
git clone --depth 1 https://github.com/brettbuddin/claude-plugins

Made for: Claude Code, Codex.

Or install otel, the plugin that ships this one along with the rest of its 1 skill.

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 collector-component

README.md
[![agentmods](https://agentmods.dev/badge/skills/brettbuddin/claude-plugins/collector-component.svg)](https://agentmods.dev/skills/brettbuddin/claude-plugins/collector-component)
Your own site
<a href="https://agentmods.dev/skills/brettbuddin/claude-plugins/collector-component"><img src="https://agentmods.dev/badge/skills/brettbuddin/claude-plugins/collector-component.svg" alt="Measured on agentmods" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,147 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00086 $0.01147
Opus 5 $0.00043 $0.00574
Sonnet 5 $0.00017 $0.00229
Haiku 4.5 $0.00009 $0.00115

Measured 3d ago against content hash db2c95e64f05, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

collector-component scanned grade A with 0 findings 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 3d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

otel/skills/collector-component/SKILL.md · 151 lines

How it starts

The opening of the file, as written. The whole thing — 151 lines — stays where its author put it; the contents beside it link to each section on GitHub.

OpenTelemetry Collector Component Scaffolding

Scaffold new OTel Collector components following the canonical patterns from the opentelemetry-collector-contrib repository.

Workflow

  1. Determine component type: receiver, processor, exporter, connector, or extension
  2. Determine signal types (traces, metrics, logs); connectors need input+output signals
  3. Choose a Go module path (e.g., github.com/org/repo/receiver/myreceiver)
  4. Generate the file set below
  5. Run go mod tidy to resolve dependencies

File Layout

Every component follows this structure:

mycomponent/
  metadata.yaml
  doc.go
  config.go
  config_test.go
  factory.go
  factory_test.go
  <component>.go
  <component>_test.go
  go.mod
  go.sum
  README.md
  internal/metadata/    # generated by mdatagen
  testdata/             # test config fixtures

metadata.yaml

Drives code generation via mdatagen. Generates internal/metadata/ with type constants and stability levels.

type: mycomponent

status:
  class: receiver  # receiver | processor | exporter | connector | extension
  stability:
    # For receiver/processor/exporter: list signal types per stability:
    beta: [metrics]
    alpha: [traces, logs]
    # For connector: use input_to_output format:
    # alpha: [traces_to_metrics]
    # For extension:
    # alpha: [extension]
  distributions: [contrib]
  codeowners:
    active: [githubuser]

tests:
  config:
    # Key-value pairs matching Config struct fields for lifecycle tests

doc.go

// Package mycomponent ...
package mycomponent

//go:generate mdatagen metadata.yaml

config.go Pattern

package mycomponent

import "go.opentelemetry.io/collector/confmap/xconfmap"

var _ xconfmap.Validator = (*Config)(nil)

type Config struct {
    Field string `mapstructure:"field"`
}

func (c *Config) Validate() error {
    // Return non-nil for invalid config
    return nil
}

Use mapstructure tags for all fields. Implement xconfmap.Validator for validation.

Read the full file on GitHub · 151 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 3d ago First seen · 151 lines · 86 tokens per session scan A db2c95e64f05

Subscribe to this mod's changes

collector-component is a skill published in the GitHub repository brettbuddin/claude-plugins (3 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 86 tokens to every session and 1,147 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

printing-press-import

Bring a published CLI from the public library into the internal library so it's identical to a freshly-generated copy — module path reverted, manuscripts placed alongside, ready for /printing-press-polish or /printing-press-emboss. Use when the public library has a CLI you don't have locally, or to recover from a…

mvanhorn/cli-printing-press · 104 tokens

gmeasure

Benchmark and measure Go code with gmeasure — an Experiment groups named Measurements, recorded via RecordValue/RecordDuration/MeasureDuration or repeated Sample/SampleValue/SampleDuration with SamplingConfig, timed inline with a Stopwatch, summarized through GetStats/Stats (StatMin/Max/Mean/Median/StdDev…

onsi/gomega · 129 tokens

video-production

Produce programmable videos with Remotion using scene planning, asset orchestration, and validation gates for automated, brand-consistent video content.

Marve10s/Better-Fullstack · 29 tokens

upgrading-golang

Upgrades Go version across the entire Chainloop codebase including source files, Docker images, CI/CD workflows, and documentation. Use when the user mentions upgrading Go, golang version, or updating Go compiler version.

chainloop-dev/chainloop · 48 tokens

modern-go

Modernize Go code by applying version-appropriate idioms and APIs (gofix-style transformations). Scans go.mod for the Go version, then transforms Go source files to use modern patterns—from Go 1.0 through 1.26+. Use when the user says "现代化","现代Go语言", "地道的", "idiomatic", "modernize", "modern-go", "update Go code"…

smallnest/pigo · 102 tokens

dep-updates

Plan and apply Go dependency updates, including advisory-driven bumps, Trivy/govulncheck validation, and supply-chain review. Use when the user asks to update dependencies, refresh modules for security alerts, or run dependency vulnerability scans.

trufflesecurity/trufflehog · 51 tokens