freshcrate
Skin:/
Home > MCP Servers > agentrove

agentrove

Your own Claude Code UI, sandbox, in-browser VS Code, terminal, multi-provider support (Anthropic, OpenAI, GitHub Copilot, OpenRouter), custom skills, and MCP servers.

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

Your own Claude Code UI, sandbox, in-browser VS Code, terminal, multi-provider support (Anthropic, OpenAI, GitHub Copilot, OpenRouter), custom skills, and MCP servers.

README

Agentrove

Self-hosted AI coding workspace for Claude Code, Codex, Copilot, Cursor, and OpenCode, using ACP adapters to run agents inside per-workspace sandboxes with chat, editor, terminal, and git tooling.

License: Apache 2.0 Python 3.12 React 19 FastAPI Discord

Note: Agentrove is under active development. Expect breaking changes between releases.

Screenshots

Chat Interface Agent Workflow

Community

Join the Discord server.

Why Agentrove

  • Run multiple coding-agent runtimes from one self-hosted interface
  • Launch agent runtimes through ACP adapters
  • Keep each project in its own Docker or host sandbox
  • Work in chat, editor, terminal, diff, secrets, and PR review views side by side
  • Organize work by workspace, then branch into sub-threads when a task needs its own track
  • Reuse local auth and config inside sandboxes for a smoother local-agent workflow

Core Architecture

React/Vite Frontend
  -> FastAPI Backend
  -> PostgreSQL + Redis (web mode)
  -> SQLite + in-memory cache/pubsub (desktop mode)
  -> Workspace sandbox (Docker or Host)
  -> Claude Code ACP / Codex ACP
  -> Claude Code CLI / Codex CLI

Agentrove launches agents through ACP adapters:

  • Claude via claude-agent-acp + Claude Code
  • Codex via codex-acp + Codex CLI
  • Copilot via copilot --acp --stdio
  • Cursor via cursor-agent acp
  • OpenCode via OpenCode ACP-compatible models and tool streams

Key Features

  • Claude, Codex, Copilot, Cursor, and OpenCode in the same UI with per-chat model selection
  • ACP-based agent runtime integration with agent-specific tool rendering
  • Agent-specific permission modes and reasoning/thinking controls
  • Workspace-based project organization with per-workspace sandboxes
  • Workspace creation from an empty directory, git clone, or an existing local folder
  • Docker and host sandbox providers
  • Built-in editor, terminal, diff, secrets, and PR review panels
  • File mentions, built-in slash commands, custom skills, and prompt enhancement in the composer
  • File attachments with inline preview support for images, PDFs, and spreadsheets
  • Streaming chat sessions with resumable SSE events, explicit cancellation, queued follow-up messages, and permission prompts
  • Sub-threads for branching work from an existing chat, plus chat pinning
  • Optional git worktree mode for isolated implementation per chat
  • Git helpers for branches, checkout, pull, push, commit generation, PR description generation, PR creation, and diff restore flows
  • GitHub integration for repository lookup, pull request review, comments, collaborators, and reviewer selection
  • Workspace resources for custom skills and built-in slash commands
  • User-configurable personas, custom instructions, custom env vars, notifications, and sandbox defaults
  • Built-in authentication flows for signup, login, refresh, logout, password reset, and optional email verification
  • Web app and macOS desktop app

Workspaces

Workspaces are the top-level project unit. Each workspace owns a sandbox and groups related chats under one project context.

Source types

  • Empty: create a new empty directory
  • Git clone: clone a repository into a fresh workspace
  • Local folder: use an existing directory, typically with the host sandbox provider

Sandbox isolation

Each workspace gets its own sandbox instance. Chats in the same workspace share the same filesystem, installed tools, auth files, and .claude / .codex resources.

Per-workspace sandbox provider

You can choose a sandbox provider per workspace:

  • Docker: isolated local container
  • Host: runs directly on the host machine

Worktree mode

For git-backed workspaces, chats can opt into worktree isolation. Agentrove creates a dedicated worktree under .worktrees/<chat-id-prefix> and reuses it for later turns in that chat.

Models And Agents

Current model families exposed by the backend:

  • Claude: sonnet[1m], opus[1m], haiku
  • Codex: gpt-5.4, gpt-5.4-mini, gpt-5.3-codex, gpt-5.2-codex, gpt-5.2, gpt-5.1-codex-max, gpt-5.1-codex-mini
  • Copilot: Claude and GPT model variants exposed through Copilot ACP
  • Cursor: Cursor composer, GPT, Claude, Gemini, Grok, and other Cursor ACP model variants
  • OpenCode: OpenCode-hosted and provider-backed ACP model variants

