multi-cli-studio

Multi CLI Studio is a Tauri desktop workspace for people who do not want to be locked into a single AI coding CLI or a single model vendor.

131
Stars
13
Forks
TypeScript
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/Austin-Patrician/multi-cli-studio

Getting Started

Guides for using skills like multi-cli-studio.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

Multi CLI Studio

简体中文

Multi CLI Studio is a Tauri desktop workspace for people who do not want to be locked into a single AI coding CLI or a single model vendor.

Instead of forcing one tool to do everything, it gives you one local desktop surface for:

  • Codex, Claude, and Gemini CLI workflows
  • provider-based model chat for OpenAI-compatible, Claude, and Gemini
  • local automation jobs and workflows
  • shared local state across terminal, chat, and automation

Why This Exists

Most AI coding tools assume one model, one CLI, one workflow.

That is not how real work behaves:

  • one CLI may be better at edits, another at planning, another at UI or long-context work
  • comparing outputs across agents is often safer than trusting a single tool path
  • context gets fragmented when terminal, chat, and automation live in different apps
  • local project state matters, but most tools do not coordinate around it

Multi CLI Studio is built around a different assumption:

cross-CLI orchestration is the product, not an add-on

Core Value

  • Keep project context in one place while switching between different AI execution styles
  • Use CLI-native agent workflows and provider-based chat side by side
  • Turn repeated tasks into local automation instead of re-prompting from scratch
  • Keep runtime state local with desktop-native storage and tooling

Platform Support

  • Windows desktop: primary packaged target with release workflow for installer output
  • macOS desktop: supported through the Tauri desktop stack and local build flow

Screenshots

Dashboard

Dashboard

Terminal Workspace

Terminal Workspace

Model Chat

Model Chat

Automation Jobs

Automation Jobs

Automation Workflows

Automation Workflows

Settings

Settings

ModelProvider

Model Providers

Agent

Model Providers

Prompt

Model Providers

Vendors

Model Providers

Project

Model Providers

Remote

Model Providers

Mcp

Model Providers

Hooks

Model Providers

Skill

Model Providers

Using

Model Providers

Current Capabilities

Terminal and CLI Workspace

  • unified desktop surface for Codex, Claude, and Gemini
  • persistent sessions and chat-like execution history
  • streaming output rendered directly into the UI
  • slash commands for model, permissions, effort, plan mode, memory files, and session controls
  • integrated git side panel to keep working-tree changes visible during execution

Model Chat and Provider Layer

  • provider-backed chat for OpenAI-compatible, Claude, and Gemini
  • per-turn model switching inside the same conversation thread
  • local provider management with editable API key, base URL, enable state, and model catalog
  • useful for side-by-side comparison, quick iteration, and non-CLI model usage

Automation and Workflow Layer

  • automation jobs with execution summaries, state, and logs
  • workflow editor and workflow run canvas for multi-step flows
  • repeatable local orchestration for AI-assisted tasks

Local Runtime and Persistence

  • local-first storage with SQLite and JSON
  • Tauri 2 desktop runtime with Rust backend and React frontend
  • CLI and local resource detection in Settings
  • release workflow and version sync tooling already wired into the repo

Main Pages

Dashboard

  • workspace snapshot with project root, dirty files, checks, events, and traffic

Terminal

  • primary multi-CLI execution page
  • combines conversation history, prompt bar, streaming output, slash commands, and git changes

Model Chat

  • dedicated provider-based conversation page
  • keeps one thread while letting users switch model/provider selection turn by turn

Model Providers

  • manage OpenAI-compatible, Claude, and Gemini providers
  • edit base URL, API key, enabled state, and refresh model lists

Automation

  • jobs, workflow lists, workflow editor, run details, and execution logs

Settings

  • inspect installed CLIs, local runtime resources, and environment-related state

Tech Stack

Frontend

  • React 19
  • TypeScript
  • Vite 7
  • React Router DOM 7
  • Zustand
  • Tailwind CSS 4
  • Monaco Editor
  • ECharts
  • react-markdown + remark-gfm

Backend

  • Rust 1.88
  • Tauri 2
  • rusqlite
  • serde / serde_json
  • chrono / uuid
  • reqwest
  • lettre
  • cron

Project Structure

multi-cli-studio/
├─ src/
│  ├─ components/
│  │  ├─ chat/
│  │  └─ modelProviders/
│  ├─ layouts/
│  ├─ lib/
│  └─ pages/
│     ├─ DashboardPage.tsx
│     ├─ TerminalPage.tsx
│     ├─ ModelChatPage.tsx
│     ├─ ModelProvidersPage.tsx
│     ├─ ModelProviderEditorPage.tsx
│     ├─ AutomationJobsPage.tsx
│     ├─ AutomationWorkflowsPage.tsx
│     ├─ AutomationWorkflowEditorPage.tsx
│     ├─ AutomationJobEditorPage.tsx
│     └─ SettingsPage.tsx
├─ src-tauri/
│  ├─ src/
│  │  ├─ main.rs
│  │  ├─ automation.rs
│  │  ├─ storage.rs
│  │  └─ acp.rs
│  ├─ tauri.conf.json
│  └─ Cargo.toml
├─ docs/
│  └─ screenshots/
├─ scripts/
│  ├─ run-tauri.mjs
│  └─ sync-version.mjs
├─ .github/
│  └─ workflows/
│     └─ release-desktop.yml
├─ README.md
├─ README.zh-CN.md
└─ package.json

