library/specializations/software-architecture/skills/log-schema-generator/SKILL.md
Generate structured logging schemas with correlation ID patterns and ELK/Splunk integration
npx skillsauth add a5c-ai/babysitter log-schema-generatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generates 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
}
}
}
}
development
Model documentation skill for generating model cards following Google's model card framework.
development
MLflow integration skill for experiment tracking, model registry, and artifact management. Enables LLMs to log experiments, compare runs, manage model lifecycle, and retrieve artifacts through the MLflow API.
data-ai
LIME-based local explanation skill for individual predictions across tabular, text, and image data.
devops
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.