U-MAKER TERMINAL · v0.2.5

The Terminal,
Redesigned for the AI Era

Claude Code, Codex, Cursor — all your AI coding agents in one place. Faster. Smarter.

Traditional terminals were built on the assumption that humans type every command. But today, AI agents write code, open PRs, generate docs and diagrams. U-MAKER Terminal is a macOS · Windows cross-platform terminal, redesigned from the ground up for this new workflow.

01.Install

Grab the latest installer from the Releases page.

PlatformAsset
macOS (Universal — Intel & Apple Silicon)u-maker_<version>_universal.dmg
Windows 10 / 11 (x64) — NSIS installeru-maker_<version>_x64-setup.exe
Windows 10 / 11 (x64) — MSI installeru-maker_<version>_x64_en-US.msi

No manual update step needed. New versions are downloaded in the background and applied on next launch (tauri-plugin-updater).

02.Built for AI-Driven Development

🪄

LLM-Powered Command Autocomplete

An LLM completes your shell command in ghost text as you type — context-aware of your current directory and recent commands. Hit Tab to accept.

  • Works with just an OpenRouter API key (default model: gpt-4o-mini, extensible via the gateway)
  • 800ms debounce + local cache to minimize cost and latency
  • Per-directory command history → suggestions adapt to the project you're in
Type just git checkout and your usual branch pops up. Per-project build and test commands learn themselves.
📊

Real-Time Claude UsagemacOS only

The StatusBar always shows this week's Claude usage (Wk %).

  • Reads your Claude Code OAuth token from macOS Keychain and queries the Anthropic Usage API — zero configuration
  • Auto-refreshes every 60 seconds
  • When you're going hard on Opus 4.x, see your remaining headroom at a glance and pace yourself
Windows builds don't show this yet — token storage path differs (planned support).
🪟

Multiple AI Sessions in Parallel

Run multiple AI CLIs side by side with tabs plus horizontal / vertical split panes.

  • Claude Code on the left, Codex on the right, log monitor below — all in one window
  • Workspace tabs — open multiple projects at once and kill context-switch overhead
  • Each session keeps its own PTY · CWD · shell environment
🌿

Git · PR Workflow Built In

What AI agents produce most is PRs. The whole UI is optimized for that.

  • Sidebar: Staged / Changes / Stashes / Worktrees in real time + drag-and-drop
  • StatusBar: branch · dirty state · open PR count at a glance
  • PrPanel: GitHub / GitLab PR lists and details, without leaving the terminal
  • Non-ASCII paths (Korean / Japanese / Chinese filenames) handled correctly
🧩

.u-maker Project Integration

Projects with a .u-maker/ directory get a dedicated icon in the sidebar.

  • Works hand in hand with u-maker's PBGD pipeline (Plan → Build → Gatekeeping → Deploy)
  • From spec drafting to code generation, QA gates, and deployment — all in one terminal, no separate IDE needed

Lightweight, Native, Fast

Built on Tauri v2 with a Rust backend — what that means for you:

  • Lightweight — significantly lower memory and disk footprint than Electron. Leave it running, you won't notice
  • Fast startup — Rust-native backend means short boot times
  • OS-integrated — native menus, notifications, clipboard, and auto-update — all OS-standard
  • Safe IPC — explicit, audited contract between frontend and backend

03.See It Live 👀

What the terminal actually looks like when you use it.

u-maker · workspaces v0.2.5
myapp-frontend
oasis-admin
u-maker-terminal
monad
design-system
notes
+
claude
Ready in u-maker-terminal · 12 files indexed

Right-click any workspace tab to label it with one of eight colors. Choice persists per workspace — visually anchor each project so you never get lost between tabs.

architecture.md Markdown · Mermaid

# U-MAKER Architecture

A cross-platform terminal redesigned for the AI era. Built on Tauri v2 with a Rust backend and React 18 frontend.

## Data flow

User input → frontend → IPC bridge → Rust backend → PTY processes.

```mermaid
flowchart LR
    User --> Frontend
    Frontend -."IPC".-> Backend
    Backend --> PTY["Pseudo Terminal"]
    Backend --> LSP["Language Server"]
```
User Frontend Backend PTY LSP IPC

Markdown renders live, with Mermaid diagrams compiled inline. The same applies to OpenAPI specs, Diff, JSON, and code — no external preview app required.

04.Integrated Viewers for AI Output 📄

AI agents don't just produce code. They generate markdown, Mermaid diagrams, OpenAPI specs, spreadsheets, images — every format imaginable. U-MAKER Terminal renders all of them inline.

FormatHow it renders
MarkdownGFM + auto-rendered Mermaid diagrams + rich code highlighting
OpenAPI / SwaggerAuto-detects YAML · JSON, visualizes per endpoint
DiffSide-by-side review of AI-generated changes
Source codeMonaco Editor (same engine as VS Code) — syntax highlight · folding · multi-cursor
JSONTree view + color highlighting
Image / VideoInline preview + trackpad pinch zoom
Word (.docx) / Excel (.xlsx)Native preview — no external converter needed
PDFInline preview with pinch zoom

No need to context-switch to an external IDE or viewer. The AI ↔ review ↔ next command cycle stays in one window.

05.And More