Getting Started

Prerequisites

  • Node.js 20+
  • Rust 1.88+
  • Tauri CLI 2
  • Windows: MSVC build tools
  • macOS: Xcode Command Line Tools

Install

npm install

Run Frontend Only

npm run dev

Run Desktop App

npm run tauri:dev

Build

npm run build
npm run tauri:build

Scripts

  • npm run dev: start Vite dev server
  • npm run build: type-check and build frontend
  • npm run preview: preview the built frontend
  • npm run tauri:dev: run the Tauri desktop app in development
  • npm run tauri:build: build desktop bundles
  • npm run tauri:android: run Android flow through the wrapper script
  • npm run version:sync -- <version>: sync package.json, Cargo.toml, and tauri.conf.json
  • npm run version:check -- <version>: verify version metadata alignment

Provider Notes

Gemini Base URL

Recommended:

https://generativelanguage.googleapis.com

Also valid:

https://generativelanguage.googleapis.com/v1beta

Do not put models/...:streamGenerateContent or ?key=... into the base URL field.

Data Storage

Application data is stored in local app-data directories:

  • Windows: %LOCALAPPDATA%\multi-cli-studio
  • Linux: ~/.local/share/multi-cli-studio
  • macOS: ~/Library/Application Support/multi-cli-studio

Common files:

  • terminal-state.db
  • session.json
  • automation-jobs.json
  • automation-runs.json
  • automation-rules.json

Release

The repo already includes a desktop release workflow:

  • .github/workflows/release-desktop.yml

It synchronizes version metadata, builds the Tauri desktop bundle, and uploads the macOS DMGs, Windows installer, and latest.json update feed to GitHub Releases.

The current distribution flow is intentionally low-cost:

  • It does not rely on Apple Developer ID or notarization.
  • macOS builds use ad-hoc signing, so first launch may require manually allowing the app in Privacy & Security.
  • In-app updates still require a real Tauri updater keypair: put the public key in src-tauri/tauri.conf.json and configure the private key in GitHub Actions secrets.

Full setup and release steps:

License

MIT. See LICENSE.


Finally,Thanks to everyone on LinuxDo for their support! Welcome to join https://linux.do/ for all kinds of technical exchanges, cutting-edge AI information, and AI experience sharing, all on Linuxdo!

Frequently Asked Questions

What is multi-cli-studio?

multi-cli-studio is an open-source cli tools skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Austin-Patrician. Multi CLI Studio is a Tauri desktop workspace for people who do not want to be locked into a single AI coding CLI or a single model vendor. It has 131 GitHub stars.

Is multi-cli-studio safe to use?

multi-cli-studio returned warnings in SkillsLLM's automated security scan. It has no critical vulnerabilities, but review the flagged issues in the Security Report section before adding it to your workflow.

How do I install multi-cli-studio?

Clone the repository with "git clone https://github.com/Austin-Patrician/multi-cli-studio" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is multi-cli-studio written in?

multi-cli-studio is primarily written in TypeScript. It is open-source under Austin-Patrician on GitHub, so you can review or fork the full source.

Are there alternatives to multi-cli-studio?

Yes. SkillsLLM lists many other CLI Tools skills you can browse and compare side by side. Open the CLI Tools category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh multi-cli-studio against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ui-ux-pro-max-skill

by nextlevelbuilder

12

An AI skill that provides design intelligence for building professional UI/UX across multiple platforms.

119,92012,870Python
CLI Toolsai-skillsantigravity
View details

happy

by slopus

Mobile and Web client for Codex and Claude Code, with realtime voice, encryption and fully featured

23,4501,980TypeScript
CLI Tools
View details

claudecodeui

by siteboon

Use Claude Code, OpenCode, Cursor CLI, and Codex on mobile and web with CloudCLI (aka Claude Code UI). CloudCLI is a free open source webui/GUI that helps you manage your Claude Code session and projects remotely.

13,3941,866TypeScript
CLI Tools
View details

CRS-自建Claude Code镜像,一站式开源中转服务,让 Claude、OpenAI、Gemini、Droid 订阅统一接入,支持拼车共享,更高效分摊成本,原生工具无缝使用。

12,5471,869JavaScript
CLI Tools
View details

ccstatusline

by sirmalloc

🚀 Beautiful highly customizable statusline for Claude Code CLI with powerline support, themes, and more.

12,508545TypeScript
CLI Tools
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details
multi-cli-studio — AI Skill for Claude Code | SkillTip