Icod.Terminal 0.5.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Icod.Terminal --version 0.5.0
                    
NuGet\Install-Package Icod.Terminal -Version 0.5.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Icod.Terminal" Version="0.5.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Icod.Terminal" Version="0.5.0" />
                    
Directory.Packages.props
<PackageReference Include="Icod.Terminal" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Icod.Terminal --version 0.5.0
                    
#r "nuget: Icod.Terminal, 0.5.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Icod.Terminal@0.5.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Icod.Terminal&version=0.5.0
                    
Install as a Cake Addin
#tool nuget:?package=Icod.Terminal&version=0.5.0
                    
Install as a Cake Tool

Icod.Terminal

Icod TUI Toolchain

Icod.Terminal is the managed, cross-platform live-terminal layer for the Icod library family. It is intended to sit between Icod.TermInfo and higher-level consumers such as Icod.DCurses, terminal-aware command-line tools, monitors, editors, pagers, and REPLs.

Status

0.5.0 is the current stable release line. It retains the 0.1 live-session foundation, 0.2 rich-input contract, 0.3 active-query foundation, and 0.4 semantic OSC title operations while adding a deliberately narrow OSC 7 current-location publication surface and deterministic file: URI policy.

The stable 0.5 API adds:

await session.PublishCurrentLocationAsync(
	"/usr/local/src",
	TerminalLocationPathStyle.Posix
);

Callers explicitly choose POSIX, Windows-drive, or Windows-UNC path grammar. The library converts the supplied native path into a deterministic RFC 8089-style file: URI, percent-encodes path data from strict UTF-8, and emits one canonical OSC 7 frame. No location is published automatically when a session opens, when process current directory changes, or when the session is disposed.

Native paths containing C0, DEL, or C1 control characters are rejected before URI construction. Explicit host authorities are intentionally narrow in 0.5: ASCII DNS names, IPv4 literals, and bracketed unscoped IPv6 literals are supported, while literal % authority text and IPv6 zone identifiers are rejected.

The 0.4 semantic title API remains:

await session.SetTitleAsync( "both" );
await session.SetIconNameAsync( "icon" );
await session.SetWindowTitleAsync( "window" );

These map respectively to OSC 0, OSC 1, and OSC 2. The public API does not expose raw OSC selector numbers or a generic escape-sequence writer.

The first functional milestone remains intact: watch, slabtop, and top operate through Icod.DCurses over the shared Icod.Terminal / Icod.TermInfo stack.

Architecture

Icod.TermInfo
      ^
      |
Icod.Terminal
      ^
      |
Icod.DCurses
      ^
      |
watch / slabtop / top

Icod.TermInfo remains the immutable terminal-capability authority. Icod.Terminal owns live endpoint observation, terminal modes, input, dimensions, lifecycle, terminal identity, output setup, reversible presentation-state mechanisms, active terminal-query routing, and semantic terminal-output operations. Icod.DCurses owns cells, windows, virtual-screen state, and refresh/diff policy. A future Icod.Pty package remains an adjacent concern rather than a prerequisite.

Icod.Timing supplies the monotonic elapsed-time and cancellable-delay primitives used by Terminal's relative event timeouts and Escape-sequence ambiguity windows.

Installation

The stable 0.5 release installs as:

dotnet add package Icod.Terminal --version 0.5.0

The package targets net8.0, net9.0, and net10.0 and depends on Icod.TermInfo 1.4.1 and Icod.Timing 1.0.0.

Quick start

The ordinary application entry point is TerminalSession:

using Icod.Terminal;

await using TerminalSession session = await TerminalSession.OpenAsync(
    new TerminalSessionOptions {
        InputMode = TerminalInputMode.CBreak,
        EchoInput = false
    }
);

await session.SetWindowTitleAsync( "my terminal app" );
await session.PublishCurrentLocationAsync(
	"/usr/local/src",
	TerminalLocationPathStyle.Posix
);

TerminalEvent terminalEvent = await session.ReadEventAsync(
    TimeSpan.FromSeconds( 1 )
);

The session borrows process-standard endpoints, owns only the terminal state transitions it applies, and restores its captured baseline during DisposeAsync().

Applications which genuinely need complete native mode observation, serialization, or custom endpoint/control backends may use the lower-level public contracts; ordinary interactive applications should prefer TerminalSession.

0.5 OSC current-location publication

0.5 adds semantic OSC 7 publication through:

await session.PublishCurrentLocationAsync(
	path,
	TerminalLocationPathStyle.Posix,
	authority
);

TerminalLocationPathStyle exposes Posix, WindowsDrive, and WindowsUnc so path interpretation is explicit and deterministic rather than inferred from the machine running the application.

