gui

(★ 67)

Plue - Swift and Zig multi-agent coding assistant built on ghostty

File Explorer

  • .gitignore
  • .gitmodules
  • .zigversion
  • AGENTS.md
  • AgentsView.swift
  • alchemy.run.ts
  • AncestorErrorIndex.swift
  • AppLogger.swift
  • ApprovalsView.swift
  • BootstrapStage.swift
  • BrowserSurfaceView.swift
  • build.zig
  • bun.lock
  • ChangesView.swift
  • ChatBlockFilter.swift
  • ChatBlockMerger.swift
  • ChatBlockRenderer.swift
  • CommandPaletteView.swift
  • ContentView.swift
  • CONTRIBUTING.md
  • DashboardView.swift
  • DateFormatters.swift
  • DefaultTabPicker.swift
  • DetailRouter.swift
  • DeveloperDebugView.swift
  • DevTelemetryRecorder.swift
  • DevTelemetryStore.swift
  • DevToolsClientError.swift
  • DevToolsCLITransport.swift
  • DevToolsModels.swift
  • DiffFileView.swift
  • DiffHunkView.swift
  • DiffTab.swift
  • ElapsedTimeView.swift
  • FrameScrubberView.swift
  • GhostBanner.swift
  • ghostty
  • GUIControlSidebar.swift
  • GUINotifications.swift
  • HandleResolver.swift
  • HeartbeatIndicator.swift
  • HeartbeatState.swift
  • HistoricalOverlay.swift
  • InspectorTabSwitcher.swift
  • IssuesView.swift
  • JJHubWorkflowsView.swift
  • KeyboardShortcutController.swift
  • KeyboardShortcutRecorder.swift
  • KeyboardShortcutSettings.swift
  • KeyboardShortcutSettingsFileStore.swift
  • LandingsView.swift
  • LastLogPerNodeStore.swift
  • LICENSE
  • LiveRunDevToolsStore.swift
  • LiveRunHeaderView.swift
  • LiveRunLayout.swift
  • LiveRunSessionRegistry.swift
  • LiveRunTreeExpansionStore.swift
  • LiveRunTreeView.swift
  • LiveRunView.swift
  • LogsTab.swift
  • LogViewerView.swift
  • MarkdownEditorView.swift
  • MarkdownSurface.swift
  • MarkdownSurfaceView.swift
  • MemoryView.swift
  • Models.swift
  • NewTabPicker.swift
  • NodeErrorBanner.swift
  • NodeInspectorHeader.swift
  • NodeInspectorView.swift
  • NodeInspectView.swift
  • NOTICE
  • OutputFailedView.swift
  • OutputPendingView.swift
  • OutputRenderer.swift
  • OutputTab.swift
  • package.json
  • Package.resolved
  • Package.swift
  • project.yml
  • PromptsView.swift
  • PropsTableView.swift
  • PropValueView.swift
  • QuickLaunchConfirmSheet.swift
  • README.md
  • RewindConfirmationDialog.swift
  • RunInspectView.swift
  • RunStatusPill.swift
  • RunsView.swift
  • ScoresView.swift
  • SearchView.swift
  • SharedNavigation.swift
  • ShortcutAction.swift
  • SidebarView.swift
  • SmithersModels.swift
  • SQLBrowserView.swift
  • StoredShortcut.swift
  • SurfaceNotificationStore.swift
  • TerminalProcessTracker.swift
  • TerminalSurface.swift
  • TerminalView+macOS.swift
  • TerminalView.swift
  • Theme.swift
  • TicketsView.swift
  • TreeKeyboardHandler.swift
  • TreeRowState.swift
  • TreeRowView.swift
  • TreeSearchIndex.swift
  • TriggersView.swift
  • UITestSupport.swift
  • UnifiedDiffParser.swift
  • UnifiedDiffView.swift
  • VCSDashboardView.swift
  • ViewLifecycleLogger.swift
  • WelcomeView.swift
  • WorkflowFrontendView.swift
  • WorkflowsView.swift
  • WorkspaceContentView.swift
  • WorkspaceSurfaceModels.swift
  • WorkspacesView.swift
  • WorkspaceSwitcherView.swift

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

