|
|
aiuiClaude Desktop App can ask, confirm, and collect input — as real native macOS dialogs. |
When Claude Desktop App has a question that's really a pick between options, you have to type the answer in prose. When it wants your go-ahead before touching production, you get a blue Yes/No box — and nothing more tailored.
There's a better way.
aiui lets Claude Desktop App open real, native dialogs on your Mac:
orders table?" A red destructive
button with a clear warning. One click.The agent gets your answer as structured data and keeps going. No side conversations, no throwaway web dashboards cluttering your system — just a familiar macOS window that does what it looks like.
Running Claude Desktop App directly on your Mac? aiui plugs in.
Running it over SSH on a remote machine (dev box, project VM)? aiui automatically sets up a tunnel so the remote agent can pop dialogs right on your Mac. Register the host once in settings; from then on it just works.
No Terminal. No Homebrew. No Python. No uv.
Applications.That's it. aiui registers itself with Claude Desktop App automatically. The MCP server ships inside the app bundle as native code, so you don't need a Python toolchain on your Mac.
From now on aiui runs silently in the background — only while Claude Desktop App is open. No dock icon, no menu-bar clutter, no lingering daemons. aiui tools are available in every Claude Desktop App session immediately; no per-project config needed.
Updates install themselves in the background. If you want to force a
check, use /aiui:update in Claude Desktop App, or open aiui's settings
window.
Open any Claude Desktop App session and try one of these — just write it as a normal message:
"Ask me with aiui which of three deploy strategies we want today."
"Confirm with aiui before you delete the test files."
"Use aiui to collect a new user's name, role, and start date."
That's the whole idea. The agent picks the right kind of dialog — yes/no, pick-from-options, or a multi-field form — opens it on your Mac, you click, it carries on with your answer.
The first time you do this in a fresh project, run /aiui:teach once.
That briefs the agent on when to reach for aiui versus just typing
back in chat — without it, the agent might forget aiui exists.
| What annoys you today | With aiui |
|---|---|
| Typing answers that are really single clicks | A real macOS dialog |
| Destructive actions with a vague "please confirm" | Red-styled yes/no, unambiguous |
| Ad-hoc local web UIs for one-off tasks | No longer needed |
| Remote hosts where the agent has no way to ask you | Dialogs tunnel back to your Mac automatically |
aiui runs purely locally on your Mac. No telemetry, no usage data, no
content leaves your system. A local auth token lives in ~/.config/aiui/
(mode 0600) and is only scp'd to hosts you explicitly register in
settings.
| Command | What it does |
|---|---|
/aiui:teach |
Briefs the agent on aiui — loads the full widget catalog and design rules into the session. Run once per project. |
/aiui:update |
Agent calls the update tool; aiui checks the release feed, silently installs any available update, and reports the version delta back. Responds before the background relaunch, so the agent always gets the answer. |
/aiui:version |
Reports the currently installed aiui version in one line. |
Is it safe? aiui is open source (MIT), builds reproducibly, is Apple
Developer-ID signed and notarized. It never phones home. The auth token
stays under ~/.config/aiui/ on your machine and is only copied to
hosts you explicitly register in settings.
Do I need uv or Python? No. Since v0.3.0 the MCP server ships
inside the aiui.app bundle as native Rust code — drag-and-drop install
with no outside dependencies.
For the special case of a remote SSH host that doesn't have aiui.app
locally, the standalone Python package aiui-mcp is still on PyPI and
gets used via uvx aiui-mcp. aiui registers that automatically when you
add the remote in settings.
How much memory does it use? The companion idles around 30–50 MB. The underlying WebKit view loads only while a dialog is on screen.
Does it work on Intel Macs? Currently Apple Silicon (arm64) only. Intel support isn't on the immediate roadmap — open an issue if you need it.
Does it work on Linux or Windows? Linux: no. Windows: in progress — the Rust core and CI build already target Windows; interactive E2E testing and a first release are still outstanding. Follow #118 for status.
Can I use aiui without Claude Desktop? The companion is
auto-spawned by Claude Desktop via its MCP registration, so in the
default setup, no. You can launch aiui.app manually though — as long
as localhost:7777 is reachable, any MCP client can render dialogs.
Why not just use Claude Desktop's built-in AskUserQuestion? It's great for single yes/no or single-choice questions, but doesn't cover multi-field forms, sortable lists, colour pickers, date ranges, or hierarchical pickers. aiui complements it.
Does aiui work in other MCP-capable clients? The aiui-mcp server
is a standard MCP server, so technically yes. The companion is Claude
Desktop-specific in how it auto-installs, but the HTTP protocol on
localhost:7777 is client-agnostic.
| Symptom | What to do |
|---|---|
| No dialog appears | Open /Applications/aiui.app and check the status dot. The remote must show "connected". |
| "aiui companion not reachable" in chat | Claude Desktop isn't running, or the Mac is asleep. |
| "token rejected (401)" | An old aiui process is holding the port on the remote. pkill -f aiui on the remote, then "Remove" and "Add" that remote again in aiui settings. |
Bugs or feature requests → open an issue. The "Report issue" button in settings pre-fills version and build SHA.
aiui is MIT-licensed, hosted at byte5ai/aiui. Pull requests and issues are welcome.
A bit more depth, in roughly increasing nerd-level:
docs/skill.md — the agent-facing widget catalog.
aiui installs this as a skill on first launch so Claude knows when
to use which dialog and how to write the labels. Worth a skim if you
want to understand what aiui can render.CONTRIBUTING.md — repository layout, build flow,
release pipeline, design principles.docs/strategy.md — the product thinking behind
aiui's V1/V2 split and what we deliberately don't build.aiui-mcp on PyPI — the Python
MCP server, used automatically for remote SSH hosts that don't have
aiui.app installed locally.