Analysis updated 2026-05-18
Send a screenshot-like capture of a terminal UI element straight into Claude Code or Cursor.
Give an AI agent automatic access to terminal UI state through a local MCP server.
Debug or improve an OpenTUI-based terminal app by capturing what it renders.
Share terminal UI context with an AI assistant over SSH without extra tooling.
| msmps/anscribe | 0xbebis/hyperpay | alfredxw/nova | |
|---|---|---|---|
| Stars | 14 | 14 | 14 |
| Language | TypeScript | TypeScript | TypeScript |
| Setup difficulty | easy | hard | moderate |
| Complexity | 2/5 | 5/5 | 3/5 |
| Audience | developer | developer | writer |
Figures from each repo's GitHub metadata at analysis time.
Anscribe is a developer tool that connects terminal based user interfaces to AI coding assistants. It lets you press a keyboard shortcut inside a terminal app built with OpenTUI, a library for building rich terminal UIs, point at any visible element on screen, type an instruction, and immediately send that snapshot, called a Capture, to an AI agent. The Capture packages the UI element and your instruction as a formatted text payload. There are two delivery modes. The default clipboard mode copies the Capture to your system clipboard as markdown, which you can then paste into an AI assistant such as Claude Code, Cursor, or opencode. This mode works over SSH and inside dev containers with no extra setup. The optional MCP mode goes further: it stores Captures in a local SQLite database and runs a small local server that AI agents can connect to and pull from automatically, without manual pasting. Setup is minimal. A short code example in the README shows importing and calling a single function, passing a keybinding, and that is the entire integration. Press the shortcut, select a rendered element, add an instruction, press enter, and the Capture lands on the clipboard. The project is split across several packages: one for OpenTUI integration, one for MCP server functionality, one for React component enrichment, and a shared core package that all the others depend on. It is written in TypeScript, installed using the Bun package manager, and released under the MIT license.
A tool that captures live terminal UI elements and sends them, with your instructions, to an AI coding assistant.
Mainly TypeScript. The stack also includes TypeScript, Bun, OpenTUI.
MIT license: free to use, modify, and distribute, including commercially, as long as the original copyright notice is kept.
Setup difficulty is rated easy, with roughly 5min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.