The library emits only file: URIs for OSC 7. Local paths use canonical forms such as file:///usr/src and file:///C:/src; UNC paths map to authority form such as file://server/share/dir. Path text is treated as native path data, not pre-escaped URI text: for example, a literal filename component %20 becomes %2520.

Only RFC 3986 unreserved ASCII bytes remain literal inside path segments; other bytes are percent-encoded from strict UTF-8 using uppercase hexadecimal. The encoded URI payload is bounded to 16384 bytes. C0, DEL, and C1 control characters in the native path are rejected before URI construction rather than percent-encoded.

Publication is explicit and privacy-sensitive. Icod.Terminal does not automatically publish Environment.CurrentDirectory, derive host names from the environment, monitor directory changes, or republish a location during disposal. An optional authority supplied by the caller is therefore an intentional disclosure choice. UNC paths derive their authority from the UNC server component.

Explicit authorities support ASCII DNS names, IPv4 literals, and bracketed unscoped IPv6 literals. Userinfo, ports, path/query/fragment data, internationalized host names, literal % authority text, and scoped IPv6 zone identifiers are rejected in 0.5.

The operation uses the same session-owned output-ordering boundary as ordinary text, title operations, active queries, presentation transitions, and rich-input protocol transitions. It does not flush implicitly. Successful completion means the complete OSC 7 frame was written; it does not prove that the terminal recognized, retained, or used the location.

The reviewed 0.5 API delta is recorded in docs/Public-API-Baseline-0.5.md.

0.4 OSC title operations

0.4 adds three semantic title methods:

await session.SetTitleAsync( "both" );       // OSC 0
await session.SetIconNameAsync( "icon" );    // OSC 1
await session.SetWindowTitleAsync( "window" ); // OSC 2

The wire contract uses the 7-bit ESC ] OSC introducer and ESC \\ String Terminator. The title text is validated before any output byte is written.

The title methods participate in the session-owned output-ordering boundary with WriteTextAsync(...), active query emission, presentation transitions, and rich-input protocol transitions. They do not flush implicitly; session disposal performs the final deterministic flush.

A session which already knows that its output endpoint is redirected rejects the semantic title operation. A terminal endpoint whose OSC support is merely unknown may still receive the request; static TERM or terminfo identity is not fabricated into a proof of support.

Direct calls to the borrowed session.Output service remain caller-synchronized. The pre-existing low-level terminal-string/capability APIs remain available for advanced terminal-protocol consumers, but applications should prefer the semantic title methods rather than synthesizing OSC title frames manually.

The reviewed 0.4 API delta is recorded in docs/Public-API-Baseline-0.4.md.

0.2 rich input

Rich input remains on the same TerminalSession.ReadEventAsync path. Reporting protocols are enabled only through reversible session-owned leases:

TerminalControlResult<TerminalInputProtocolLease> protocolResult =
    await session.AcquireInputProtocolsAsync(
        new TerminalInputProtocolOptions {
            BracketedPaste = true,
            FocusReporting = true,
            MouseTrackingMode = TerminalMouseTrackingMode.ButtonEvents
        }
    );

if ( protocolResult.IsAvailable ) {
    await using TerminalInputProtocolLease protocols =
        protocolResult.GetRequiredValue();

    TerminalEvent terminalEvent = await session.ReadEventAsync();
    TerminalInputEvent? input = terminalEvent.Input;

    if ( TerminalInputEventKind.Mouse == input?.Kind ) {
        TerminalMouseEvent mouse = input.Mouse!;
        // mouse.Column and mouse.Row are zero-based terminal-cell coordinates.
    }
}

The lease owns only the requested terminal reporting protocols. Nested leases are supported; the last relevant lease restores the prior protocol state, and session disposal remains authoritative cleanup.

Bracketed paste is framed rather than accumulated as one unbounded string: applications receive Begin, one or more bounded Data events, then End. Paste Data chunk boundaries are transport/decoder boundaries and are not semantic line boundaries.

Decoder policy is configured per session:

new TerminalSessionOptions {
    InputDecoderOptions = new TerminalInputDecoderOptions {
        EscapeSequenceTimeout = TimeSpan.FromMilliseconds( 50 ),
        MaximumBufferedBytes = TerminalSession.MaximumBufferedInputBytes,
        PasteChunkBytes = 4096
    }
};

The defaults preserve the 0.1 Escape-ambiguity and buffer policy. Modified traditional navigation/editing/function-key sequences normalize into TerminalKey plus TerminalKeyModifiers; no second keyboard protocol is required.

The reviewed 0.2 additions are recorded in docs/Public-API-Baseline-0.2.md.

0.1 consumer contract

The T12B audit found no breaking public-API correction required before 0.1.0. The reviewed behavior and API surface are recorded in:

