Part of the Kiwi Foundation Kiwify.Kiwi.Presentation is the terminal output infrastructure layer of the Kiwi Foundation - a trio of libraries ( Presentation , Renderer , CLI ) that together provide the core infrastructure for building professional .NET command-line and operational tooling applications: styled output, structured data display, and argument parsing. Presentation is the foundation of the stack. Renderer uses IOutputWriter and TextStyle to colour table cells and JSON tokens. CLI uses IOutput and StyledConsole to format help text and validation errors. All three libraries share a common output pipeline with no external package dependencies. Source and installation GitHub: kiwifylabs/kiwi-foundation-tooling - Kiwify.Kiwi.Presentation NuGet: Kiwify.Kiwi.Presentation dotnet add package Kiwify.Kiwi.Presentation Enter fullscreen mode Exit fullscreen mode Design philosophy Presentation is organized around two abstractions that the rest of the Kiwi Foundation builds on.…