TUI Commander Plugins
July 10, 2026 ยท View on GitHub
Community plugin registry and distributable plugins for TUICommander.
Plugins
| Plugin | Description | Capabilities |
|---|---|---|
| cache-keepalive | Prevents Claude API prompt cache expiry during idle periods | pty:write, ui:ticker |
| docx-preview | Preview Word .docx/.dotx files as clean HTML with Mammoth.js | ui:file-preview, ui:panel, fs:read |
| mdkb-dashboard | mdkb knowledge base status, memories, config | exec:cli, fs:read, ui:panel, ui:ticker |
| tuic-vscode-icons | 1500+ file and folder icons from vscode-icons | ui:file-icons |
| wiz-kanban | Wiz framework workflow kanban for plans, stories, and reviews | fs: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:
- Plugin has a public repo with
manifest.json - A downloadable
.ziprelease exists at thedownloadUrl idinregistry.jsonmatchesidinmanifest.json- Tested against the declared
minAppVersion
Plugin development
See the plugin docs for the full API reference and examples.