Important 0.1.x rules include:

  • input is always an interactive terminal; output may be redirected only when explicitly permitted;
  • canonical/cbreak/raw are semantic requests mapped separately to POSIX and Windows host models;
  • unknown POSIX terminal names fall back safely rather than silently becoming xterm;
  • input decoding is incremental and the Escape-prefix ambiguity window is bounded;
  • Available, Unavailable, Unsupported, and Failed remain distinct low-level outcomes;
  • session cleanup restores captured state and does not close borrowed caller/process endpoints;
  • PTY/ConPTY creation and child-process hosting belong to a future adjacent Icod.Pty package.

The 0.1.x runtime dependencies are Icod.TermInfo 1.0.0 and Icod.Timing 1.0.0. Icod.DCurses and Icod.ProcPs are consumers, not runtime dependencies of this package.

Target frameworks

The library targets:

  • net8.0;
  • net9.0;
  • net10.0.

The codebase uses C# 13 and supports the terminal-control implementations provided for Windows, Linux, and macOS.

Active terminal queries

0.3 added explicit typed terminal interrogation to TerminalSession. Opening a session does not send DA, DSR, CPR, DECRQSS, XTGETTCAP, or any other probe.

A caller chooses which requests to issue and supplies the caller-visible timeout:

TimeSpan timeout = TimeSpan.FromMilliseconds( 750 );

TerminalPrimaryDeviceAttributes primary =
	await session.QueryPrimaryDeviceAttributesAsync( timeout );

TerminalCursorPosition cursor =
	await session.QueryCursorPositionAsync( timeout );

TerminalStatusStringResponse sgr =
	await session.QueryStatusStringAsync(
		TerminalStatusStringKind.SelectGraphicRendition,
		timeout
	);

TerminalCapabilityObservation terminalName =
	await session.QueryLiveCapabilityAsync(
		"TN",
		timeout
	);

The public query families are:

  • Primary Device Attributes;
  • Secondary Device Attributes;
  • standard ECMA-48 Device Status Report;
  • standard Cursor Position Report;
  • fixed DECRQSS status-string requests;
  • single-name XTGETTCAP live capability observations.

CPR rows and columns are one-based, matching the wire protocol. XTGETTCAP values remain exact decoded bytes because terminal capability values may contain ESC or other control bytes.

Caller cancellation uses ordinary OperationCanceledException semantics and a caller-visible deadline uses TimeoutException. Once request bytes have been emitted, the session retains bounded internal ownership long enough to consume or expire a late ambiguous response; a cancelled/timed-out query therefore cannot contaminate the next serialized query.

All responses are routed through the same session-owned input path used by ordinary text, keys, mouse, focus, paste, and lifecycle-aware event consumption. There is no public raw response reader or caller-extensible query protocol registration surface.

The reviewed 0.3 additions are recorded in docs/Public-API-Baseline-0.3.md.

Samples

The repository contains five deliberately different interactive samples:

  • Icod.Terminal.Sample is the minimal session, identity, size, output, and restoration example;
  • Icod.Terminal.RichInput.Sample is the 0.2 live event inspector for focus, bracketed paste, mouse input, modified keys, lifecycle events, and reversible input-protocol leases;
  • Icod.Terminal.Query.Sample explicitly issues the 0.3 CSI/DCS query families while reversible presentation and rich-input leases are active, then returns to the unified event loop;
  • Icod.Terminal.Title.Sample demonstrates the 0.4 semantic OSC 0/1/2 title operations;
  • Icod.Terminal.Location.Sample demonstrates explicit 0.5 OSC 7 current-location publication from a caller-supplied path.

See samples/README.md for run instructions and expected behavior.

Build

On Windows:

build.cmd

On POSIX hosts:

sh build.sh

Both scripts support clean, restore, build, test, pack, and validate. Running either script without an argument performs the complete sequence, including Debug package validation.

Development roadmap

The 0.5.0 milestone is documented in Icod.Terminal-0.5.0-Development-Roadmap.md, with completed development records in T37–T43 and final release closure in docs/T43-0.5.0-Package-Consumer-and-Release-Closure.md.

The protocol-closure sequence is recorded in Icod.Terminal-0.4.0-to-0.9.0-Protocol-Closure-Roadmap.md.

The 0.4.0 milestone is documented in Icod.Terminal-0.4.0-Development-Roadmap.md, with final package/release closure in docs/T36-0.4.0-Package-Consumer-and-Release-Closure.md.

