Generate structured logging schemas with correlation ID patterns and ELK/Splunk integration
Generates structured logging schemas with correlation IDs and ELK/Splunk integration templates.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdGenerates structured logging schema definitions including log level standards, correlation ID patterns, and ELK/Splunk integration templates.
{
"type": "object",
"required": ["services"],
"properties": {
"services": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"language": { "type": "string" },
"framework": { "type": "string" }
}
}
},
"format": {
"type": "string",
"enum": ["json", "logfmt", "ecs"],
"default": "json"
},
"integration": {
"type": "string",
"enum": ["elk", "splunk", "datadog", "cloudwatch"],
"default": "elk"
},
"options": {
"type": "object",
"properties": {
"includeCorrelationId": {
"type": "boolean",
"default": true
},
"includePiiMasking": {
"type": "boolean",
"default": true
},
"logLevels": {
"type": "array",
"default": ["debug", "info", "warn", "error", "fatal"]
},
"requiredFields": {
"type": "array",
"default": ["timestamp", "level", "message", "service"]
}
}
}
}
}
{
"type": "object",
"properties": {
"schema": {
"type": "object",
"properties": {
"fields": { "type": "array" },
"requiredFields": { "type": "array" },
"format": { "type": "string" }
}
},
"correlationIdPattern": {
"type": "object",
"properties": {
"headerName": { "type": "string" },
"format": { "type": "string" },
"propagation": { "type": "string" }
}
},
"integrationConfig": {
"type": "object",
"description": "ELK/Splunk configuration"
},
"piiMaskingRules": {
"type": "array"
},
"exampleLogs": {
"type": "array"
}
}
}
{
kind: 'skill',
skill: {
name: 'log-schema-generator',
context: {
services: [
{ name: 'api-service', language: 'typescript', framework: 'express' }
],
format: 'json',
integration: 'elk',
options: {
includeCorrelationId: true,
includePiiMasking: true
}
}
}
}
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 asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.