brew install

View Details ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

cargo clean

View Details ▼

Remove generated artifacts in the `target` directory.

cargo clean

Remove the entire `target` directory:

cargo clean --doc

Remove documentation artifacts (the `target/doc` directory):

cargo clean {{[-r|--release]}}

Remove release artifacts (the `target/release` directory):

🔍

cargo test

View Details ▼

Execute the unit and integration tests of a Rust package.

cargo {{[t|test]}} {{test_name}}

Only run tests containing a specific string in their names:

cargo {{[t|test]}} -- --test-threads {{count}}

Set the number of simultaneous running test cases:

cargo {{[t|test]}} {{[-r|--release]}}

Test artifacts in release mode, with optimizations:

🔍

claude

View Details ▼

An agent-based coding tool that understands your code base and helps you code faster through natural language commands.

claude prompt

Execute with prompt:

claude update

Update `claude`:

claude mcp list

Get the list of specified MCP servers:

🔍

codex

View Details ▼

Natural language code assistant for the terminal, powered by OpenAI.
Reads and edits files in your current directory to fulfill requests.

codex

Start an interactive Codex session in the current directory:

codex "{{prompt}}"

Run a single Codex command using a prompt:

codex --sandbox workspace-write "{{prompt}}"

Run a prompt allowing Codex to edit files in the workspace:

🔍

gemini

View Details ▼

Launch an interactive prompt with Gemini AI.

gemini

Start a REPL session to chat interactively:

{{echo "Summarize the history of Rome"}} | gemini {{[-p|--prompt]}} -

Send the output of another command to Gemini and exit immediately:

gemini {{[-m|--model]}} {{model_name}}

Use a specific model (default: auto-gemini-3):

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

git submodule

View Details ▼

Inspect, update, and manage submodules.

git submodule

View existing submodules and the checked-out commit for each one:

git submodule update --init --recursive

Install a repository's submodules (listed in `.gitmodules`):

git submodule add {{repository_url}}

Add a Git repository as a submodule of the current one:

🔍

ngrok

View Details ▼

Reverse proxy that creates a secure tunnel from a public endpoint to a locally running web service.

ngrok http {{80}}

Expose a local HTTP service on a given port:

ngrok http {{example.com}}:{{80}}

Expose a local HTTP service on a specific host:

ngrok http https://localhost

Expose a local HTTPS server:

🔍

swift

View Details ▼

Create, run, and build Swift projects.

swift repl

Start a REPL (interactive shell):

swift {{file.swift}}

Execute a program:

swift package init

Start a new project with the package manager:

🔍

zig

View Details ▼

The Zig compiler and toolchain.

zig build

Compile the project in the current directory:

zig build run

Compile and run the project in the current directory:

zig init

Initialize a `zig build` project with library and executable:

🔍

ipconfig

View Details ▼

View and control IP configuration state.

ipconfig getiflist

List all network interfaces:

ipconfig

List all network adapters:

ipconfig getifaddr {{interface_name}}

Show the IP address of an interface:

🔍

xcode-select

View Details ▼

Switch between different versions of Xcode and the included developer tools.
Also used to update the path to Xcode if it is moved after installation.

xcode-select --install

Install Xcode's command-line tools:

xcode-select --switch {{path/to/Xcode.app/Contents/Developer}}

Select a given path as the active developer directory:

xcode-select --switch {{path/to/Xcode_file.app}}

Select a given Xcode instance and use its developer directory as the active one:

🔍

xcodebuild

View Details ▼

Build Xcode projects.

xcodebuild -workspace {{workspace_name.workspace}} -scheme {{scheme_name}} -configuration {{configuration_name}} clean build SYMROOT={{SYMROOT_path}}

Build workspace:

xcodebuild -target {{target_name}} -configuration {{configuration_name}} clean build SYMROOT={{SYMROOT_path}}

Build project:

xcodebuild -showsdks

Show SDKs:

// repository documentation