Terminal.Gui.Templates 2.4.10

dotnet new install Terminal.Gui.Templates@2.4.10
                    
This package contains a .NET Template Package you can call from the shell/command line.

NuGet

Terminal.Gui Templates

dotnet new templates for building Terminal.Gui v2 apps — designed so an AI coding agent can scaffold and extend a TUI app correctly. Every generated project ships an AGENTS.md with the canonical v2 patterns (Terminal.Gui v2 is a complete rewrite, so most online/training-data examples are v1 and won't compile).

Install

dotnet new install Terminal.Gui.Templates

This installs the latest templates targeting current stable Terminal.Gui (net10.0).

Create a project

Every template emits an AGENTS.md + CLAUDE.md — open MyApp/AGENTS.md first. It has the canonical minimal app, the v1→v2 corrections table, Pos/Dim layout, common gotchas, and links to Terminal.Gui's CI-validated docs.

A real app to extend: a menu bar, a status bar, and interactive content, wired up with the canonical v2 patterns.

dotnet new tui -n MyApp
cd MyApp
dotnet run            # File > Quit (or the status bar) exits

tui-simple — the minimal app

The smallest runnable v2 app: a Window with a label and a quit button, and a fully commented Program.cs.

dotnet new tui-simple -n MyApp
cd MyApp
dotnet run            # Esc or the Quit button exits

Note: the previous tui-designer template is temporarily not shipped while it's regenerated against current Terminal.Gui — see #24.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.4.10 0 6/23/2026
2.4.9 0 6/23/2026
2.0.0-alpha.4309 636 3/4/2026
2.0.0-alpha.4277 219 2/26/2026
2.0.0-alpha.4252 196 2/24/2026
2.0.0-alpha.4170 415 2/1/2026
2.0.0-alpha.4128 263 1/26/2026
2.0.0-alpha.4111 205 1/26/2026
2.0.0-alpha.4109 223 1/25/2026
2.0.0-alpha.4108 213 1/25/2026
1.0.3 13,146 10/17/2022

2.4.x
- Relaunch as the AI-agent-first on-ramp to Terminal.Gui v2.
- Re-target current stable Terminal.Gui (was frozen on 2.0.0-alpha.4309 by a broken version selector).
- tui-simple: generated projects now ship AGENTS.md + CLAUDE.md with the canonical v2 patterns,
 v1->v2 corrections, Pos/Dim layout, and common-pitfall gotchas; Program.cs is fully commented.
- tui-designer is temporarily not packaged pending regeneration against current Terminal.Gui
 (its TerminalGuiDesigner snapshot no longer compiles). Tracked separately.