freshcrate
Home > MCP Servers > goclaw

goclaw

GoClaw - GoClaw is OpenClaw rebuilt in Go — with multi-tenant isolation, 5-layer security, and native concurrency. Deploy AI agent teams at scale without compromising on safety.

Description

GoClaw - GoClaw is OpenClaw rebuilt in Go — with multi-tenant isolation, 5-layer security, and native concurrency. Deploy AI agent teams at scale without compromising on safety.

README

GoClaw

Multi-Tenant AI Agent Platform

Multi-agent AI gateway built in Go. 20+ LLM providers. 7 channels. Multi-tenant PostgreSQL.
Single binary. Production-tested. Agents that orchestrate for you.

DocumentationQuick StartTwitter / X

GoPostgreSQLDockerWebSocketOpenTelemetryAnthropicOpenAILicense: CC BY-NC 4.0🌐 Languages: 🇨🇳 简体中文 · 🇯🇵 日本語 · 🇰🇷 한국어 · 🇻🇳 Tiếng Việt · 🇵🇭 Tagalog · 🇪🇸 Español · 🇧🇷 Português · 🇮🇹 Italiano · 🇩🇪 Deutsch · 🇫🇷 Français · 🇸🇦 العربية · 🇮🇳 हिन्दी · 🇷🇺 Русский · 🇧🇩 বাংলা · 🇮🇱 עברית · 🇵🇱 Polski · 🇨🇿 Čeština · 🇳🇱 Nederlands · 🇹🇷 Türkçe · 🇺🇦 Українська · 🇮🇩 Bahasa Indonesia · 🇹🇭 ไทย · 🇵🇰 اردو · 🇷🇴 Română · 🇸🇪 Svenska · 🇬🇷 Ελληνικά · 🇭🇺 Magyar · 🇫🇮 Suomi · 🇩🇰 Dansk · 🇳🇴 Norsk

Core Features

  • 8-Stage Agent Pipeline — context → history → prompt → think → act → observe → memory → summarize. Pluggable stages, always-on execution
  • 4-Mode Prompt System — Full / Task / Minimal / None with section gating, cache boundary optimization, and per-session mode resolution
  • 3-Tier Memory — Working (conversation) → Episodic (session summaries) → Semantic (knowledge graph). Progressive loading L0/L1/L2
  • Knowledge Vault — Document registry with [[wikilinks]], hybrid search (FTS + pgvector), filesystem sync
  • Agent Teams & Orchestration — Shared task boards, inter-agent delegation (sync/async), 3 orchestration modes (auto/explicit/manual)
  • Self-Evolution — Metrics → suggestions → auto-adapt with guardrails. Agents refine their own communication style
  • Multi-Tenant PostgreSQL — Per-user workspaces, per-user context files, encrypted API keys (AES-256-GCM), RBAC, isolated sessions
  • 20+ LLM Providers — Anthropic (native HTTP+SSE with prompt caching), OpenAI, OpenRouter, Groq, DeepSeek, Gemini, Mistral, xAI, MiniMax, DashScope, Claude CLI, Codex, ACP, and any OpenAI-compatible endpoint
  • 7 Messaging Channels — Telegram, Discord, Slack, Zalo OA, Zalo Personal, Feishu/Lark, WhatsApp
  • Production Security — 5-layer permission system, rate limiting, prompt injection detection, SSRF protection, AES-256-GCM encryption
  • Single Binary — ~25 MB static Go binary, no Node.js runtime, <1s startup, runs on a $5 VPS
  • Observability — Built-in LLM call tracing with spans and prompt cache metrics, optional OpenTelemetry OTLP export

Desktop Edition (GoClaw Lite)

A native desktop app for local AI agents — no Docker, no PostgreSQL, no infrastructure.

macOS:

curl -fsSL https://raw.githubusercontent.com/nextlevelbuilder/goclaw/main/scripts/install-lite.sh | bash

Windows (PowerShell):

irm https://raw.githubusercontent.com/nextlevelbuilder/goclaw/main/scripts/install-lite.ps1 | iex

What's Included

  • Single native app (Wails v2 + React), ~30 MB
  • SQLite database (zero setup)
  • Chat with agents (streaming, tools, media, file attachments)
  • Agent management (max 5), provider config, MCP servers, skills, cron
  • Team tasks with Kanban board and real-time updates
  • Auto-update from GitHub Releases

