What problem does it solve? Sending structured data to LLMs wastes tokens on verbose JSON syntax, and unvalidated or inconsistently serialized data causes silent runtime errors. This Skill provides TOON encoding for 40-60% token reduction, high-performance JSON/YAML processing, and schema-based data validation. ## Core Features & Use Cases - TOON Encoding: Compress structured data with type markers (#, !, @, ~) for lossless round-trip encoding that reduces LLM token usage by 40-60% versus JSON. - High-Performance Serialization: Use orjson for 2-5x faster JSON processing, ijson for streaming large files without memory exhaustion, and PyYAML C loaders for configuration management. - Data Validation & Schema Evolution: Validate data against typed schemas with custom rules, cross-field checks, and versioned migration support. - Use Case: When building an API that feeds responses to an LLM, encode payloads with TOONEncoder to fit token budgets, validate inputs with DataValidator schemas, and stream multi-hundred-megabyte JSON files with StreamProcessor. ## Quick Start Ask the AI to encode a sample user dictionary with TOONEncoder and compare the token count against standard JSON output.