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.
npx agentmods add skills/brettbuddin/claude-plugins/collector-componentnpx skills add brettbuddin/claude-plugins --skill collector-componentgit clone --depth 1 https://github.com/brettbuddin/claude-pluginsWrote 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.
[](https://agentmods.dev/skills/brettbuddin/claude-plugins/collector-component)<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>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.
| Model | Per session | Once 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 |
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.
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
- Determine component type: receiver, processor, exporter, connector, or extension
- Determine signal types (traces, metrics, logs); connectors need input+output signals
- Choose a Go module path (e.g.,
github.com/org/repo/receiver/myreceiver) - Generate the file set below
- Run
go mod tidyto 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.
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.
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.
- 3d ago First seen · 151 lines · 86 tokens per session scan A db2c95e64f05
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.
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…
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…
video-production
Produce programmable videos with Remotion using scene planning, asset orchestration, and validation gates for automated, brand-consistent video content.
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.
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"…
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.