The completed 0.3.0 milestone is documented in Icod.Terminal-0.3.0-Development-Roadmap.md. The completed T21 foundation contract is recorded in docs/T21-0.3-Foundation-and-Contract-Reset.md. The completed T22 framing/demultiplexing tranche is recorded in docs/T22-Response-Framing-and-Single-Reader-Demultiplexing.md. The completed T23 transaction/lifetime tranche is recorded in docs/T23-Query-Transactions-Deadlines-and-Late-Response-Ownership.md. The completed T24 CSI query family is recorded in docs/T24-CSI-Query-Family.md. The completed T25 DECRQSS/DCS query tranche is recorded in docs/T25-DECRQSS.md. The completed T26 XTGETTCAP live-capability tranche is recorded in docs/T26-XTGETTCAP.md. The T27 integration and acceptance record is maintained in docs/T27-Query-Integration-and-Probe-Acceptance.md. The completed T28A release-candidate gate is recorded in docs/T28A-0.3-Release-Candidate-Gate.md, the stable T28B closure is recorded in docs/T28B-0.3.0-Release-Closure.md, and the reviewed 0.3 public API delta is published in docs/Public-API-Baseline-0.3.md. The completed 0.2.0 milestone remains in Icod.Terminal-0.2.0-Development-Roadmap.md.

See Icod.Terminal-Development-Roadmap.md for the architectural boundaries, 0.1.0 acceptance gates, and the path toward the stable 1.0.0 contract. The completed T02 extraction matrix is recorded in docs/T02-Extraction-Inventory-and-Contract-Classification.md, the T03 low-level contract is documented in docs/T03-Endpoint-Observation-and-Native-Mode-Parity.md, the T04 semantic mode contract is documented in docs/T04-Semantic-Input-Mode-Policy.md, the T05 session ownership contract is documented in docs/T05-TerminalSession-Lifecycle-and-Ownership.md, the T06 identity/output contract is documented in docs/T06-Terminal-Identity-TermInfo-and-Output-Setup.md, the T07 lifecycle contract is documented in docs/T07-Live-Dimensions-and-Lifecycle-Events.md, and the T08 input contract is documented in docs/T08-Input-Byte-Stream-and-Key-Event-Decoder.md.

The T09 presentation-lease contract is documented in docs/T09-Reversible-Terminal-Presentation-Leases.md. The T10 lifecycle-participant integration is recorded in docs/T10-DCurses-Lifecycle-Participant-Integration.md, the completed T11 ProcPs acceptance is recorded in docs/T11-ProcPs-Acceptance.md, the T12B public API/consumer review is recorded in docs/T12B-Public-API-and-Consumer-Contract.md, the completed T12C package gate is recorded in docs/T12C-Package-and-Fresh-Consumer-Validation.md, and final 0.1 release closure is recorded in docs/T12D-0.1.0-Release-Closure.md.

The 0.2 rich-input implementation is recorded tranche-by-tranche in T13-T19. The downstream acceptance result is in docs/T19-DCurses-Rich-Input-Acceptance.md, the reviewed 0.2 public API delta is in docs/Public-API-Baseline-0.2.md, the release-candidate gate is in docs/T20A-0.2-Release-Candidate-Gate.md, and stable release closure is recorded in docs/T20B-0.2.0-Release-Closure.md.

Authors

Inspired by original work from Bill Joy, author of the original termcap; Mary Ann (born Mark) Horton, author of terminfo; Pavel Curtis, author of pcurses; and Zeyd Ben-Halim, Eric S. Raymond, and Thomas Dickey, whose work developed and maintained libtinfo and ncurses.

Managed .NET implementation by Timothy J. Bruce uniblab@hotmail.com.

Copyright (c) 2026 Timothy J. Bruce

License

Licensed under the GNU Lesser General Public License v3.0 or later. See LICENSE.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Icod.Terminal:

Package Downloads
Icod.DCurses

Managed, cross-platform curses-like terminal UI library for .NET, built on Icod.TermInfo and Icod.Terminal.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.16.0 0 9/6/2026
0.15.0 0 9/6/2026
0.14.0 0 9/6/2026
0.13.0 36 9/6/2026
0.12.0 37 9/5/2026
0.11.0 40 9/5/2026
0.10.0 42 9/5/2026
0.9.0 39 9/5/2026
0.8.0 51 9/5/2026
0.7.0 39 9/5/2026
0.6.1 40 9/4/2026
0.6.0 34 9/4/2026
0.5.0 37 9/4/2026
0.4.0 39 9/4/2026
0.3.0 3,173 8/29/2026
0.3.0-alpha.8 69 8/28/2026
0.2.0 88 8/28/2026
0.2.0-alpha.6 87 8/27/2026
0.1.0 85 8/27/2026
0.1.0-alpha.13 56 8/27/2026
Loading failed

0.5.0 adds semantic OSC 7 current-location publication through TerminalSession.PublishCurrentLocationAsync and TerminalLocationPathStyle; deterministic RFC 8089 file-URI construction for POSIX, Windows-drive, and UNC paths; strict UTF-8 percent encoding and explicit authority/privacy rules; a 16384-byte URI bound; session-owned output ordering; focused sample/documentation coverage; and package-only multi-target OSC 7 consumer validation.