Agent-specific controls:

  • Claude permission modes: default, acceptEdits, plan, bypassPermissions
  • Codex permission modes: default, read-only, full-access
  • Claude thinking modes: low, medium, high, max
  • Codex reasoning modes: low, medium, high, xhigh

The UI also adapts tool rendering per runtime, so Claude, Codex, Copilot, Cursor, and OpenCode tool calls are shown with agent-specific formatting instead of a single generic event viewer.

Settings Surface

Current settings in the app cover:

  • General settings
  • Skills
  • Personas
  • Environment variables
  • Custom instructions

General settings include:

  • GitHub personal access token
  • Default sandbox provider
  • Notification toggle

Workspace resources and settings together let you:

  • Add and edit custom skills
  • Define reusable personas with custom system prompts
  • Inject custom environment variables into agent runs
  • Add account-level custom instructions applied to chats

Quick Start (Web)

Requirements

  • Docker
  • Docker Compose

Start

git clone https://github.com/Mng-dev-ai/agentrove.git
cd agentrove
cp .env.example .env

Set a SECRET_KEY in .env:

openssl rand -hex 32

Start the stack:

docker compose up -d

Open http://localhost:3000.

The web app includes built-in auth screens for sign up, login, password reset, and email verification when verification is enabled in config.

Stop and logs

docker compose down
docker compose logs -f

Developer hooks

The repo uses a root .githooks/pre-commit hook for frontend staged-file checks and backend ruff linting. Point Git at the repo hook directory once per clone:

./scripts/install-hooks.sh
pip install pre-commit
pre-commit run --all-files

Default web ports

  • Frontend: 3000
  • Backend API: 8080
  • PostgreSQL: 5432
  • Redis: 6379

Desktop (macOS)

Desktop mode uses Tauri with a bundled Python backend sidecar on localhost:8081 and local SQLite storage.

Download prebuilt app

How it works

Tauri Desktop App
  -> React frontend
  -> bundled backend sidecar (localhost:8081)
  -> local SQLite database
  -> local workspace sandbox access

Build and run from source

Requirements:

  • Node.js
  • Rust

Dev workflow:

cd frontend
npm install
npm run desktop:dev

Build:

cd frontend
npm run desktop:build

App bundle output:

  • frontend/src-tauri/target/release/bundle/macos/Agentrove.app

Included Tooling

The backend and sandbox images install the tooling Agentrove needs to run coding agents locally, including:

  • Claude Code
  • Codex CLI
  • Cursor CLI (cursor-agent)
  • OpenCode CLI (opencode)
  • claude-agent-acp
  • codex-acp
  • GitHub CLI

Agentrove also syncs local Claude and Codex auth/config files into sandboxes when available.

API and Operations

Deployment

Tech Stack

  • Frontend: React 19, TypeScript, Vite, TailwindCSS, Zustand, React Query, Monaco, xterm.js
  • Backend: FastAPI, SQLAlchemy, Redis, PostgreSQL/SQLite
  • Runtime: Claude Code, Codex CLI, ACP, Docker, Tauri

License

Apache 2.0. See LICENSE.

Contributing

Contributions are welcome. Open an issue first to discuss the change, then submit a pull request.

Release History

