Generate distributed tracing schemas for OpenTelemetry with Jaeger/Zipkin integration
Generates OpenTelemetry tracing schemas with span definitions and Jaeger/Zipkin integration.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdGenerates OpenTelemetry tracing schemas including span attribute definitions, trace context propagation, and Jaeger/Zipkin integration configurations.
{
"type": "object",
"required": ["services"],
"properties": {
"services": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"operations": { "type": "array" },
"dependencies": { "type": "array" }
}
}
},
"propagation": {
"type": "string",
"enum": ["w3c", "b3", "jaeger"],
"default": "w3c"
},
"backend": {
"type": "string",
"enum": ["jaeger", "zipkin", "tempo", "xray"],
"default": "jaeger"
},
"options": {
"type": "object",
"properties": {
"samplingRate": {
"type": "number",
"default": 0.1
},
"samplingStrategy": {
"type": "string",
"enum": ["always_on", "always_off", "trace_id_ratio", "parent_based"],
"default": "trace_id_ratio"
},
"includeBaggage": {
"type": "boolean",
"default": true
},
"semanticConventions": {
"type": "string",
"enum": ["http", "db", "messaging", "rpc"],
"default": "http"
}
}
}
}
}
{
"type": "object",
"properties": {
"spanDefinitions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"kind": { "type": "string" },
"attributes": { "type": "array" },
"events": { "type": "array" }
}
}
},
"propagationConfig": {
"type": "object"
},
"samplerConfig": {
"type": "object"
},
"exporterConfig": {
"type": "object",
"description": "Jaeger/Zipkin exporter configuration"
},
"instrumentation": {
"type": "object",
"description": "Auto-instrumentation configuration"
}
}
}
{
kind: 'skill',
skill: {
name: 'tracing-schema-generator',
context: {
services: [
{
name: 'order-service',
operations: ['createOrder', 'getOrder', 'updateOrder'],
dependencies: ['inventory-service', 'payment-service']
}
],
propagation: 'w3c',
backend: 'jaeger',
options: {
samplingRate: 0.1,
samplingStrategy: 'trace_id_ratio'
}
}
}
}
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.