What problem does it solve? Developers working with the @tdsk/logger package need to understand its two logger systems, Express middleware setup, secret redaction behavior, and environment loading without reading the entire source tree. ## Core Features & Use Cases - Dual Logger Systems: Documents the CLI Logger (colored console output with headers, tables, and tags) and the API Logger (Winston structured logging via buildApiLogger). - Express Middleware: Covers setupLoggerReq and setupLoggerErr for request and error logging via express-winston. - Secret Redaction: Explains multi-layer redaction of passwords, tokens, API keys, and credit cards through safeReplacer and stderr interception. - Use Case: When integrating logging into a backend service, consult this Skill to correctly configure ApiLogger, attach Express middleware, and inject runtime secrets into the redaction list. ## Quick Start Ask how to set up structured Winston logging with secret redaction in an Express backend using the @tdsk/logger package.