关于
This skill implements the 'Parse, Don't Validate' architectural pattern to harden applications against malformed data. By establishing a strict validation layer at system boundaries—such as HTTP endpoints, CLI inputs, or message queues—it ensures that external data is transformed into rich, trusted types before reaching core business logic. This approach eliminates redundant checks within internal functions, prevents 'primitive obsession' through the use of branded types, and provides a standardized way to handle schema and domain-level validation errors in TypeScript environments.