Lite vs Standard

Feature Lite (Desktop) Standard (Server)
Agents Max 5 Unlimited
Teams Max 1 (5 members) Unlimited
Database SQLite (local) PostgreSQL
Memory FTS5 text search pgvector semantic
Channels Telegram, Discord, Slack, Zalo, Feishu, WhatsApp
Knowledge Graph Full
RBAC / Multi-tenant Full
Auto-update GitHub Releases Docker / binary

Building from Source

# Prerequisites: Go 1.26+, pnpm, Wails CLI (go install github.com/wailsapp/wails/v2/cmd/wails@latest)
make desktop-build                    # Build .app (macOS) or .exe (Windows)
make desktop-dmg VERSION=0.1.0        # Create .dmg installer (macOS only)
make desktop-dev                      # Dev mode with hot reload

Desktop Releases

Desktop uses independent versioning with lite-v* tags:

git tag lite-v0.1.0 && git push origin lite-v0.1.0
# → GitHub Actions builds macOS (.dmg + .tar.gz) + Windows (.zip)
# → Creates GitHub Release with all assets

Architecture

Multi-Tenant Architecture

3-Tier Memory

8-Stage Agent Pipeline

4-Mode Prompt System

Quick Start

Prerequisites: Go 1.26+, PostgreSQL 18 with pgvector, Docker (optional)

From Source

git clone -b main https://github.com/nextlevelbuilder/goclaw.git && cd goclaw
make build
./goclaw onboard        # Interactive setup wizard
source .env.local && ./goclaw

Note: The default branch is dev (active development). Use -b main to clone the stable release branch.

With Docker

# Generate .env with auto-generated secrets
chmod +x prepare-env.sh && ./prepare-env.sh

# Add at least one GOCLAW_*_API_KEY to .env, then:
make up

# Web Dashboard at http://localhost:18790 (built-in)
# Health check: curl http://localhost:18790/health

# Optional: separate nginx for custom SSL/reverse proxy
# make up WITH_WEB_NGINX=1  → Dashboard at http://localhost:3000

make up creates a Docker network, embeds the correct version from git tags, builds and starts all services, and runs database migrations automatically.

Common commands:

make up                # Start all services (build + migrate)
make down              # Stop all services
make logs              # Tail logs (goclaw service)
make reset             # Wipe volumes and rebuild from scratch

Optional services — enable with WITH_* flags:

Flag Service What it does
WITH_BROWSER=1 Headless Chrome Enables browser tool for web scraping, screenshots, automation
WITH_OTEL=1 Jaeger OpenTelemetry tracing UI for debugging LLM calls and latency
WITH_SANDBOX=1 Docker sandbox Isolated container for running untrusted code from agents
WITH_TAILSCALE=1 Tailscale Expose gateway over Tailscale private network
WITH_REDIS=1 Redis Redis-backed caching layer

Flags can be combined and work with all commands:

# Start with browser automation and tracing
make up WITH_BROWSER=1 WITH_OTEL=1

# Stop everything including optional services
make down WITH_BROWSER=1 WITH_OTEL=1

When GOCLAW_*_API_KEY environment variables are set, the gateway auto-onboards without interactive prompts — detects provider, runs migrations, and seeds default data.

Docker image variants:

Image Description
latest Backend + embedded web UI + Python (recommended)
latest-base Backend API-only, no web UI, no runtimes
latest-full All runtimes + skill dependencies pre-installed
latest-otel Latest + OpenTelemetry tracing
goclaw-web Standalone nginx + React SPA (for custom reverse proxy)

For custom builds (Tailscale, Redis): docker build --build-arg ENABLE_TSNET=true ... See the Deployment Guide for details.

Updating

Docker

docker compose pull && docker compose up -d

Binary (with embedded web UI)

goclaw update --apply    # Downloads, verifies SHA256, swaps binary, restarts

Web Dashboard

Open About dialog → click Update Now (admin only). The update includes both backend and web dashboard when using the default latest image.

Multi-Agent Orchestration

Agent Orchestration

Each agent runs with its own identity, tools, LLM provider, and context files. Three delegation modes — sync (wait), async (fire-and-forget), bidirectional — connected through explicit permission links with concurrency limits.

