0.0
No release in over 3 years
A terminal-safe transport for carrying opaque HTTP/2 bytes over TTY side channels.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

Protocol::HTTY

protocol-htty defines a small, terminal-safe framing layer for carrying an opaque byte stream over TTY side channels.

Development Status

Motivation

Traditional terminal user interfaces are useful, but they are also a poor fit for many modern interactions. They are constrained by character-cell rendering, limited layout semantics, awkward input models, and a presentation layer that was never designed for rich documents or structured application state.

In practice, this means TUIs often force applications into compromises: text-heavy layouts, ad-hoc protocols, and bespoke escape-sequence behavior that is hard to standardise across runtimes and terminals.

HTTY exists to keep the portability and deployment advantages of terminal workflows while avoiding the need to build an entire application model out of terminal control codes. Instead of asking the terminal stream itself to represent higher-level UI state, HTTY provides a small framing layer that can carry a normal plaintext HTTP/2 connection alongside terminal traffic, enabling applications to attach browser surfaces to a normal terminal session over HTTY.

Design

HTTY does not model application requests, regions, or resources. It transports the two directions of a single plaintext HTTP/2 (h2c) connection over terminal-safe chunks without introducing a second session protocol.

Each chunk is encoded as a DCS sequence:

ESC P HTTY;1;BASE64_CHUNK ESC \

The framing layer intentionally stays small so it can be reimplemented in other runtimes.

Usage

Please see the project documentation for more details.

  • Getting Started - This guide explains how to get started with protocol-htty for terminal-safe HTTP/2 byte stream transport.

  • HTTY Specification - This document specifies HTTY as a terminal-safe framing layer for carrying a plaintext HTTP/2 (h2c) byte stream over terminal side channels.

Releases

Please see the project releases for all releases.

v0.1.0

Contributing

We welcome contributions to this project.

  1. Fork it.
  2. Create your feature branch (git checkout -b my-new-feature).
  3. Commit your changes (git commit -am 'Add some feature').
  4. Push to the branch (git push origin my-new-feature).
  5. Create new Pull Request.

Running Tests

To run the test suite:

bundle exec sus

Making Releases

To make a new release:

bundle exec bake gem:release:patch # or minor or major

Developer Certificate of Origin

In order to protect users of this project, we require all contributors to comply with the Developer Certificate of Origin. This ensures that all contributions are properly licensed and attributed.

Community Guidelines

This project is best served by a collaborative and respectful environment. Treat each other professionally, respect differing viewpoints, and engage constructively. Harassment, discrimination, or harmful behavior is not tolerated. Communicate clearly, listen actively, and support one another. If any issues arise, please inform the project maintainers.