palot

by ItsWendellVerified

Open-source OpenAI Codex alternative | Multi-agent desktop GUI for OpenCode | manage coding sessions, visualize diffs, and stream in real-time.

173
Stars
24
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/ItsWendell/palot

Getting Started

Guides for using skills like palot.

Security Report

Verified

Last scanned: —

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

README.md

palot.

A desktop GUI for OpenCode

CI Release GitHub release GitHub Downloads License

Alpha Software -- Palot is under active development. Expect breaking changes, missing features, and rough edges. Feedback and contributions are welcome!

Palot desktop app


What is Palot?

Palot is an open-source Electron app that gives OpenCode a full desktop interface. OpenCode is a powerful terminal-based AI coding agent, but it runs one project at a time and lives in the terminal. Palot wraps it with a visual UI so you can manage multiple projects and sessions from a single window, review file changes in a dedicated diff panel, schedule automated agent runs, and migrate your existing setup from other coding agents.

Palot spawns and manages the OpenCode server automatically, streams responses in real time, and renders tool calls with syntax-highlighted diffs, file previews, and terminal output.


Features

Chat & Agent Interaction

  • Multi-project workspace -- Manage AI sessions across all your projects from a single window. OpenCode is scoped to one project per instance; Palot lifts that limitation.

  • Full chat interface -- Conversational UI with real-time SSE streaming, Markdown rendering, auto-scroll, lazy-load pagination, and draft persistence across session switches.

  • Undo / redo -- Cmd+Z to revert the agent's last turn (including file changes), Shift+Cmd+Z to redo.

  • Slash commands -- Type / to invoke server-side commands like /compact and /help directly from the chat input.

  • File and context mentions -- Use @ to reference files or specific context, giving the agent precise scope.

  • Rich tool call visualization -- Every tool call is rendered inline:

    • File reads with line numbers and syntax highlighting
    • Edits as inline diffs (old vs new)
    • Bash commands with ANSI-colored terminal output
    • Search results (glob, grep) with matched patterns
    • Web fetches with URL and content preview
    • Task lists with real-time progress tracking
  • Sub-agent cards -- Live activity cards for delegated tasks, with collapsible child session views and automatic collapse on completion.

  • Model and agent selector -- Searchable model picker across all connected providers (Anthropic, OpenAI, Google, and more), with reasoning variant support, a "recently used" section, and favorites. Switch between available agents.

  • Permission management -- Inline approve/deny UI for agent permission requests, with "allow once" and "allow always" options.

  • Interactive questions -- Radio, checkbox, and free-text input for agent questions, with keyboard shortcuts.

  • File attachments -- Drag-and-drop images (PNG, JPEG, GIF, WebP) and PDFs into the chat, with model capability warnings.

  • Session compaction -- Summarize long conversations to reclaim context window tokens, manually or automatically.

Review & Git Workflow

  • Review panel -- A dedicated, collapsible side panel that shows all file changes from the current session. Powered by virtualized rendering and a worker pool for off-thread syntax highlighting, so it stays fast even with hundreds of changed files.

  • Diff commenting -- Click any line in the diff viewer to leave a comment. Comments are automatically collected and injected into the chat input so you can send feedback to the agent in one go.

  • Commit and push -- Integrated dialog to create branches, commit changes, push to remotes, and open a GitHub Pull Request, all without leaving Palot.

  • Smart diff gates -- Auto-collapses generated files (lockfiles, etc.) and very large diffs to keep the review panel responsive.

Automations

  • Scheduled agent runs -- Define recurring tasks with RRule-based scheduling. Palot runs the agent in the background and queues the results for your review.

  • Human-in-the-loop review -- Automation runs land in a pending_review state so you can inspect changes in the review panel before accepting or archiving them.

  • Auto-archiving -- Runs with no actionable changes are automatically archived to keep the list clean.

  • Retry with backoff -- Configurable execution retries with exponential backoff for flaky tasks.

Migration & Onboarding

  • Migrate from Claude Code and Cursor -- A guided wizard detects existing configurations and chat history from Claude Code and Cursor. It converts global/project settings, MCP servers, custom agents, commands, rules (e.g. CLAUDE.md to AGENTS.md), and hooks to the OpenCode format.

  • History import -- Convert past sessions and conversations from Cursor (state.vscdb) and Claude Code into OpenCode, so you don't lose context when switching.

  • Backup and restore -- Automatic backups before any migration, with a one-click restore option.

  • CLI setup helper -- Built-in UI to check, install, or repair the OpenCode CLI environment.

Desktop & OS Integration

  • Liquid Glass (macOS 26+) -- Native NSGlassEffectView window chrome on macOS Tahoe, with vibrancy fallback for older versions and an opaque mode for other platforms.

  • System accent color -- The UI adapts to the OS accent color on macOS and Windows.

  • System tray -- Runs in the background with a tray icon (including a dedicated Linux variant).

  • Dock / app badges -- Badge count on the app icon for pending tasks or required permissions.

  • Secure credential storage -- Encrypts server passwords and API keys using Electron's safeStorage.

  • mDNS server discovery -- Automatically scans the local network for OpenCode servers, letting you connect to remote or headless instances.

  • Open in editor -- Quick-launch buttons to open the current project in VS Code, Cursor, JetBrains IDEs, or the terminal.

  • Command palette -- Cmd+K to search sessions, switch projects, toggle feature flags, and run commands.

  • Auto-updates -- Built-in update mechanism with download progress and one-click restart.


