What problem does it solve? WinForms developers often need an in-process console pane for diagnostics, a way to inspect raw bytes as hex/ASCII, and collision-free filenames for exports. This Skill documents the WarpToolkit.WinForms.Specialized APIs that cover all three tasks with verified signatures. ## Core Features & Use Cases - ConsoleControl: A RichTextBox-derived interactive console with async styled writes, channel-colored output (Trace, Debug, Error, Git, Sql), and command execution via RunCommandAsync. - HexAsciiDumper: Incrementally formats byte or string data as hex, octal, or decimal rows with optional ASCII/Unicode text columns. - FilenameDisambiguator: Generates unique, non-colliding filenames using DateBased, GuidBase, or DateAmended generation strategies. - Use Case: While building a Git scanner tool, embed a ConsoleControl tab to stream colored build output, dump binary payloads with HexAsciiDumper for inspection, and export chat logs using FilenameDisambiguator so no export ever overwrites another. ## Quick Start Add the WarpToolkit.WinForms.Specialized NuGet package (minimum version 0.9.324-preview.ge962db2903) and ask the AI to create a ConsoleControl that writes channel-colored log lines from async code.