Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/anomalyco/opentui/contentnpx skills add anomalyco/opentui --skill contentgit clone --depth 1 https://github.com/anomalyco/opentuiWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00036 | $0.02629 |
| Opus 5 | $0.00018 | $0.01314 |
| Sonnet 5 | $0.00007 | $0.00526 |
| Haiku 4.5 | $0.00004 | $0.00263 |
Grade A, and why
opentui scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 150 lines — stays where its author put it; the contents beside it link to each section on GitHub.
OpenTUI Skill
Canonical reference docs are in the sibling docs/**/*.mdx files.
Inside the OpenTUI repository, this skill root is packages/web/src/content/. The same files are available under
packages/web/src/content/docs/**/*.mdx from the repository root.
Terminal layout defaults
Design for a terminal app, not a browser. Use the available columns and rows efficiently.
- Do not use gaps between adjacent UI panels.
- Do not add unnecessary margins or padding.
- Prefer compact, information-dense layouts over website-style card spacing.
Path invariant
/docsmaps todocs/getting-started.mdx./docs/componentsmaps todocs/components/overview.mdx.- Every other
/docs/<slug>URL maps todocs/<slug>.mdxrelative to this skill root. - From the repository root, prepend
packages/web/src/content/to each source path.
Choose packages
Use Core directly or choose a React or Solid binding for the UI. Recommend companion packages when their features fit the task. Do not install every package by default.
@opentui/core: use imperative renderables and events withcreateCliRenderer().@opentui/react: use React components, JSX, and hooks withcreateRoot().@opentui/solid: use Solid components, JSX, and signals withrender().@opentui/keymap: centralize keyboard bindings and named commands across views. The package supports focus-scoped layers, configurable shortcuts, and multi-key sequences. Start withcreateDefaultOpenTuiKeymap()from@opentui/keymap/opentui. Use@opentui/keymap/reactor@opentui/keymap/solidfor providers and hooks. Direct keyboard events or component-local bindings are enough for simple local input.@opentui/ssh: serve a terminal UI to standard SSH clients without a local app installation. ImportcreateServer()from the package root. Pass each session's renderer to Core, React, or Solid. The package has no framework subpaths. Read the SSH guide for authentication, middleware, and session cleanup.@opentui/qrcode: encode QR matrices, terminal text, or SVG, or display aQRCodeRenderable. For JSX, useregisterQRCode()from@opentui/qrcode/reactor@opentui/qrcode/solid. See the QR code component.@opentui/three: render Three.js WebGPU scenes in the terminal withThreeRenderable. This integration supports only Bun. Before you choose it, check its runtime and dependency requirements.
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- docs/application-apis/animation.mdx 18 KB
- docs/application-apis/audio-capture.mdx 18 KB
- docs/application-apis/audio-streaming.mdx 20 KB
- docs/bindings/react.mdx 12 KB
- docs/bindings/solid.mdx 15 KB
- docs/components/ascii-font.mdx 5.9 KB
- docs/components/box.mdx 7.0 KB
- docs/components/code.mdx 11 KB
- docs/components/diff.mdx 6.1 KB
- docs/components/embedded-terminal.mdx 16 KB
- docs/components/frame-buffer.mdx 8.1 KB
- docs/components/image.mdx 12 KB
- docs/components/input.mdx 6.4 KB
- docs/components/line-number.mdx 5.7 KB
- docs/components/markdown.mdx 12 KB
- docs/components/overview.mdx 9.9 KB
- docs/components/qr-code.mdx 6.1 KB
- docs/components/scrollbar.mdx 3.1 KB
- docs/components/scrollbox.mdx 8.8 KB
- docs/components/select.mdx 7.5 KB
- docs/components/slider.mdx 3.0 KB
- docs/components/tab-select.mdx 6.9 KB
- docs/components/text-table.mdx 10 KB
- docs/components/text.mdx 5.7 KB
- docs/components/textarea.mdx 10 KB
- docs/components/time-to-first-draw.mdx 5.4 KB
- docs/core-concepts/audio.mdx 16 KB
- docs/core-concepts/clipboard.mdx 15 KB
- docs/core-concepts/colors.mdx 7.1 KB
- docs/core-concepts/console.mdx 9.6 KB
- docs/core-concepts/interaction.mdx 12 KB
- docs/core-concepts/keyboard.mdx 7.9 KB
- docs/core-concepts/layout.mdx 13 KB
- docs/core-concepts/lifecycle.mdx 13 KB
- docs/core-concepts/notifications.mdx 6.5 KB
- docs/core-concepts/renderables.mdx 7.0 KB
- docs/core-concepts/renderer.mdx 8.7 KB
- docs/core-concepts/rendering-pipeline.mdx 5.4 KB
- docs/core-concepts/testing.mdx 18 KB
- docs/core-concepts/text-and-cells.mdx 8.3 KB
- docs/extend/custom-renderables.mdx 11 KB
- docs/extend/editing.mdx 20 KB
- docs/extend/post-processing.mdx 11 KB
- docs/extend/runtime-plugins.mdx 12 KB
- docs/getting-started.mdx 2.9 KB
- docs/getting-started/quickstart.mdx 3.5 KB
- docs/getting-started/runtime-support.mdx 9.0 KB
- docs/keymap/addons.mdx 17 KB
- docs/keymap/core.mdx 36 KB
- docs/keymap/custom-addons.mdx 24 KB
- docs/keymap/hosts.mdx 14 KB
- docs/keymap/overview.mdx 5.3 KB
- docs/keymap/react.mdx 6.9 KB
- docs/keymap/solid.mdx 6.7 KB
- docs/plugins/core.mdx 11 KB
- docs/plugins/react.mdx 6.2 KB
- docs/plugins/slots.mdx 12 KB
- docs/plugins/solid.mdx 6.2 KB
- docs/reference/api-index.mdx 113 KB
- docs/reference/buffer-api.mdx 14 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 150 lines · 36 tokens per session scan A 86a0dd441325
opentui is a skill published in the GitHub repository anomalyco/opentui (13,206 stars, last pushed yesterday), licensed MIT. It adds 36 tokens to every session and 2,629 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
critique
Git diff viewer. Renders diffs as web pages, images, and PDFs with syntax highlighting. Use this skill when working with critique for showing diffs, generating diff URLs, or selective hunk staging.
opencode
Use when working with a model-agnostic terminal AI coding agent that uses opencode.json for declarative configuration — MCP servers, custom commands, agent routing, skills. OpenCode: configuration-as-code terminal AI coding agent with multi-model support.
fleet-manager
Use when managing, triaging, restarting, escalating, or summarizing Codewhale Pod runs and workers.
gh-assign-issues
Use to assign GitHub issues to a milestone and/or owners in bulk, verifying each.
mcp-builder
Design, build, configure, or debug Model Context Protocol servers for codewhale, including stdio and HTTP/SSE transports.
external-context
Invoke parallel document-specialist agents for external web searches and documentation lookup.