TUI Commander Plugins

July 10, 2026 ยท View on GitHub

Community plugin registry and distributable plugins for TUICommander.

Plugins

PluginDescriptionCapabilities
cache-keepalivePrevents Claude API prompt cache expiry during idle periodspty:write, ui:ticker
docx-previewPreview Word .docx/.dotx files as clean HTML with Mammoth.jsui:file-preview, ui:panel, fs:read
mdkb-dashboardmdkb knowledge base status, memories, configexec:cli, fs:read, ui:panel, ui:ticker
tuic-vscode-icons1500+ file and folder icons from vscode-iconsui:file-icons
wiz-kanbanWiz framework workflow kanban for plans, stories, and reviewsfs:read, fs:write, ui:panel, pty:write

registry.json

The app fetches registry.json from this repo to populate the Browse tab in Settings > Plugins.

Entry format

{
  "id": "my-plugin",
  "name": "My Plugin",
  "description": "What it does",
  "author": "your-github-username",
  "repo": "owner/repo",
  "latestVersion": "1.0.0",
  "minAppVersion": "0.3.0",
  "capabilities": [],
  "downloadUrl": "https://github.com/owner/repo/releases/latest/download/my-plugin.zip"
}

Submitting a plugin

Open a PR adding your entry to registry.json. Requirements:

  1. Plugin has a public repo with manifest.json
  2. A downloadable .zip release exists at the downloadUrl
  3. id in registry.json matches id in manifest.json
  4. Tested against the declared minAppVersion

Plugin development

See the plugin docs for the full API reference and examples.