structured-logging-standardizer

Installation
SKILL.md

Structured Logging Standardizer

Implement consistent, queryable, correlated logs.

Log Schema

interface LogEntry {
  timestamp: string; // ISO 8601
  level: "debug" | "info" | "warn" | "error" | "fatal";
  message: string;
  service: string;
  environment: string;

  // Request context
  requestId?: string;
  traceId?: string;
  userId?: string;
Related skills

More from patricio0312rev/skills

Installs
105
GitHub Stars
38
First Seen
Jan 24, 2026