VersionChangesUrgencyDate
v0.1.38## What's Changed * docs: build agent harness skeleton (PR 1/2) by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/603 * docs: write artifact docs and domain maps (PR 2/2) by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/606 * fix: keep image attachments visible after picking slash command by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/607 * feat: view two chats side-by-side via split panes by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/puHigh6/7/2026
v0.1.37## What's Changed * Add Cmd+R reload shortcut in desktop app by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/595 * Fetch all branches when cloning workspaces in web mode by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/596 * Enable command menu and split view on landing page by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/597 * Always keep a workspace selected on the landing page by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/598 *High5/7/2026
v0.1.35## What's Changed * Update agent Docker tooling by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/588 * Remove agent auth env defaults by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/589 * Align host terminal home with agent home by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/590 * Bundle ACP adapters in desktop sidecar by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/591 **Full Changelog**: https://github.com/Mng-dev-ai/agentrovHigh5/2/2026
v0.1.34## What's Changed * Relaunch app after desktop updater install() by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/552 * docs: Expand CLAUDE.md with cross-context and cache guidelines by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/553 * Add gpt-5.5 to Codex models by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/554 * Enable Pierre file tree icons by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/555 * Add new OpenCode Go models by @MnHigh4/26/2026
v0.1.33## What's Changed * Replace blocking update dialog with in-menu update flow by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/547 * Experiment: swap custom file-tree for @pierre/trees by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/548 * Move user menu into Settings sidebar by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/549 * Remove 1500-char limit and frame from custom instructions by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/550High4/23/2026
v0.1.31## What's Changed * Make workspace-relative paths the app-level contract by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/534 * Add Opencode Go model catalog entries by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/535 * Surface truncated labels via title attrs and autofocus command menu search by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/536 * Show OpenCode skills and cross-read shared skill directories by @Mng-dev-ai in https://github.com/Mng-dHigh4/21/2026
v0.1.30## What's Changed * Add switch branch mode to command menu by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/523 * Abort in-flight chat request when Stop pressed during loading by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/524 * Add discard changes support to diff view by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/525 * Lighten user avatar background in light mode by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/526 * Sync branch High4/19/2026
v0.1.29## What's Changed * Fix blue focus outline on chat sidebar dropdown by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/503 * Remove auto compact and attribution settings by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/504 * Remove CLI auth sync and skill deployment from sandbox initialization by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/505 * Refactor skills to be per-agent with simplified path resolution by @Mng-dev-ai in https://github.com/Mng-dHigh4/18/2026
v0.1.28## What's Changed * Remove unused sandbox dep from WorkspaceService by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/501 * Skip GitHub token injection in desktop mode by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/502 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.27...v0.1.28High4/15/2026
v0.1.27## What's Changed * Improve DiffView header UX by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/498 * Add GitHub Copilot CLI agent support by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/499 * Simplify sandbox providers and remove dead features by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/500 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.26...v0.1.27High4/15/2026
v0.1.26## What's Changed * docs: update README for current repo behavior by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/473 * Fix invalid GitHub token handling in PR review by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/474 * Remove expandable prop from ToolCard and auto-derive from children by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/475 * Add support for loading skills from enabled Claude Code plugins by @Mng-dev-ai in https://github.com/Mng-dev-High4/13/2026
v0.1.25## What's Changed * Remove timezone field from user settings by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/449 * Fix desktop app failing to spawn agent process by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/450 * Fix subagent tool calls not nesting inside Agent tool UI by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/451 * Remove dead code and unused dependencies from frontend by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/452 *High4/10/2026
v0.1.24## What's Changed * Replace all migrations with a single fresh initial schema by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/448 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.23...v0.1.24High4/4/2026
v0.1.23## What's Changed * Fix desktop build: remove missing permission_server.py copy by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/446 * Remove unused OpenAI and Copilot OAuth device flows by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/447 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.22...v0.1.23Medium4/4/2026
v0.1.22## What's Changed * Add ACP transport with multi-agent Claude/Codex support by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/445 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.21...v0.1.22Medium4/4/2026
v0.1.21## What's Changed * Fix GitHub link in PR Review Inbox for desktop app by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/438 * Add keyboard shortcuts for command menu by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/439 * Add sidebar toggle, theme switching, and file search to command menu by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/440 * Remove test infrastructure to rebuild from scratch by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/Medium3/29/2026
v0.1.20## What's Changed * Fix sidebar chevron and loading indicator alignment by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/433 * Add GitHub integration: PR creation, branch management, review inbox by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/434 * Extract GitHubService from route handlers by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/435 * AI-Generated PR Description Feature Request by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pullMedium3/28/2026
v0.1.19## What's Changed * Fix streaming content truncation on unmount and queue handoff drop by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/430 * Improve frontend naming and add contextual comments by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/431 * Fix off-screen stream cache writes targeting wrong chat by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/432 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.18...v0.1.19Medium3/25/2026
v0.1.18## What's Changed * Skip redundant set_model() calls on reused SDK sessions by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/426 * Fix plugin-installed resources not found on edit/delete by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/427 * Fix stuck skeleton when switching between streaming chats by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/429 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.17...v0.1.18Medium3/24/2026
v0.1.17## What's Changed * Remove host mode references from provider helper text by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/423 * Reduce useEffect usage with useMountEffect and ref-based resets by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/424 * Add compact prop to ModelSelector and fix DiffView spacing by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/425 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.16...v0.1.17Low3/22/2026
v0.1.16## What's Changed * Deduplicate frontend code with shared abstractions by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/422 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.15...v0.1.16Low3/21/2026
v0.1.15## What's Changed * Add sub-threads: parent-child chat hierarchy by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/419 * Make provider auth optional for host-mode deployments by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/420 * Fix keyboard scrolling in command menu by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/421 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.14...v0.1.15Low3/21/2026
v0.1.14## What's Changed * Rename custom prompts to personas by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/414 * feat: make collapsed diff sections incrementally expandable by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/415 * Add expanded modal view for subagent tools by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/416 * Fix branch selector overlapping send/attach buttons by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/417 * Fix sidebaLow3/21/2026
v0.1.13## What's Changed * Bump anthropic-bridge to 0.1.40 by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/407 * Fix long pasted text overflowing user message container by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/408 * Add external LSP plugin support to marketplace by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/409 * Add close button to split view panel by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/410 * Replace binary split view wLow3/18/2026
v0.1.12## What's Changed * Persist question and plan content after user interaction by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/405 * Fix missing context usage for OpenAI/OpenRouter providers by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/406 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.11...v0.1.12Low3/15/2026
v0.1.11## What's Changed * Move screenshots to top of README by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/397 * Add worktree mode support with diff view integration by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/398 * Fix landing page icon-only selectors after split mode by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/399 * Fix empty diff view in worktree mode by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/401 * Fix diff view empty iLow3/15/2026
v0.1.10## What's Changed * Fix plan copy button overflow and update permission mode by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/395 * Make permission mode and thinking mode chat-scoped by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/396 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.9...v0.1.10Low3/15/2026
v0.1.9## What's Changed * Fix: remove external: true from sandbox network definition by @bobbyhyam in https://github.com/Mng-dev-ai/agentrove/pull/373 * Inline mentions into text input instead of separate chips by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/376 * Simplify system prompt builder by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/377 * Move agents, commands, and skills to filesystem-only storage by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pulLow3/15/2026
v0.1.8## What's Changed * Fix brittle title generation by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/372 * Remove defensive output sanitization from title generation by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/374 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.7...v0.1.8Low3/9/2026
v0.1.7## What's Changed * Improve transport layer code quality by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/369 * Publish full stream envelopes via Redis pub/sub by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/370 * Fix model selector not persisting chosen model across pages by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/371 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.6...v0.1.7Low3/9/2026
v0.1.6## What's Changed * Fix suggestions panel not scrolling with keyboard navigation by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/365 * Fix marketplace not finding plugins in Docker deployments by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/366 * Add full file context toggle to diff view by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/367 * Fix diff view stats and expanded state preservation by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrovLow3/9/2026
v0.1.5## What's Changed * Discover and sync CLI-installed plugins by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/362 * Read marketplace catalog from local filesystem by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/363 * Update desktop icon to new double-line A design by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/364 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.4...v0.1.5Low3/9/2026
v0.1.4## What's Changed * Fix desktop icon to use RGBA format by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/361 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.3...v0.1.4Low3/8/2026
v0.1.3## What's Changed * Update desktop app icon to new Agentrove branding by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/360 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.2...v0.1.3Low3/8/2026
v0.1.2## What's Changed * Fix desktop mode sync with ~/.claude/ folder by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/358 * Add /loop, /frontend-design, and /batch slash commands by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/359 **Full Changelog**: https://github.com/Mng-dev-ai/agentrove/compare/v0.1.1...v0.1.2Low3/8/2026
v0.1.1## What's Changed * Fix invalid signature error when switching from OpenRouter to Claude by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/1 * Bump claude-code to 2.0.72 and anthoropic-bridge to 0.1.1, add Gemini 3 models by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/2 * Fix model selector dropdown overflow and add search functionality by @Mng-dev-ai in https://github.com/Mng-dev-ai/agentrove/pull/3 * Add AskUserQuestion tool support with interactive modal UI byLow3/7/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

claude-code-proxyMonitor and visualize your Claude Code API interactions with Claude Code Proxy. Easily set up a transparent proxy and live dashboard. đŸ› ī¸đŸš€main@2026-06-06
Perplexity-Comet-MCPNo descriptionmain@2026-06-07
google-workspace-mcp-with-scriptNo descriptionmain@2026-06-07
claude-code-configClaude Code skills, architectural principles, and alternative approaches for AI-assisted developmentmain@2026-06-06
cc-skillsClaude Code Skills Marketplace: plugins, skills for ADR-driven development, DevOps automation, ClickHouse management, semantic versioning, and productivity workflowsv21.87.0

More in MCP Servers

PlanExeCreate a plan from a description in minutes
automagik-genieSelf-evolving AI agent orchestration framework with Model Context Protocol support
ProxmoxMCP-PlusEnhanced Proxmox MCP server with advanced virtualization management and full OpenAPI integration.
node9-proxyThe Execution Security Layer for the Agentic Era. Providing deterministic "Sudo" governance and audit logs for autonomous AI agents.