Download

PlatformArchitecturesFormats
macOSApple Silicon, IntelDMG, ZIP
Windowsx64, ARM64NSIS installer
Linuxx64AppImage, DEB, RPM

Download the latest release from the Releases page.

macOS: unsigned app warning

Palot is not yet code-signed or notarized. macOS Gatekeeper will block the app on first launch with a message like "Palot is damaged and can't be opened" or "Apple could not verify Palot". To fix this:

Option A -- Right-click (or Control-click) the app in Finder and select Open, then click Open in the dialog.

Option B -- Remove the quarantine attribute from the terminal:

xattr -cr /Applications/Palot.app

This is expected behavior for unsigned apps and does not indicate malware.


Getting Started

From a release (recommended)

  1. Download and install from the Releases page
  2. Make sure OpenCode CLI is installed (~/.opencode/bin/opencode)
  3. Palot will automatically manage the OpenCode server

OpenCode needs at least one AI provider configured (Anthropic, OpenAI, Google, etc.). Run opencode in a terminal once to complete initial setup.

Coming from Claude Code or Cursor?

On first launch, Palot offers a guided migration wizard that detects your existing config and history. You can also trigger it later from Settings.

Configuration

Palot is a GUI layer on top of OpenCode, so core configuration like model providers, MCP servers, custom tools, and agent behavior is managed through OpenCode's own config files. Refer to the OpenCode documentation for setup instructions.

From source

Prerequisites: Bun 1.3.8+ and OpenCode CLI

git clone https://github.com/ItsWendell/palot.git
cd palot
bun install

# Run the Electron app
cd apps/desktop && bun run dev

Browser-only mode (no Electron)

For frontend development without Electron:

# Terminal 1: Start the backend
cd apps/server && bun run dev     # port 3100

# Terminal 2: Start the renderer
cd apps/desktop && bun run dev:web  # port 1420

Architecture

apps/
  desktop/       Electron 40 + Vite + React 19 desktop app
  server/        Bun + Hono backend (browser-mode dev only)
packages/
  ui/            Shared shadcn/ui component library (@palot/ui)
  configconv/    Universal agent config converter (Claude Code, Cursor, OpenCode)
  configconv-cli/ CLI wrapper for the config converter

The desktop app has three runtime contexts:

  • Main process (Node.js) -- Window management, IPC handlers, OpenCode server lifecycle, automation scheduler
  • Preload -- Secure bridge exposing window.palot API via contextBridge
  • Renderer (Chromium) -- React app with components, hooks, services, and Jotai atoms

Tech Stack

LayerTechnology
Desktop shellElectron 40, electron-vite
FrontendReact 19, Vite 6, TypeScript
StylingTailwind CSS v4
StateJotai
RoutingTanStack Router
UI componentsshadcn/ui, Base UI, cmdk
Code highlightingShiki
Diff rendering@pierre/diffs
VirtualizationTanStack Virtual
AI integration@opencode-ai/sdk
MonorepoTurborepo + Bun workspaces
LintingBiome
Packagingelectron-builder
VersioningChangesets

Commands

# Development
bun run dev              # Electron dev mode (from apps/desktop)
bun run dev:web          # Browser-only dev mode (from apps/desktop, needs apps/server)

# Build and package
bun run build            # Production build
bun run package          # Package for current platform
bun run package:all      # Package for all platforms

# Quality
bun run lint             # Lint with Biome
bun run lint:fix         # Lint and auto-fix
bun run check-types      # Type-check all packages

# Testing
cd packages/configconv && bun test   # Run tests

# Versioning
bun changeset            # Add a changeset
bun run version-packages # Apply changesets and bump versions

Contributing

Palot is in early alpha and we welcome contributions! Here's how to get started:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/my-feature)
  3. Make your changes
  4. Run quality checks: bun run lint && bun run check-types
  5. Add a changeset: bun changeset
  6. Open a pull request

Please see the AGENTS.md file for code style conventions, naming patterns, and important architectural notes.


Acknowledgments

Palot is built on top of OpenCode, an open-source AI coding agent. Palot communicates with the OpenCode server via the @opencode-ai/sdk package.

The UI component library is built with shadcn/ui, Base UI, and Tailwind CSS.

See THIRD-PARTY-NOTICES.md for a full list of third-party dependencies and their licenses.


License

MIT

Frequently Asked Questions

What is palot?

palot is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by ItsWendell. Open-source OpenAI Codex alternative | Multi-agent desktop GUI for OpenCode | manage coding sessions, visualize diffs, and stream in real-time. It has 173 GitHub stars.

Is palot safe to use?

Yes. palot passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install palot?

Clone the repository with "git clone https://github.com/ItsWendell/palot" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is palot written in?

palot is primarily written in TypeScript. It is open-source under ItsWendell on GitHub, so you can review or fork the full source.

Are there alternatives to palot?

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

Comments (0)

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

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

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

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
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