Details: Agent Teams docs

Knowledge Vault

Knowledge Vault

Document registry with [[wikilinks]] for bidirectional linking. Hybrid search combines full-text (BM25) and semantic (pgvector) for precise retrieval. Filesystem sync keeps vault in sync with on-disk files.

Self-Evolution

Self-Evolution

Agents improve themselves through a 3-stage guardrailed pipeline: metrics collection → suggestion analysis → auto-adaptation. Can refine communication style and domain expertise (CAPABILITIES.md) — but never change identity, name, or core purpose.

Provider Adapters

Provider Adapters

20+ LLM providers unified through a single adapter interface. Capability-based routing, encrypted API keys (AES-256-GCM), extended thinking support per-provider, and prompt caching for Anthropic + OpenAI.

Event-Driven Architecture

DomainEventBus

Typed domain events power the consolidation pipeline — session summaries, knowledge graph extraction, and dreaming promotion all run asynchronously via worker pools with dedup and retry.

Built-in Tools

30+ tools across 8 categories:

Category Tools Description
Filesystem read_file, write_file, edit_file, list_files, search, glob File operations with virtual FS routing
Runtime exec, browser Shell commands (approval workflow) + browser automation
Web web_search, web_fetch Search (Brave, DuckDuckGo) + content extraction
Memory memory_search, memory_get, knowledge_graph_search 3-tier memory + KG traversal
Media create_image, create_audio, create_video, read_*, tts Generation + analysis (multi-provider)
Skills skill_search, use_skill, skill_manage BM25 + semantic hybrid search
Teams team_tasks, spawn, delegate, message Task board + orchestration + messaging
Automation cron, heartbeat, sessions_* Scheduling + session management

Full tool reference at docs.goclaw.sh

Documentation

Full documentation at docs.goclaw.sh — or browse the source in goclaw-docs/

Section Topics
Getting Started Installation, Quick Start, Configuration, Web Dashboard Tour
Core Concepts Agent Loop, Sessions, Tools, Memory, Multi-Tenancy
Agents Creating Agents, Context Files, Personality, Sharing & Access
Providers Anthropic, OpenAI, OpenRouter, Gemini, DeepSeek, +15 more
Channels Telegram, Discord, Slack, Feishu, Zalo, WhatsApp, WebSocket
Agent Teams Teams, Task Board, Messaging, Delegation & Handoff
Advanced Custom Tools, MCP, Skills, Cron, Sandbox, Hooks, RBAC
Deployment Docker Compose, Database, Security, Observability, Tailscale
Reference CLI Commands, REST API, WebSocket Protocol, Environment Variables

Testing

go test ./...                                    # Unit tests
go test -v ./tests/integration/ -timeout 120s    # Integration tests (requires running gateway)

Project Status

See CHANGELOG.md for detailed feature status including what's been tested in production and what's still in progress.

Acknowledgments

GoClaw was originally inspired by the OpenClaw project architecture.

License

CC BY-NC 4.0 — Creative Commons Attribution-NonCommercial 4.0 International

Star History

Star History Chart

Release History

VersionChangesUrgencyDate
v3.10.0**Full Changelog**: https://github.com/nextlevelbuilder/goclaw/compare/v3.9.2...v3.10.0High4/20/2026
v3.9.2## What's Changed * Fix/desktop lite edition cmd exec failure by @steelstring in https://github.com/nextlevelbuilder/goclaw/pull/961 * fix(tools): clean up Windows exec merge leftovers + expand credentialed env by @viettranx in https://github.com/nextlevelbuilder/goclaw/pull/963 * fix(tts): make ElevenLabs voice picker selectable with portaled dropdown by @dbmizrahi in https://github.com/nextlevelbuilder/goclaw/pull/960 * feat(ui): a11y + toggle + viewport-close for voice picker by @viettranx inHigh4/19/2026
v3.9.1**Full Changelog**: https://github.com/nextlevelbuilder/goclaw/compare/v3.9.0...v3.9.1High4/18/2026
lite-v3.9.0## What's Changed * fix(providers): use DB name for Anthropic/ClaudeCLI in HTTP onboarding by @mrgoonie in https://github.com/nextlevelbuilder/goclaw/pull/942 * fix(tests): resolve integration test compile errors by @vanducng in https://github.com/nextlevelbuilder/goclaw/pull/939 * fix(providers): strip Gemma 4 reasoning leak by @badgerbees in https://github.com/nextlevelbuilder/goclaw/pull/933 * fix(tts): restore per-tenant config compatibility and fail closed on save errors by @shaun0927 in htHigh4/18/2026
v3.9.0## What's Changed * fix(providers): use DB name for Anthropic/ClaudeCLI in HTTP onboarding by @mrgoonie in https://github.com/nextlevelbuilder/goclaw/pull/942 * fix(tests): resolve integration test compile errors by @vanducng in https://github.com/nextlevelbuilder/goclaw/pull/939 * fix(providers): strip Gemma 4 reasoning leak by @badgerbees in https://github.com/nextlevelbuilder/goclaw/pull/933 * fix(tts): restore per-tenant config compatibility and fail closed on save errors by @shaun0927 in htHigh4/18/2026
v3.8.5**Full Changelog**: https://github.com/nextlevelbuilder/goclaw/compare/v3.8.3...v3.8.5High4/16/2026
v3.8.3**Full Changelog**: https://github.com/nextlevelbuilder/goclaw/compare/v3.8.1...v3.8.3High4/16/2026
v3.8.1## What's Changed * fix(mcp): wire per-user MCP tool discovery into agent pipeline by @therichardngai-code in https://github.com/nextlevelbuilder/goclaw/pull/910 * fix(vault): handle empty delete responses by @badgerbees in https://github.com/nextlevelbuilder/goclaw/pull/913 * Fix/setting save change failure desktop lite by @steelstring in https://github.com/nextlevelbuilder/goclaw/pull/897 * feat(teams): inline rename for team name + description (#571) by @mrgoonie in https://github.com/nextlevHigh4/16/2026
lite-v3.8.0## What's Changed * fix(mcp): wire per-user MCP tool discovery into agent pipeline by @therichardngai-code in https://github.com/nextlevelbuilder/goclaw/pull/910 * fix(vault): handle empty delete responses by @badgerbees in https://github.com/nextlevelbuilder/goclaw/pull/913 * Fix/setting save change failure desktop lite by @steelstring in https://github.com/nextlevelbuilder/goclaw/pull/897 * feat(teams): inline rename for team name + description (#571) by @mrgoonie in https://github.com/nextlevHigh4/16/2026
v3.8.0# GoClaw v3.8.0 This release introduces the **Agent Lifecycle Hooks System** — a powerful extensibility framework that lets you intercept, transform, and control agent behavior at every stage of the conversation pipeline. --- ## 🎯 Highlights ### 🪝 Agent Lifecycle Hooks System (Major Feature) A complete hooks framework enabling custom logic injection at critical agent lifecycle points: #### Hook Types | Type | Description | |------|-------------| | **Script Handler** | JavaScript (ES5.1) High4/16/2026
lite-v3.7.1**Full Changelog**: https://github.com/nextlevelbuilder/goclaw/compare/lite-v3.6.0...lite-v3.7.1Medium4/14/2026
v3.7.1**Full Changelog**: https://github.com/nextlevelbuilder/goclaw/compare/v3.7.0...v3.7.1Medium4/14/2026
lite-v3.6.0## What's Changed * fix(tools): quote-aware shell operator detection in credentialed exec (#700) by @mrgoonie in https://github.com/nextlevelbuilder/goclaw/pull/702 * feat(whatsapp): add native WhatsApp channel with whatsmeow by @vanducng in https://github.com/nextlevelbuilder/goclaw/pull/720 * fix(chat): load message history on first conversation click by @kaitranntt in https://github.com/nextlevelbuilder/goclaw/pull/730 * fix(permissions): use cron-specific permission check for cron tool by @nMedium4/13/2026
v3.7.0## What's Changed * fix(tools): quote-aware shell operator detection in credentialed exec (#700) by @mrgoonie in https://github.com/nextlevelbuilder/goclaw/pull/702 * feat(whatsapp): add native WhatsApp channel with whatsmeow by @vanducng in https://github.com/nextlevelbuilder/goclaw/pull/720 * fix(chat): load message history on first conversation click by @kaitranntt in https://github.com/nextlevelbuilder/goclaw/pull/730 * fix(permissions): use cron-specific permission check for cron tool by @nMedium4/13/2026
v3.6.0## What's Changed * Release: vault enrich filter, stop bug, graph, tests, security fixes by @viettranx in https://github.com/nextlevelbuilder/goclaw/pull/865 **Full Changelog**: https://github.com/nextlevelbuilder/goclaw/compare/v3.5.0...v3.6.0Medium4/13/2026
lite-v3.5.0## What's Changed * fix(tools): quote-aware shell operator detection in credentialed exec (#700) by @mrgoonie in https://github.com/nextlevelbuilder/goclaw/pull/702 * feat(whatsapp): add native WhatsApp channel with whatsmeow by @vanducng in https://github.com/nextlevelbuilder/goclaw/pull/720 * fix(chat): load message history on first conversation click by @kaitranntt in https://github.com/nextlevelbuilder/goclaw/pull/730 * fix(permissions): use cron-specific permission check for cron tool by @nMedium4/13/2026
v3.5.0## What's Changed * fix(tools): quote-aware shell operator detection in credentialed exec (#700) by @mrgoonie in https://github.com/nextlevelbuilder/goclaw/pull/702 * feat(whatsapp): add native WhatsApp channel with whatsmeow by @vanducng in https://github.com/nextlevelbuilder/goclaw/pull/720 * fix(chat): load message history on first conversation click by @kaitranntt in https://github.com/nextlevelbuilder/goclaw/pull/730 * fix(permissions): use cron-specific permission check for cron tool by @nMedium4/13/2026
lite-v3.2.0## GoClaw Lite v3.2.0 Desktop edition synced with v3.4.0. ### Features - **feat(vault)**: replace create dialog with multi-file upload modal - **feat(vault)**: cross-agent API, WS enrichment progress - **feat(vault)**: workspace rescan endpoint with symlink-safe walker - **feat(vault)**: replace auto-linking with LLM-classified relationship types - **feat(vault)**: modal document view, compact sidebar - **feat(ui/graph)**: migrate vault + KG graph to Sigma.js + Graphology - **feat(ui)**: dreamMedium4/12/2026
v3.4.0## GoClaw v3.4.0 ### Features - **feat(vault)**: replace create dialog with multi-file upload modal - **feat(vault)**: cross-agent API, WS enrichment progress, nullable agent_id - **feat(vault)**: tenant-wide rescan with nullable agent_id + media preview - **feat(vault)**: workspace rescan endpoint with symlink-safe walker - **feat(vault)**: replace auto-linking with LLM-classified relationship types - **feat(vault)**: modal document view, compact sidebar, non-owner team access - **feat(ui/grapMedium4/12/2026
v3.3.0## What's Changed * feat: release v3.3.0 — v3 core redesign, vault improvements, channels, UI polish by @viettranx in https://github.com/nextlevelbuilder/goclaw/pull/827 **Full Changelog**: https://github.com/nextlevelbuilder/goclaw/compare/v3.2.0...v3.3.0Medium4/11/2026
lite-v3.1.1**Full Changelog**: https://github.com/nextlevelbuilder/goclaw/compare/lite-v3.1.0...lite-v3.1.1Medium4/11/2026
lite-v3.1.0## What's Changed * fix: prevent cron job flood after server restart and interval drift by @Luvu182 in https://github.com/nextlevelbuilder/goclaw/pull/796 * fix(telegram): protect URLs with underscores from italic parsing by @henkedk in https://github.com/nextlevelbuilder/goclaw/pull/785 * fix(sqlite): reset stale 'running' cron jobs on startup by @Luvu182 in https://github.com/nextlevelbuilder/goclaw/pull/797 * Release: vault improvements, MCP reconnect, cron fixes, Facebook/Pancake channels byMedium4/10/2026
v3.2.0## What's Changed * fix: prevent cron job flood after server restart and interval drift by @Luvu182 in https://github.com/nextlevelbuilder/goclaw/pull/796 * fix(telegram): protect URLs with underscores from italic parsing by @henkedk in https://github.com/nextlevelbuilder/goclaw/pull/785 * fix(sqlite): reset stale 'running' cron jobs on startup by @Luvu182 in https://github.com/nextlevelbuilder/goclaw/pull/797 * Release: vault improvements, MCP reconnect, cron fixes, Facebook/Pancake channels byMedium4/10/2026
v3.1.1## What's Changed * fix(backup): guard nil context in preflight by @viettranx in https://github.com/nextlevelbuilder/goclaw/pull/795 **Full Changelog**: https://github.com/nextlevelbuilder/goclaw/compare/v3.1.0...v3.1.1Medium4/9/2026
v3.1.0## What's Changed * feat(v3): vault UX, team access, CI fixes by @viettranx in https://github.com/nextlevelbuilder/goclaw/pull/794 **Full Changelog**: https://github.com/nextlevelbuilder/goclaw/compare/v3.0.0...v3.1.0Medium4/9/2026
v3.0.0# GoClaw v3.0.0 — Core Architecture Redesign A ground-up rearchitecture of the agent execution engine, memory system, knowledge graph, provider layer, and channel infrastructure. **912 files changed | +76,266 / -12,016 lines** --- ## Highlights ### 🧠 8-Stage Pipeline Engine ![8-Stage Agent Pipeline](https://raw.githubusercontent.com/nextlevelbuilder/goclaw/main/_statics/8-Stage%20Agent%20Pipeline.jpg) Replaced monolithic `runLoop()` with a unified pluggable pipeline: ``` Context → HistoMedium4/9/2026
lite-v1.3.0## What's Changed * Release: credential resolver, WhatsApp native, exec hardening, traces UI by @viettranx in https://github.com/nextlevelbuilder/goclaw/pull/754 **Full Changelog**: https://github.com/nextlevelbuilder/goclaw/compare/v2.67.6...lite-v1.3.0Medium4/8/2026
v2.67.6## 2.67.6 (2026-04-08) #### Bug Fixes * invalidate storage size cache on delete and move (#726) (acec4c31) Medium4/8/2026
v2.67.5## 2.67.5 (2026-04-08) #### Bug Fixes * **desktop:** add defaultValues to form dialogs to prevent crash (#737) (329b1509) Medium4/8/2026
v2.67.4## 2.67.4 (2026-04-07) #### Bug Fixes * use errors.Is() for sentinel comparisons + remove unused @xyflow/react (#727) (0e2282be) Medium4/7/2026
lite-v1.2.2## What's Changed * fix(security): harden exec path exemption matching by @viettranx in https://github.com/nextlevelbuilder/goclaw/pull/721 **Full Changelog**: https://github.com/nextlevelbuilder/goclaw/compare/lite-v1.2.1...lite-v1.2.2Medium4/6/2026
v2.67.3## 2.67.3 (2026-04-06) #### Bug Fixes * **security:** harden exec path exemption matching (#721) (76385f2f) Medium4/6/2026
lite-v1.2.1## What's Changed * fix: deterministic prompt ordering for LLM cache hit by @viettranx in https://github.com/nextlevelbuilder/goclaw/pull/719 **Full Changelog**: https://github.com/nextlevelbuilder/goclaw/compare/v2.67.0...lite-v1.2.1Medium4/6/2026
v2.67.1## 2.67.1 (2026-04-06) #### Bug Fixes * deterministic prompt ordering for LLM cache hit (#719) (e88686b1) Medium4/6/2026
v2.67.0## 2.67.0 (2026-04-05) #### Feature * **providers:** add OpenRouter identification headers (#705) (2801f0a9) Medium4/5/2026
lite-v1.2.0## What's Changed * fix(telegram): handle group-to-supergroup migration by @viettranx in https://github.com/nextlevelbuilder/goclaw/pull/698 **Full Changelog**: https://github.com/nextlevelbuilder/goclaw/compare/v2.66.0...lite-v1.2.0Medium4/5/2026
v2.66.1## 2.66.1 (2026-04-05) #### Bug Fixes * **telegram:** handle group-to-supergroup migration (#698) (5987349b) Medium4/5/2026
lite-v1.1.0## What's Changed * fix(secure-cli): resolve ambiguous column in LookupByBinary JOIN by @viettranx in https://github.com/nextlevelbuilder/goclaw/pull/641 * fix(agent): defer warning messages after parallel tool results by @viettranx in https://github.com/nextlevelbuilder/goclaw/pull/644 * fix(docker): resolve @rollup/rollup-linux-arm64-musl missing on Alpine by @nguyennguyenit in https://github.com/nextlevelbuilder/goclaw/pull/647 * Fix/brave search api key readonly by @ba0f3 in https://github.cMedium4/5/2026
v2.66.0## 2.66.0 (2026-04-05) #### Feature * **providers:** add BytePlus ModelArk provider with Seedream/Seedance media gen (aa5158d4) * **secure-cli:** per-agent grants with setting overrides (156b2dd9) * **kg:** node limit selector, remove auto-zoom, graph as default view (b2fda38e) * **kg:** increase graph limit to 200 nodes (Canvas handles it) (e00bfbc8) * **kg:** replace ReactFlow SVG with react-force-graph-2d Canvas renderer (7850ccea) * **providers:** add rich Ollama model listing via /api/tagMedium4/5/2026
v2.65.0## v2.65.0 — Stable Release This release marks the stable baseline for GoClaw 2.x. All development now targets the `dev` branch. ### 2.x Highlights #### Multi-Tenant Isolation - Complete tenant isolation across all stores, queries, caches, events, and file paths - Tenant-scoped RBAC with cross-tenant admin operations - Per-tenant system configs and settings #### Desktop/Lite Edition - Full desktop app with Wails v2 + SQLite backend - OS keyring secret storage, auto-update via GitHub ReleasesMedium4/2/2026
v2.64.0## 2.64.0 (2026-04-02) #### Feature * **web:** add Brave Search API key to tools config UI (#627) (040ac311) Medium4/2/2026
v2.63.1## 2.63.1 (2026-04-02) #### Bug Fixes * **telegram:** add /reactions to bot menu commands (6baef0fb) Medium4/2/2026
v2.63.0## 2.63.0 (2026-04-02) #### Feature * **telegram:** remap reaction emojis and add /reactions command (a1323e0d) Medium4/2/2026
v2.62.5## 2.62.5 (2026-04-02) #### Bug Fixes * **cli-credentials:** show existing env keys on edit and support merge/remove (#629) (173f1cea) Medium4/2/2026
v2.62.4## 2.62.4 (2026-04-02) #### Bug Fixes * **skills:** fix dep detection false positives and all-or-nothing install (899c8eb0) Medium4/2/2026
v2.62.3## 2.62.3 (2026-04-02) #### Bug Fixes * **summon:** preserve user's custom display_name during summon/regenerate (ecf6463d) Medium4/2/2026
v2.62.2## 2.62.2 (2026-04-02) #### Bug Fixes * **telegram:** stop auto-linking @mentions to t.me profile URLs (9d74e396) Medium4/2/2026
v2.62.1## 2.62.1 (2026-04-02) #### Bug Fixes * **ui:** show group names in permission scope dropdown (1a2d5789) Medium4/2/2026
v2.62.0## 2.62.0 (2026-04-02) #### Feature * **media:** add Veo 3.1 Lite video generation with image-to-video support (#638) (3e4d614a) Medium4/2/2026
v2.61.1## 2.61.1 (2026-04-02) #### Bug Fixes * **media:** update native provider API defaults and UI schema (14c375e3) #### Code Refactoring * **channels:** extract health model and modularize UI components (83bcb165) Medium4/2/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

CCCBotAutonomous AI agent built on Claude Code Channels — scheduled tasks, heartbeat monitoring, auto-recovery, and persona config for Telegram & Discordv0.2.2
cognithorCognithor - Agent OS: Local-first autonomous agent operating system. 16 LLM providers, 17 channels, 112+ MCP tools, 5-tier memory, A2A protocol, knowledge vault, voice, browser automation, Computer-usv0.92.3
golemcore-botAI-native runtime for the GolemCore ecosystem with skills, plugins, MCP, memory, and Hive.v0.68.0
AgenvoyAgentic framework | Self-improving memory | Pluggable tool extensions | Sandbox executionv0.19.4
mateclaw🤖 MateClaw — Java + Vue 3 AI Assistant with Multi-Agent Orchestration, MCP Protocol, Skills & Memory, and Multi-Channel Support. Built on Spring AI Alibaba.v1.1.0